feat: add TLS fingerprint impersonation (curl_cffi) v1.4.0

This commit is contained in:
test01
2026-01-04 01:35:36 +08:00
parent bb8609086a
commit aab127e80f
7 changed files with 1090 additions and 0 deletions

9
test.py Normal file
View File

@@ -0,0 +1,9 @@
import cfspider
import requests
worker_url = "ip.kami666.xyz"
cf_response = cfspider.get("https://httpbin.org/ip", cf_proxies=worker_url)
req_response = requests.get("https://httpbin.org/ip")
print(cf_response.text)
print(req_response.text)