Skip to content
/ ziwia Public

[Working][Not maintained] Python API client for Kraken Cryptocurrency Exchange

License

Notifications You must be signed in to change notification settings

malja/ziwia

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Documentation Status MIT Licence

ziwia

Ziwia is an API client for Kraken cryptocurrency exchange website. Is supports the version 0 of the API as described on https://www.kraken.com/help/api.

Prerequisites

As of version 0.2, ziwia requires requests library.

> pip install requests

Installation

See Documentation.

Examples

Following code connects to your Kraken Account and returns your balance held in ZCASH.

import ziwia

# Add your public and private keys
api = ziwia.Api("public-key", "private-key")
# Edit currency you use
balance = ziwia.private("Balance")["result"]["XZEC"]
# See all $ you have :)
print(balance)

Alternatively you can use new method introduced in version 0.2:

import ziwia

# Create API client
api = ziwia.Api("public-key", "private-key")
# Get your account balance
balance = api.balance()
print(balance)

About

[Working][Not maintained] Python API client for Kraken Cryptocurrency Exchange

Topics

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages