E requests.exceptions.MissingSchema: Invalid URL '': No schema supplied. Perhaps you meant http://?
时间: 2024-03-19 20:42:46 浏览: 139
http://python-requests.org/库的透明持久缓存-Python开发
这个错误通常是由于 URL 地址缺失协议(比如 http:// 或 https://)引起的。你需要检查你的代码中是否有 URL 地址缺失协议,如果有,就需要补充上相应的协议。
例如,如果你的代码中有这样的一行:
```python
url = "example.com/api"
```
需要将其修改为:
```python
url = "http://example.com/api"
```
或者:
```python
url = "https://example.com/api"
```
这样就可以避免这个错误了。
阅读全文