Example of earlier test that worked fine:
import requests # Making a get request response = requests.get('https://api.github.com') print("Status code:", response.status_code) # print response print(response) # print json content print(response.json())
@rhb started
London Fixed Gear and Single-Speed is a community of predominantly fixed gear and single-speed cyclists in and around London, UK.
This site is supported almost exclusively by donations. Please consider donating a small amount regularly.
Example of earlier test that worked fine: