About 28,200,000 results
Open links in new tab
  1. Correct way to make a Python HTTPS request using requests …

    Some things to try: use curl to construct a request by hand, to make sure that you know what the contents of a valid request should be. If that works, then you know that there is a problem with …

  2. How do I disable the security certificate check in Python's Requests?

    218 Use requests.packages.urllib3.disable_warnings() and verify=False on requests methods. Note that you can either import urllib3 directly or import it from requests.packages.urllib3 to be …

  3. How do I read a response from Python Requests? - Stack Overflow

    I have two Python scripts. One uses the Urllib2 library and one uses the Requests library. I have found Requests easier to implement, but I can't find an equivalent for urlib2's read() function. For

  4. How to make python Requests work via SOCKS proxy

    Sep 26, 2012 · requests.exceptions.ConnectionError: SOCKSHTTPConnectionPool(host='myhost', port=80): Max retries exceeded with url: /my/path …

  5. Request vs Requests module in Python - Stack Overflow

    May 20, 2018 · Can anyone tell me what the difference between the request and the popular requests module is in Python?

  6. Correct way to try/except using Python requests module?

    All exceptions that Requests explicitly raises inherit from requests.exceptions.RequestException. To answer your question, what you show will not cover all of your bases. You'll only catch …

  7. What are the differences between the urllib, urllib2, urllib3 and ...

    Requests - Requests’ is a simple, easy-to-use HTTP library written in Python. 1) Python Requests encodes the parameters automatically so you just pass them as simple arguments, unlike in …

  8. ssl - Python Requests throwing SSLError - Stack Overflow

    Nov 5, 2015 · I'm working on a simple script that involves CAS, jspring security check, redirection, etc. I would like to use Kenneth Reitz's python requests because it's a great piece of work! …

  9. ImportError: No module named requests - Stack Overflow

    Tried 'sudo pip3 install requests' and it seeed to download, but then when running the file with requests in it, got the typical "ImportError: No module named requests".

  10. Use python requests to download CSV - Stack Overflow

    Here is my code: import csv import requests with requests.Session () as s: s.post (url, data=payload) download = s.get ('url that directly download a csv report') This gives me the …