Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

When I use python requests to check a site, if the site redirects me to another page, will I know?

What I mean is, if I go to "www.yahoo.com/thispage", and yahoo has set up a filter to …

python httplib python-requests
urllib3 - Failed to establish a new connection: [Errno 111]

I am working in the code modifications on my local setup of openstack Designate. Actually it was working fine before. …

python python-requests openstack urllib3
How do I kill SimpleHTTPServer from within a Python script?

I am trying to use http.server to test all the links in a Python project. I can get my …

python python-requests simplehttpserver
Python 3 - How do you tell pipenv to use python 3 and not python 2?

I am trying to use the requests module, here is how I installed it: [ec2-user@ip-xxx-xx-xx-xxx newslookup]$ pipenv install …

python python-3.x pip python-requests pipenv
Difference between data and json parameters in python requests package

What is the difference between the data and json parameters in the python Requests package? It is unclear from the …

python json python-requests
How do I sign a POST request using HMAC-SHA512 and the Python requests library?

I'm trying to use Python to access the trading API at poloniex.com, a cryptocurrency exchange. To do this I …

python python-requests hmac
HTTP Digest/Basic Auth with Python Requests module

My goal here is to be able to parse html/xml data from a password protected page then based on …

xml http python-3.x python-requests digest-authentication
How to POST chunked encoded data in Python

I am trying to POST chunked encoded data to httpbin.org/post. I tried two options: Requests and httplib Using …

python http python-requests httplib chunked-encoding
Socket-timeout: timed out python requests

Using the requests python lib, I make a GET request, and handle Timeout exceptions (as well as other exceptions I …

python-requests socket-timeout-exception