curl-impersonate 的 Python 绑定,基于 cffi.
不同于其他的纯 Python http 客户端,比如 httpx
和 requests
,curl_cffi
可以模拟浏览器的
TLS/JA3 和 HTTP/2 指纹。如果你莫名其妙地被某个网站封锁了,可以来试试 curl_cffi
。
Scrapfly 是一个企业级的网页抓取 API,通过全流程托管来帮助你简化抓取流程。功能包括:真实浏览器 渲染,代理自动切换,和 TLS、HTTP、浏览器指纹模拟,可以突破所有主要的反爬手段。Scrapfly 还提供了一个监控面板,让你能够随时观察抓取成功率。
如果你在寻找云端托管 curl_cffi
服务的话,Scrapfly 是一个不错的选择。如果你希望自己管理
脚本,他们还提供了一个工具,
可以把 curl 命令直接转换成 curl_cffi
的 Python 代码。
- 支持 JA3/TLS 和 http2 指纹模拟。
- 比 requests/httpx 快得多,和 aiohttp/pycurl 的速度比肩,详见 benchmarks。
- 模仿 requests 的 API,不用再学一个新的。
- 预编译,不需要在自己机器上从头开始。
- 支持
asyncio
,并且支持每个请求切换代理。 - 支持 http 2.0,requests 不支持。
- 支持 websocket。
库 | requests | aiohttp | httpx | pycurl | curl_cffi |
---|---|---|---|---|---|
http2 | ❌ | ❌ | ✅ | ✅ | ✅ |
sync | ✅ | ❌ | ✅ | ✅ | ✅ |
async | ❌ | ✅ | ✅ | ❌ | ✅ |
websocket | ❌ | ✅ | ❌ | ❌ | ✅ |
指纹 | ❌ | ❌ | ❌ | ❌ | ✅ |
速度 | 🐇 | 🐇🐇 | 🐇 | 🐇🐇 | 🐇🐇 |
pip install curl_cffi --upgrade
在 Linux(x86_64/aarch64), macOS(Intel/Apple Silicon), Windows(amd64), 这样应该就够了,如果
在其他小众平台,你可能需要先编译并安装 curl-impersonate
并且设置 LD_LIBRARY_PATH
这些
环境变量。
安装测试版:
pip install curl_cffi --upgrade --pre
从 GitHub 安装最新不稳定版本:
git clone https://github.com/yifeikong/curl_cffi/
cd curl_cffi
make preprocess
pip install .
尽量模仿比较新的浏览器,不要直接从下边的例子里复制 chrome110
去用。
from curl_cffi import requests
# 注意 impersonate 这个参数
r = requests.get("https://tools.scrapfly.io/api/fp/ja3", impersonate="chrome110")
print(r.json())
# output: {..., "ja3n_hash": "aa56c057ad164ec4fdcb7a5a283be9fc", ...}
# ja3n 指纹和目标浏览器一致
# To keep using the latest browser version as `curl_cffi` updates,
# simply set impersonate="chrome" without specifying a version.
# Other similar values are: "safari" and "safari_ios"
r = requests.get("https://tools.scrapfly.io/api/fp/ja3", impersonate="chrome")
# 支持使用代理
proxies = {"https": "http://localhost:3128"}
r = requests.get("https://tools.scrapfly.io/api/fp/ja3", impersonate="chrome110", proxies=proxies)
proxies = {"https": "socks://localhost:3128"}
r = requests.get("https://tools.scrapfly.io/api/fp/ja3", impersonate="chrome110", proxies=proxies)
# sessions are supported
s = requests.Session()
# httpbin is a http test website
s.get("https://httpbin.org/cookies/set/foo/bar")
print(s.cookies)
# <Cookies[<Cookie foo=bar for httpbin.org />]>
r = s.get("https://httpbin.org/cookies")
print(r.json())
# {'cookies': {'foo': 'bar'}}
支持模拟的浏览器版本,和我 fork 的 curl-impersonate 一致:
不过只支持类似 Chrome 的浏览器。Firefox 的支持进展可以查看 #59。
- chrome99
- chrome100
- chrome101
- chrome104
- chrome107
- chrome110
- chrome116 [1]
- chrome119 [1]
- chrome120 [1]
- chrome99_android
- edge99
- edge101
- safari15_3 [2]
- safari15_5 [2]
- safari17_0 [1]
- safari17_2_ios [1]
注意:
- 自
0.6.0
起添加。 - 在
0.6.0
中修复, 之前的 http2 指纹是错误的。
from curl_cffi.requests import AsyncSession
async with AsyncSession() as s:
r = await s.get("https://example.com")
更多并发:
import asyncio
from curl_cffi.requests import AsyncSession
urls = [
"https://google.com/",
"https://facebook.com/",
"https://twitter.com/",
]
async with AsyncSession() as s:
tasks = []
for url in urls:
task = s.get(url)
tasks.append(task)
results = await asyncio.gather(*tasks)
from curl_cffi.requests import Session, WebSocket
def on_message(ws: WebSocket, message):
print(message)
with Session() as s:
ws = s.ws_connect(
"wss://api.gemini.com/v1/marketdata/BTCUSD",
on_message=on_message,
)
ws.run_forever()
对于底层 API, Scrapy 集成等进阶话题, 请查阅 文档
有问题和建议请优先提 issue,中英文均可,也可以加 TG 群 或微信群讨论:
- 该项目起初 fork 自:multippt/python_curl_cffi, MIT 协议发布。
- Headers/Cookies 代码来自 httpx, BSD 协议发布。
- Asyncio 支持是受 Tornado 的 curl http client 启发而做。
- WebSocket API 的设计来自 websocket_client。
Yescaptcha 是一个可以识别 Cloudflare 盾的接口,直接返回识别完成的 Cookies (cf_clearance
等) 点此注册:https://yescaptcha.com/i/stfnIO
ScrapeNinja 是一个网络采集 API,它有两个引擎:极速版,性能 较好,可以模拟 TLS 指纹;和通用版,使用浏览器。
ScrapeNinja 帮你解决无头浏览器,代理,超时,重试,并且负责数据抽取,这样你可以直接拿到 JSON 数据。在所有的订阅方案中,切换代理都是直接可用的。