Answers for "proxy https obligatory python requests"

0

python requests use proxy

import requests

proxies = {
  "http": "http://10.10.1.10:3128",
  "https": "https://10.10.1.10:1080",
}

requests.get("http://example.org", proxies=proxies)
Posted by: Guest on March-12-2021

Code answers related to "TypeScript"

Browse Popular Code Answers by Language