API client for Gemini
Project description
# Geminipy A library for the Gemini bitcoin exchange API
Easily communicate with the Gemini Bitcoin exchange API without having to deal with HTTP requests.
Requirements
Please get an API key from [https://exchange.gemini.com/settings/api](https://exchange.gemini.com/settings/api)
Installation
shell pip install geminipy
Example
python from geminipy import Geminipy
# The connection defaults to the Gemini sandbox. # Add ‘live=True’ to use the live exchange con = Geminipy(api_key=’your API key’, secret_key=’your secret key’, live=True)
# public request symbols = con.symbols()
# a Requests response is returned. # So we can access the HTTP reponse code, # the raw response content, or a json object print symbols.status_code print symbols.content print symbols.json()
# authenticated request order = con.new_order(amount=’1’, price=’200’,side=’buy’)
print order.json()
#send a heartbeat con.heartbeat()
The required nonce is the current millisecond timestamp.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file geminipy-0.0.4.tar.gz
.
File metadata
- Download URL: geminipy-0.0.4.tar.gz
- Upload date:
- Size: 15.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.15.0 pkginfo/1.5.0.1 requests/2.9.1 setuptools/41.2.0 requests-toolbelt/0.9.1 tqdm/4.36.1 CPython/3.5.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | e8a65a54f6fd0e50051d63436888b601a038d9c8546bfb89ab948559c2298202 |
|
MD5 | b6ad62db97215e0f29e9aa1d27917834 |
|
BLAKE2b-256 | e0dd239b4cdf1230f5aff8fc04b0a8d0cad7e47190c6f61c88253ebf86422475 |