Last active
January 21, 2020 17:28
-
-
Save PatrickAlphaC/d6169c32332becde9cd77c975de41c73 to your computer and use it in GitHub Desktop.
Simple Xignite Startup
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
import requests | |
import json | |
token = 'XXXXX' | |
# Get an Xignite token from https://www.xignite.com/Register | |
url = "http://globalcurrencies.xignite.com/xGlobalCurrencies.json/ListCurrencies?_token={}".format(token) | |
response = requests.get(url) | |
print(response.json()) | |
# Python SDKs are also available | |
# https://github.com/Xignite/Python-Hello-World |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment