About 23,700,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 to get Python requests to trust a self signed SSL certificate?

    r = requests.post(url, data=data, verify=False) However, what I would like to do is point requests to a copy of the public key on disk and tell it to trust that certificate.

  3. 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, 6 months ago Viewed 397k times

  4. How can I mock requests and the response? - Stack Overflow

    I am trying to use Pythons mock package to mock Pythons requests module. What are the basic calls to get me working in below scenario? In my views.py, I have a function that makes variety of reque...

  5. 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 …

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

    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 from six.moves …

  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, 4 months ago Modified 10 months ago Viewed 292k times

  8. HTTP requests and JSON parsing in Python - Stack Overflow

    Jun 17, 2011 · The requests Python module takes care of both retrieving JSON data and decoding it, due to its builtin JSON decoder. Here is an example taken from the module's documentation:

  9. ssl - Python Requests - How to use system ca-certificates (debian ...

    Python Requests - How to use system ca-certificates (debian/ubuntu)? Asked 8 years, 8 months ago Modified 1 year, 9 months ago Viewed 353k times

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