Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions python_pip_examples/ticker.py
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
secret_key = '' or input('Enter your secret key: ')
public_key = '' or input('Enter your public key: ')

restful_client = RestfulClient(secret_key, public_key)
restful_client = RestfulClient(public_key, secret_key)

ticker_all_local = restful_client.ticker_all_local(crypto='LTC', fiat='GBP')
print('ticker all local')
Expand Down Expand Up @@ -49,4 +49,4 @@

ticker_changes_global_btceur = restful_client.ticker_changes_global('BTCEUR')
print('Ticker including changes (for BTCEUR):')
print(ticker_changes_global_btceur)
print(ticker_changes_global_btceur)