Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR PYTHON

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() )
 
PREVIOUS NEXT
Tagged: #python #request #body #json
ADD COMMENT
Topic
Name
7+5 =