Answers for "python request body json"

0

python request 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() )
Posted by: Guest on March-06-2022

Code answers related to "python request body json"

Python Answers by Framework

Browse Popular Code Answers by Language