Skip to main content

Wrapper for Cryptopia API

Project description

Pytopia

Pytopia is a library that allows you to interact with Cryptopia API.

Requirements

  • Python (3.6, 3.7)

Installation

To install this package, you need to make sure pip is installed:

pip install pytopia

Example

Let's take a look over a simple example on how to use it:

from pytopia import Pytopia

pytopia = Pytopia(PUBLIC_KEY, PRIVATE_KEY)

# Get the last traded price for every trade pair
trade_pairs =  pytopia.get_trade_pairs()

for trade_pair in trade_pairs:
    market_history = pytopia.get_market_history(trade_pairs[0]['Id'])
    last_traded_price = market_history[0]['Price']
    print(last_traded_price)

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

pytopia-1.0.0.tar.gz (2.9 kB view hashes)

Uploaded Source

Built Distribution

pytopia-1.0.0-py3-none-any.whl (7.3 kB view hashes)

Uploaded Python 3

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