this is a small spider,you can easy running. When you often need to crawl a single site, you don't have to redo some repeated code every time, using this small framework you can quickly crawl data into a file or database.
Project description
lrabbit_scrapy
this is a small spider,you can easy running. When you often need to crawl a single site, you don't have to redo some repeated code every time, using this small framework you can quickly crawl data into a file or database.
Installing
$ pip3 install lrabbit_scrapy
A Simple Example
class Spider(LrabbitSpider):
"""
# spider_name
redis_key:
list:spider_name 任务队列
success:count:spider_name 记录成功数
list:error:excepiton404
"""
spider_name = "test"
# 最大线程数
max_thread_num = 10
# 重置任务队列
reset_task_config = False
# 开启循环模式
loop_task_config = False
# 去除确认信息
remove_confirm_config = False
def __init__(self):
super().__init__()
self.session = RequestSession()
self.proxy_session = RequestSession(proxies=None)
def worker(self, task):
LogUtils.log_info(task)
self.session.send_request(method='GET', url="https://www.lrabbit.life/233333333333333333/")
# when you keyboraderror you can't lost you task
self.task_list.remove(task)
# update stat
self.update_stat_redis()
LogUtils.log_finish(task)
def init_task_list(self):
res = self.mysql_client.query("select id from rookie limit 100 ")
return [item['id'] for item in res]
if __name__ == '__main__':
spider = Spider()
spider.run()
Links
- author: https://www.lrabbit.life/
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file lrabbit_scrapy-2.0.0.tar.gz.
File metadata
- Download URL: lrabbit_scrapy-2.0.0.tar.gz
- Upload date:
- Size: 16.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.6.1 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
6d194a0a4d9e6bd10a27e0680f94ce8e9ba20ad801552a95c534d3300e565356
|
|
| MD5 |
5e94b06afcf09cfeb5d53f0fb063ba25
|
|
| BLAKE2b-256 |
f08233f6c7c9bbf9c49f63c70d46e9c1113bd0ceaebfa46eed89a248b4e436cd
|
File details
Details for the file lrabbit_scrapy-2.0.0-py3-none-any.whl.
File metadata
- Download URL: lrabbit_scrapy-2.0.0-py3-none-any.whl
- Upload date:
- Size: 21.1 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.6.0 importlib_metadata/4.6.1 pkginfo/1.8.1 requests/2.26.0 requests-toolbelt/0.9.1 tqdm/4.62.3 CPython/3.6.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
c4c99ecbf131bf7d08fd8b3364fc0c9f19ce8dea897847fd037515e130ae2dc1
|
|
| MD5 |
c738a39b0412078e3ce219fa340129f0
|
|
| BLAKE2b-256 |
8e8933b4abcd1d43168a50ae89e02a666c498132dca8f403dd1bfe898a3540b8
|