Answers for "using apis with pyhon"

19

api in python

import requests
import json

r = requests.get("URL")
j=r.json()
print(j)
Posted by: Guest on February-19-2020

Python Answers by Framework

Browse Popular Code Answers by Language