Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

Python Requests library redirect new url

I've been looking through the Python Requests documentation but I cannot see any functionality for what I am trying to …

python http redirect python-requests
Adding headers to requests module

Earlier I used httplib module to add a header in the request. Now I am trying the same thing with …

python http-headers python-requests
Python Requests - No connection adapters

I'm using the Requests: HTTP for Humans library and I got this weird error and I don't know what is …

python python-2.7 python-requests
Requests -- how to tell if you're getting a 404

I'm using the Requests library and accessing a website to gather data from it with the following code: r = requests.…

python python-requests
python requests get cookies

x = requests.post(url, data=data) print x.cookies I used the requests library to get some cookies from a …

python python-requests
How to use cookies in Python Requests

I am trying to login to a page and access another link in the page. payload={'username'=<username>,…

python cookies python-requests
How do I disable log messages from the Requests library?

By default, the Requests python library writes log messages to the console, along the lines of: Starting new HTTP connection (1): …

python logging python-requests verbosity
Can I set max_retries for requests.request?

The Python requests module is simple and elegant but one thing bugs me. It is possible to get a requests.…

python python-requests
Sending SOAP request using Python Requests

Is it possible to use Python's requests library to send a SOAP request?

python soap python-requests
How to make python Requests work via socks proxy

I'm using the great Requests library in my Python script: import requests r = requests.get("some-site.com") print r.text …

python proxy socks python-requests