api curl python pandas

Solutions on MaxInterview for api curl python pandas by the best coders in the world

showing results for - "api curl python pandas"
Jonah
02 Nov 2019
1import json
2import requests
3import pandas as pd
4
5response = requests.get("https://www.receitaws.com.br/v1/cnpj/27865757000102")
6data = json.loads(response.content.decode(response.encoding))
7df = pd.DataFrame([data])
8
similar questions
queries leading to this page
api curl python pandas