About 9,000,000 results
Open links in new tab
  1. How to upload file with python requests? - Stack Overflow

    If you want to upload a single file with Python requests library, then requests lib supports streaming uploads, which allow you to send large files or streams without reading into memory.

  2. 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 11 years, 1 month ago Modified 2 years, 7 months ago Viewed 397k times

  3. Timeout for python requests.get entire response

    Feb 23, 2014 · The problem of total timeout is not related directly to python-requests but to httplib (used by requests for Python 2.7). The package passes everything related to timeout directly to httplib.

  4. Download and save PDF file with Python requests module

    Dec 29, 2015 · Download and save PDF file with Python requests module Asked 9 years, 11 months ago Modified 4 months ago Viewed 309k times

  5. 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, 5 months ago Modified 10 months ago Viewed 293k times

  6. How to send a "multipart/form-data" with requests in python?

    Sep 12, 2012 · How to send a multipart/form-data with requests in python? How to send a file, I understand, but how to send the form data by this method can not understand.

  7. 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 certificate. In other …

  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! However, CAS …

  9. python - How to extract the HTTP error text from a requests response ...

    Sep 4, 2018 · When raised with raise_for_status (), e.reason contains a default message that's put there by the requests library, source code for requests. user1898153's answer gets to the actual response …

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

    Requests is not a built-in module (it does not come with the default Python installation), so you will have to install it: Mac OS X and Linux Python 2: sudo pip install requests Python 3: sudo pip3 install …