Skip to main content

Lib for fisco Private and Public API

Project description

python_fisco

Fisco API wrapper for Python 3.

Inspired by this wrapper written by 'zaifapi'.

Install latest release:

pip install python-fisco

Usage:

from python_fisco import *
FiscoPublic().get_ticker('btc_jpy')

Public Api

# ticker
from python_fisco import *
FiscoPublic().get_ticker('btc_jpy')

# last_price
FiscoPublic().get_last_price('btc_jpy')

# trades
FiscoPublic().get_trades('btc_jpy')

# depth
FiscoPublic().get_depth('btc_jpy')

Private API

import os
from python_fisco import *
private_api = FiscoPrivate(os.environ.get('FCCE_KEY'), os.environ.get('FCCE_SECRET'))

private_api.get_info()

private_api.get_trade_history()

private_api.get_active_orders()

from decimal import Decimal
private_api.trade(currency_pair='btc_jpy', action='ask', price=Decimal(70000), amount=Decimal(0.001))

private_api.cancel_order(order_id=1)

private_api.withdraw(currency='btc', address='address', amount=Decimal(0.001))

private_api.get_deposit_history('btc')

private_api.get_withdraw_history('btc')

See

https://fcce.jp/api-docs

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

python_fisco-0.0.2.tar.gz (5.8 kB view hashes)

Uploaded Source

Built Distributions

python_fisco-0.0.2-py3.6.egg (21.1 kB view hashes)

Uploaded Source

python_fisco-0.0.2-py3-none-any.whl (11.2 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