Skip to content

Latest commit

 

History

History
32 lines (20 loc) · 517 Bytes

README.md

File metadata and controls

32 lines (20 loc) · 517 Bytes

Yobit API Python wrapper.

Install

pip3 install git+https://git@github.com/kl09/yobit_api.git

Example for PublicApi:

import yobit_api
res = yobit_api.PublicApi().get_pair_ticker(pair="btc_usd")

Example for TradeApi:

import yobit_api
res = yobit_api.TradeApi(key="yobit_key", secret_key="yobit_secret_key").get_info()

By default you can use Cloudflare scrape. This module helps to bypass Cloudflare's anti-bot page.

Star it if u like