Skip to content

Instantly share code, notes, and snippets.

@Deathcrash
Last active June 29, 2023 10:54
Show Gist options
  • Save Deathcrash/f148a715344e79581a4090ccc4b66b93 to your computer and use it in GitHub Desktop.
Save Deathcrash/f148a715344e79581a4090ccc4b66b93 to your computer and use it in GitHub Desktop.
currency
import requests
url_change = 'https://openexchangerates.org/api/latest.json?app_id=565db73ce703480cb8d8849e32f32035'
r = requests.get(url_change)
r = r.json()
print(r["rates"]["CNY"])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment