Skip to main content

Python bindings for Kaiko Bittrex Historical trade data

Project description

A python module that provides easier access to the Kaiko Bittrex Historical trade data. Assuming that you’ve bought the files from here, you can now use these (relativelly) simple 2 steps to process them.

  1. Create an index.csv file. We assume that you have unziped the file and when you ls Bittrex you see the pairs e.g. 2GIVEBTC, 8BITBTC etc. Then you run: find Bittrex -type f | grep -v ".DS_Store" > index.csv and an index.csv file must have been created for you. This file has all the .csv.gz files of the archive.

  2. When you install with pip install kaikobittrex, you can create an Index object from Python and access the content of those files like this:

#!/usr/bin/env python

from kaikobittrex import Index

idx = Index.from_file()

def process_pair(year, month, day, pair, f):
    for lineno, line in enumerate(f.readlines()):
        line = line.strip()
        if lineno == 0:
            assert line == "id,exchange,symbol,date,price,amount,sell"
        else:
            record = idx.parse_line(line)
            print record

idx.process_all(process_pair)

There are additional process_* methods that allow you to process subset of those data. process_day(self, year, month, day, f) and process_pair(self, year, month, day, pair, f) all take the same type of callback argument f and process the subset of records you defined. The Index object also exposes the index member which has records for given date/pair, the pairs member that has all available pairs and the pairs_map member that maps pairs to coin base/quote pairs. See the test file for more details.

Notes

To release python setup.py sdist, twine upload dist/*.

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

kaikobittrex-1.0.3.tar.gz (3.9 kB view details)

Uploaded Source

File details

Details for the file kaikobittrex-1.0.3.tar.gz.

File metadata

File hashes

Hashes for kaikobittrex-1.0.3.tar.gz
Algorithm Hash digest
SHA256 ae66498c6bed913ffbae7a510180253a53433cdc5744dc91f2050c42fefc7b99
MD5 5e1f9550d82cf72eccb72ad5685de0de
BLAKE2b-256 56d4b434da1df16ed6a6fcff5e58b06796ba8b24c9672d5d999550a1fb843ee4

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page