Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

Python requests - Exception Type: ConnectionError - try: except does not work

I am using a webservice to retrieve some data but sometimes the url is not working and my site is …

python url python-requests connection python-2.x
Python requests exception handling

How to handle exceptions with python library requests? For example how to check is PC connected to internet? When I …

python exception http-request python-requests
python requests ssl handshake failure

Every time I try to do: requests.get('https://url') I got this message: import requests >>> requests.…

python python-requests
Measure website load time with Python requests

I'm trying to build a tool for testing the delay of my internet connection, more specifically web site load times. …

python networking delay python-requests timeit
How to pass proxy-authentication (requires digest auth) by using python requests module

I was using Mechanize module a while ago, and now try to use Requests module. (Python mechanize doesn't work when …

python digest-authentication python-requests proxy-server
How to send an array using requests.post (Python)? "Value Error: Too many values to unpack"

I'm trying to send an array(list) of requests to the WheniWork API using requests.post, and I keep getting …

python api python-requests
Putting a `Cookie` in a `CookieJar`

I'm using the new Python Requests library to make http requests. I obtain a cookie from the server as text. …

python cookies http-request python-requests
python requests.get() returns improperly decoded text instead of UTF-8?

When the content-type of the server is 'Content-Type:text/html', requests.get() returns improperly encoded data. However, if we have …

python utf-8 python-requests
How to add a cookie to the cookiejar in python requests library

I am trying to add a cookie to an existing cookiejar using the python requests 1.2.3 library. Every time I add …

cookies python-3.x session-cookies python-requests
Python SSL connection "EOF occurred in violation of protocol"

I'm using Django Celery task to connect to Facebook Graph API with requests lib using Gevent. Issue I'm constantly running …

python django celery python-requests gevent