mirror of
https://github.com/violettoolssite/CFspider.git
synced 2026-04-05 11:29:03 +08:00
9 lines
242 B
Python
9 lines
242 B
Python
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) |