You are reading a single comment by @rhb and its replies. Click here to read the full conversation.
  • 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())
    
About

Avatar for rhb @rhb started