Files
bitfinex-api-py/bfxapi/__init__.py
2019-06-06 10:12:18 +08:00

14 lines
424 B
Python

"""
This module is used to interact with the bitfinex api
"""
from .version import __version__
from .client import Client
from .models import (Order, Trade, OrderBook, Subscription, Wallet,
Position, FundingLoan, FundingOffer, FundingCredit)
from .websockets.GenericWebsocket import GenericWebsocket
from .websockets.BfxWebsocket import BfxWebsocket
from .utils.Decimal import Decimal
NAME = 'bfxapi'