Skip to content

Instantly share code, notes, and snippets.

View nottug's full-sized avatar

Tug Witt nottug

  • New York
View GitHub Profile
@nottug
nottug / sample.py
Last active July 31, 2018 16:20 — forked from phillijw/sample.py
Coinigy API v2 Signature Example in Python 3
import time
import hmac
import hashlib
import requests
BASE_URL = 'https://api.coinigy.com'
ENDPOINT = '/api/v2/private/exchanges'
KEY = 'keykeykeykeykeykeykeykeykeykeyke'
SECRET = 'secretsecretsecretsecretsecretse'
METHOD = 'GET'