mirror of
https://github.com/FranP-code/countries.git
synced 2025-10-13 00:02:15 +00:00
22 lines
257 B
Python
22 lines
257 B
Python
import requests
|
|
|
|
url = "https://countries.trevorblades.com"
|
|
|
|
json = {'query': '''
|
|
{
|
|
country(code: "BR") {
|
|
name
|
|
native
|
|
emoji
|
|
currency
|
|
languages {
|
|
code
|
|
name
|
|
}
|
|
}
|
|
}
|
|
'''}
|
|
|
|
r = requests.post(url, json=json)
|
|
print(r.json())
|