Last active
November 6, 2021 02:57
-
-
Save dkav6/c53ea7c3f7d72ab825873860a35244b8 to your computer and use it in GitHub Desktop.
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
from ccxt import coinbasepro | |
def get_client(): | |
client = coinbasepro({ | |
'apiKey': '', | |
'secret': '', | |
'password': '', | |
'enableRateLimit': True, | |
}) | |
return client | |
client = get_client() |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment