A small example package
Project description
ZeroCrawler
从零开始写爬虫
安装
从 pypi 安装:
$ pip install ZeroCrawler
源码安装:
$ git clone git@github.com:MeiK2333/ZeroCrawler.git
$ cd ZeroCrawler/
$ pip install .
直接从 GitHub 安装:
$ git install git+https://github.com/MeiK2333/ZeroCrawler.git
使用
>>> from ZeroCrawler import get
>>> resp = get('http://httpbin.org/get')
>>> resp
<Response [200]>
>>> resp.content
'{\n "args": {}, \n "headers": {\n "Host": "httpbin.org"\n }, \n "origin": "36.110.78.251, 36.110.78.251", \n "url": "https://httpbin.org/get"\n}\n'
>>> resp = get('http://httpbin.org/status/404')
>>> resp
<Response [404]>
测试
$ python -m unittest tests/test_*.py
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
ZeroCrawler-0.1.0.tar.gz
(3.0 kB
view details)
File details
Details for the file ZeroCrawler-0.1.0.tar.gz
.
File metadata
- Download URL: ZeroCrawler-0.1.0.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.22.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.32.2 CPython/3.6.8
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4ad6b733f9b1858c659fe0c069ef6e59ae83bdd2efb03871ea984fca0741fe55 |
|
MD5 | e529406af328228073c37de3577108bd |
|
BLAKE2b-256 | 0e891aff1f01d88eae04a6fb209c0066cc16c2593673073db6e21f52b9ee12dd |