Skip to content

Instantly share code, notes, and snippets.

@dkav6
Last active November 6, 2021 02:57
Show Gist options
  • Save dkav6/c53ea7c3f7d72ab825873860a35244b8 to your computer and use it in GitHub Desktop.
Save dkav6/c53ea7c3f7d72ab825873860a35244b8 to your computer and use it in GitHub Desktop.
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