Top "Python-requests" questions

USE ONLY FOR THE PYTHON REQUESTS LIBRARY.

Python : Trying to POST form using requests

I'm trying to login a website for some scraping using Python and requests library, I am trying the following (which …

python python-requests
python ignore certificate validation urllib2

I want to ignore the certification validation during my request to the server with an internal corporate link. With python …

python python-2.7 urllib2 python-requests
How to extract HTTP response body from a Python requests call?

I'm using the Python requests library. I'm trying to figure out how to extract the actual HTML body from a …

http-request python-requests
Download and save PDF file with Python requests module

I am trying to download a PDF file from a website and save it to disk. My attempts either fail …

python python-2.7 python-requests
Python Requests requests.exceptions.SSLError: [Errno 8] _ssl.c:504: EOF occurred in violation of protocol

I'm on Ubuntu 12.10 with OpenSSL 1.0.1c, python 2.7.3, Requests 1.0.3 and 1.0.4 (tried both), and when attempting to connect to the website in …

python openssl httprequest python-requests ubuntu-12.10
Using Python Requests: Sessions, Cookies, and POST

I am trying to scrape some selling data using the StubHub API. An example of this data seen here: https://…

python python-3.x python-requests session-cookies
Python-Requests close http connection

I was wondering, how do you close a connection with Requests (python-requests.org)? With httplib it's HTTPConnection.close(), but how …

python http urllib2 httplib python-requests
Python Requests package: Handling xml response

I like very much the requests package and its comfortable way to handle JSON responses. Unfortunately, I did not understand …

python xml httprequest python-requests
How to get Python requests to trust a self signed SSL certificate?

import requests data = {'foo':'bar'} url = 'https://foo.com/bar' r = requests.post(url, data=data) If the URL uses …

python ssl python-requests
Requests (Caused by SSLError("Can't connect to HTTPS URL because the SSL module is not available.") Error in PyCharm requesting website

Using requests in Python3 Windows via Pycharm, and receiving SSL Module Not Available Error I've spent hours trying to figure …

python ssl https python-requests pycharm