Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

ImportError: No module named requests

Whenever I try to import requests, I get an error saying No module Named requests. import requests The error I …

python python-requests python-import
How to POST JSON data with Python Requests?

I need to POST a JSON from a client to a server. I'm using Python 2.7.1 and simplejson. The client is …

python json python-requests cherrypy
Python Requests throwing SSLError

I'm working on a simple script that involves CAS, jspring security check, redirection, etc. I would like to use Kenneth …

python ssl python-requests urllib3
What's the best way to parse a JSON response from the requests library?

I'm using the python requests module to send a RESTful GET to a server, for which I get a response …

python json rest python-requests
Correct way to try/except using Python requests module?

try: r = requests.get(url, params={'s': thing}) except requests.ConnectionError, e: print e #should I also sys.exit(1) after …

python request python-requests
How do I disable the security certificate check in Python requests

I am using import requests requests.post(url='https://foo.com', data={'bar':'baz'}) but I get a request.exceptions.…

python https python-requests
How to download image using requests

I'm trying to download and save an image from the web using python's requests module. Here is the (working) code …

python urllib2 python-requests
Max retries exceeded with URL in requests

I'm trying to get the content of App Store > Business: import requests from lxml import html page = requests.get("…

python python-requests
Python Request Post with param data

This is the raw request for an API call: POST http://192.168.3.45:8080/api/v2/event/log?sessionKey=b299d17b896417a7…

python httprequest python-requests http-status-codes
What are the differences between the urllib, urllib2, urllib3 and requests module?

In Python, what are the differences between the urllib, urllib2, urllib3 and requests modules? Why are there three? They seem …

python python-requests urllib2 urllib python-2.x