Python Demande Body JSON

import requests

# make a json Request
response = requests.get('https://api.github.com')

# print page content
print(response)

# print json Data 
print( response.json() )
ahmed bi