Python, Requests, and SSL

Posted on Mon 20 June 2016 in blog • Tagged with python, requests, ssl, aynscio, aiohttp

SSL and Synchronous Requests

(scroll down for async requests)

In Python, the main way in which one makes a web request is via the requests library, like so:

import requests
r = requests.get("http://google.com")

Where in this example Google's website is the route that you are interested in …


Continue reading