Skip to content

Instantly share code, notes, and snippets.

@TobiTenno
Created June 20, 2022 19:17
Show Gist options
  • Save TobiTenno/7b65cc7fbfa992889b79502dc0e5f9a9 to your computer and use it in GitHub Desktop.
Save TobiTenno/7b65cc7fbfa992889b79502dc0e5f9a9 to your computer and use it in GitHub Desktop.
WorldState
# ws testers for python
import requests
import json
url = 'https://api.warframestat.us/pc/?language=en'
response = requests.get(url)
print(response)
data = response.text
parsed = json.loads(data)
print(json.dumps(parsed, indent=2))
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment