bitstamp-python-client
bitstamp-python-client copied to clipboard
Python package to communicate with bitstamp.net
`API v1 authentication and v1 endpoints are being deprecated and are no longer documented on this page. For now you can still access API v1 documentation [here](https://www.bitstamp.net/api-deprecated/)[](https://www.bitstamp.net/api/#top).` This library uses...
- implemented crypto_transactions - added optional parameters since_id and since_timestamp to user_transactions
Bitstamp API seems to refuse requests without user-agent. I added a fake user-agent around here to make it work again: https://github.com/kmadac/bitstamp-python-client/blob/35b9a61f3892cc281de89963d210f7bd5757c717/bitstamp/client.py#L80 Example: ``` kwargs['headers'] = { 'User-Agent': 'Mozilla/5.0 (Windows NT...
V2 of the Bitstamp API has the option of specifying that the `buy_limit_order` or `sell_limit_order` can be a `daily_order` (self cancelling at 00:00 UTC). Would it be possible to add...
When i let my script run it works fine for like 2-3 minutes, then it stops giving me this error. Could not find anything in the Documentation. Traceback (most recent...
Could we get this API call (and maybe "withdrawal status" and "cancel withdrawal") added to the client? Would be nice to have.
Use requests session to preserve TCP connection - massively improves performance [ NB: tests not run ]