A lightweight network request framework
Project description
async-request
A lightweight network request framework based on requests & asyncio
install
pip install async_request
usage
import async_request
def parse_baidu(response):
print(response.url, response.status_code)
yield async_request.Request('https://cn.bing.com/', callback=parse_bing)
def parse_bing(response):
print(response.url, response.status_code)
yield async_request.Request('https://github.com/financialfly/async-request', callback=parse_github)
def parse_github(response):
print(response.url, response.status_code)
yield {'hello': 'github'}
def process_result(result):
print(result)
reqs = [async_request.Request(url='https://www.baidu.com', callback=parse_baidu)]
c = async_request.Crawler(reqs, result_callback=process_result)
c.run()
c.stop()
And you'll see the result like this:
https://www.baidu.com/ 200
https://cn.bing.com/ 200
https://github.com/financialfly/async-request 200
{'hello': 'github'}
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
async-request-0.141.tar.gz
(3.9 kB
view details)
File details
Details for the file async-request-0.141.tar.gz
.
File metadata
- Download URL: async-request-0.141.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.14.2 setuptools/39.0.1 requests-toolbelt/0.9.1 tqdm/4.28.1 CPython/3.7.1
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 30d17a37561ec5db32654735868b2393621967c216f80c739f435d33d88d2f9c |
|
MD5 | abb257554759c6ee1ebb2b4458a28714 |
|
BLAKE2b-256 | 49f9e00c7d381e0ef5d42748cdf31ab0df34a5cf2fa6944dce0f064dc6bb633b |