Browse Source

remove proxy

jianboy 1 year ago
parent
commit
395e644de2

+ 2 - 0
crawl_xiaohua/README.md

@@ -6,3 +6,5 @@ xiaohua.com 爬虫,获取美女图片
 
 Read this [Development](./docs/Development.md) document.
 
+
+

+ 1 - 1
crawl_xiaohua/crawl_xiaohua/extractor/qinimg.py

@@ -43,7 +43,7 @@ class Qinimg(object):
     def __init__(self):
         self.sess = requests.Session()
         # set proxy
-        self.sess.proxies = {"http": "http://127.0.0.1:2181", "https": "http://127.0.0.1:2181"}
+        # self.sess.proxies = {"http": "http://127.0.0.1:2181", "https": "http://127.0.0.1:2181"}
         self.conn = sqlite3.connect('xiaohua.db')
         self.cursor = self.conn.cursor()
         self.init_database()

+ 12 - 0
crawl_xiaohua/docs/Development.md

@@ -1,6 +1,12 @@
 ## Development
 
+**命令行模式:**
 
+```
+python main.py cli --server aa --bb ss
+```
+
+**打包exe:**
 ```
 virtualenv .venv 
 
@@ -8,6 +14,12 @@ pip install -r requirements.txt
 
 pip install pyinstaller
 pyinstaller -F -c -i launch200.ico main.py
+```
+
 
+**flask web ui操作;**
 
 ```
+python main.py server
+python mian.py server --config xx
+```