Air Spider
Project description
安装
pip install cocoman
使用
演示
do 方法
- 参数跟
requests的参数保持一致 - 默认自带
重试、ua - 请求失败时,可以通过
raise_request_error参数选择不抛出异常
发送GET请求
- do 方法默认是 GET 请求,默认自带ua
from cocoman import Spider
s = Spider()
url = "https://www.baidu.com"
res = s.do(url)
title = res.xpath("//title/text()").get()
print(title)
发送POST请求
- do 方法传递了 data 或者 json 参数则是 POST 请求
from pprint import pprint
from cocoman import Spider
s = Spider()
api = "https://httpbin.org/post"
form_data = {"type": "请求表单"}
res = s.do(api, data=form_data)
pprint(res.json())
json_body = {"type": "JSON请求体"}
res = s.do(api, json=json_body)
pprint(res.json())
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
cocoman-0.6.2.tar.gz
(10.7 kB
view details)
File details
Details for the file cocoman-0.6.2.tar.gz.
File metadata
- Download URL: cocoman-0.6.2.tar.gz
- Upload date:
- Size: 10.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/6.0.1 CPython/3.11.10
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
e2c7b1d32a16463282b715ed1753e1a0432df893865d5b6a7f2935572d8e22d5
|
|
| MD5 |
68a999c89e358b328f4b0880b7404183
|
|
| BLAKE2b-256 |
361b13b4f03fe5a61824d605b53622c32b8c5c213d73c66103dcd8199a351f39
|