About 6,300,000 results
Open links in new tab
  1. How do I use basic HTTP authentication with the Python Requests …

    Nov 5, 2014 · How do I use basic HTTP authentication with the Python Requests library? Asked 10 years, 11 months ago Modified 2 years, 5 months ago Viewed 395k times

  2. How do I disable the security certificate check in Python requests

    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 sure …

  3. How to get Python requests to trust a self signed SSL certificate?

    My python requests code does not accept the self-signed certificate but curl does. It turns out python requests are very strict on the self-signed certificate. It needs to be a root CA …

  4. How to upload file with python requests? - Stack Overflow

    I'm performing a simple task of uploading a file using Python requests library. I searched Stack Overflow and no one seemed to have the same problem, namely, that the file is not received …

  5. How can I see the entire HTTP request that's being sent by my …

    May 15, 2012 · Note that httplib isn't available on Python 3. To make the code portable, replace import httplib with import requests.packages.urllib3.connectionpool as httplib or use six and …

  6. python - ImportError: No module named requests - Stack Overflow

    Python 3: sudo pip3 install requests if you have pip installed (pip is the package installer for python and should come by default with your python installation).

  7. How to fix "403 Forbidden" errors when calling APIs using Python …

    How to fix "403 Forbidden" errors when calling APIs using Python requests? Asked 9 years, 3 months ago Modified 9 months ago Viewed 290k times

  8. Python Requests and persistent sessions - Stack Overflow

    Python Requests and persistent sessions Asked 13 years ago Modified 1 year, 11 months ago Viewed 509k times

  9. python - What is the difference between 'content' and 'text'

    The Python requests documentation has examples of how to do things without explaining why. Both r.text and r.content are shown as examples of how to get the server response.

  10. 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! …