Skip to content
This repository was archived by the owner on Jan 23, 2024. It is now read-only.
Open
Show file tree
Hide file tree
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
2 changes: 1 addition & 1 deletion coinbase/CoinbaseRPC.py
Original file line number Diff line number Diff line change
Expand Up @@ -66,7 +66,7 @@ def request(self, method, url, params=None):

headers['ACCESS_KEY'] = auth['api_key']
headers['ACCESS_SIGNATURE'] = signature
headers['ACCESS_NONCE'] = self.__nonce
headers['ACCESS_NONCE'] = str(self.__nonce)
headers['Accept'] = 'application/json'
else:
raise CoinbaseAPIException('Invalid authentication mechanism')
Expand Down
5 changes: 3 additions & 2 deletions setup.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# ----- Imports ---------------------------------------------------------------

from distutils.core import setup
from setuptools import setup

# ----- Instructions ----------------------------------------------------------

Expand All @@ -22,5 +22,6 @@
'Operating System :: OS Independent',
'Programming Language :: Python :: 3',
'Topic :: Software Development :: Libraries :: Python Modules',
]
],
install_requires = ["requests"]
)