Skip to content

Instantly share code, notes, and snippets.

@PatrickAlphaC
Last active January 21, 2020 17:28
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save PatrickAlphaC/d6169c32332becde9cd77c975de41c73 to your computer and use it in GitHub Desktop.
Save PatrickAlphaC/d6169c32332becde9cd77c975de41c73 to your computer and use it in GitHub Desktop.
Simple Xignite Startup
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