We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3c41e10 commit 1d3ec19Copy full SHA for 1d3ec19
README.md
@@ -100,11 +100,11 @@ pip install -r requirements.txt
100
需要分别启动定时任务和api
101
到Config.ini中配置你的SSDB
102
103
-项目目录下:
104
->>>python -m Schedule.ProxyRefreshSchedule
+到Schedule目录下:
+>>>python ProxyRefreshSchedule.py
105
106
-到Api目录下:
107
->>>python -m Run.main
+到Run目录下:
+>>>python main.py
108
```
109
110
### 5、使用
@@ -141,7 +141,7 @@ def delete_proxy(proxy):
141
142
def spider():
143
# ....
144
- requests.get('https://www.example.com', proxies={"http": "http://{}".format(get_proxy)})
+ requests.get('https://www.example.com', proxies={"http": "http://{}".format(get_proxy())})
145
146
147
0 commit comments