Last active
June 16, 2017 07:59
-
-
Save KolevDarko/f071f8f0eb2cc7eea06ff9d21aa61e33 to your computer and use it in GitHub Desktop.
Snippet 1 from BitcoinAverage Bitcoin profits article
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 hmac | |
import time | |
from hashlib import sha256 | |
import subprocess | |
import requests | |
secret_key = '<your secret key here>' or input('Enter your secret key: ') | |
public_key = '<your public key here>' or input('Enter your public key: ') |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment