test.py 473 B

123456789101112131415
  1. import requests
  2. url = "http://free-proxy.cz/zh/proxylist/country/all/http/ping/all/2"
  3. payload={}
  4. headers = {
  5. 'DNT': '1',
  6. 'Upgrade-Insecure-Requests': '1',
  7. 'User-Agent': 'Mozilla/5.0 (Macintosh; Intel Mac OS X 10_14_6) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/87.0.4280.141 Safari/537.36',
  8. 'Referer': 'http://free-proxy.cz/zh/proxylist/country/all/http/ping/all'
  9. }
  10. response = requests.request("GET", url, headers=headers, data=payload)
  11. print(response.text)