Files
bitfinex-api-py/bfxapi/__init__.py
2018-12-18 11:28:04 +00:00

11 lines
306 B
Python

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