An out-of-the-box lightweight asynchronous crawler framework
Project description
traspider
简介
traspider是一个开箱即用的轻量爬虫框架
如果你需要写一个小的爬虫,使用traspider会让你事半功倍
github地址:https://github.com/Ntrashh/traspider
环境要求
- Python 3.7.0+
- Works on Linux, Windows, macOS
安装
pip3 install traspider
使用
创建爬虫
traspider create -s demo_spider
生成代码
添加需要爬取的网址 http://httpbin.org/
from loguru import logger
from traspider import Spider
class DemoSpider(Spider):
def __init__(self):
self.urls = ["http://httpbin.org/"]
def parser(self, response, request):
logger.info(response)
async def download_middleware(self, request):
request.headers = {
"user-agent": "Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/108.0.0.0 Safari/537.36"
}
return request
if __name__ == "__main__":
demo_spider = DemoSpider()
demo_spider.start()
traspider这个项目开始之初就是为了爬虫在开发一些简单的项目能够更轻更快,所以对大型项目支持还是不够好。如果开发的是大型爬虫项目,推荐你使用feapder和scrapy
如果你在使用过程中对traspider有任何问题或建议可以联系我
微信:
鸣谢
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
traspider-0.0.9.tar.gz
(22.0 kB
view details)
Built Distribution
traspider-0.0.9-py3-none-any.whl
(26.2 kB
view details)
File details
Details for the file traspider-0.0.9.tar.gz
.
File metadata
- Download URL: traspider-0.0.9.tar.gz
- Upload date:
- Size: 22.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 83afe984f4e58291a5e31051e054a2be3c40bc489b70932c81fb2036061649dc |
|
MD5 | 0c98c8bfce02bb55a0b69269e1a1d3f2 |
|
BLAKE2b-256 | acf18c97490ba41d506c6e59af8ce77ff7670582ff54ad06ff155aee31ffecfe |
File details
Details for the file traspider-0.0.9-py3-none-any.whl
.
File metadata
- Download URL: traspider-0.0.9-py3-none-any.whl
- Upload date:
- Size: 26.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.8.3
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 535a38a47f0705098057cdfef56f9c6d406c56e14609267ec0cc6082adc7bca2 |
|
MD5 | 300b7ecf5666cdcc597b1b0529759e17 |
|
BLAKE2b-256 | b8efd16d23fe643477d5d3f09a1328836c9efc0e6b0c7c681de73167a841b927 |