https://github.com/terhechte/cryptsy-python-api
A Python implementation of the Cryptsy-API (https://www.cryptsy.com/)
https://github.com/terhechte/cryptsy-python-api
Last synced: 9 months ago
JSON representation
A Python implementation of the Cryptsy-API (https://www.cryptsy.com/)
- Host: GitHub
- URL: https://github.com/terhechte/cryptsy-python-api
- Owner: terhechte
- License: gpl-2.0
- Created: 2014-01-31T14:15:17.000Z (almost 12 years ago)
- Default Branch: master
- Last Pushed: 2014-02-04T14:49:28.000Z (almost 12 years ago)
- Last Synced: 2025-01-27T22:44:43.504Z (11 months ago)
- Language: Python
- Size: 141 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.org
- License: license.txt
Awesome Lists containing this project
README
* Python Cryptsy API
This is a simple Python Implementation of the [[https://www.cryptsy.com/pages/api][Cryptsy API]]. Both public and private calls are supported, but not all API calls have currently been implemented. All calls return the initiated json parsing results. No additional object transformation is being performed.
* Installation
This is currently not installable via EasyInstall or Pip. Instead, simply download cryptsy.py and put it into your directory
* Usage
This library requires that you both have a Cryptsy Key and a Sign:
#+BEGIN_QUOTE
Key — Public API key. An example API key: 5a8808b25e3f59d8818d3fbc0ce993fbb82dcf90
Sign — ALL POST data (param=val¶m1=val1) signed by a secret key according to HMAC-SHA512 method. Your secret key and public keys can be generated from your account settings page.
#+END_QUOTE
You can get them when registering on Cryptsy.com
The Python library will automatically take care of the nonce value for you.
#+BEGIN_SRC Python
import cryptsy
api_example = cryptsy.cryptsy_api("my-key", "my-secret")
print api.marketdata()
#+END_SRC