Browse Source

fix error

liuyuqi-dellpc 2 years ago
parent
commit
61b545ab96

+ 6 - 0
crawl_xiaohua/bin/crawl_xiaohua

@@ -0,0 +1,6 @@
+#!/usr/bin/env python
+
+import crawl_xiaohua
+
+if __name__ == '__main__':
+    crawl_xiaohua.main()

+ 2 - 2
crawl_xiaohua/crawl_xiaohua/crawl_xiaohua.py

@@ -38,9 +38,9 @@ class CrawlXiaohua():
         # self.s.cookies.update(JsonConf().get_cookies())
 
     def crawl(self):
-        for i in range(2):
+        for i in range(10000):
             self.getPicList()
-            time.sleep(random.randint(1, 30) / 10)
+            time.sleep(random.randint(1, 5))
 
     def getPicList(self):
         res = self.s.get(api.startUrl + self.indexPage)

+ 0 - 0
crawl_xiaohua/crawl_xiaohua/data/.gitkeep → crawl_xiaohua/data/.gitkeep


+ 2 - 1
crawl_xiaohua/requirements.txt

@@ -1 +1,2 @@
-requests
+requests
+bs4