Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

requests: how to disable / bypass proxy

I am getting an url with: r = requests.get("http://myserver.com") As I can see in the 'access.log' …

python python-requests
Python Requests - How to use system ca-certificates (debian/ubuntu)?

I've installed a self-signed root ca cert into debian's /usr/share/ca-certificates/local and installed them with sudo dpkg-reconfigure ca-certificates. …

python ssl debian python-requests debian-based
Basic authentication not working with Requests library

I'm trying to use basic auth in python auth = requests.post('http://' + hostname, auth=HTTPBasicAuth(user, password)) request = requests.…

python api python-requests appdynamics
Using python Requests with javascript pages

I am trying to use the Requests framework with python (http://docs.python-requests.org/en/latest/) but the page I …

python web-scraping python-requests
Python HTTP Server/Client: Remote end closed connection without response error

I made simple HTTP Server using BaseHTTPRequestHandler. The problem is, that when I want to post some data using requests …

python error-handling python-requests httpserver
Python requests. 403 Forbidden

I needed to parse a site, but i got an error 403 Forbidden. Here is a code: url = 'http://worldagnetwork.com/…

python python-requests
Passing csrftoken with python Requests

How do you pass a csrftoken with the python module Requests? This is what I have but it's not working, …

python csrf python-requests
using requests with TLS doesn't give SNI support

I'm using requests to communicate with a django app but When I try requests.get('https://mysite.com', verify=True) …

python ssl ssl-certificate python-requests sni
Login to Facebook using python requests

I'm trying to find a way to automatically login to Facebook without browser using Python. I experimented with "requests" lib. …

python facebook facebook-login python-requests
How to save requests (python) cookies to a file?

How to use the library requests (in python) after a request #!/usr/bin/env python # -*- coding: utf-8 -*…

python cookies python-requests