mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
15 lines
513 B
Python
15 lines
513 B
Python
"""
|
|
This module is used to interact with the bitfinex api
|
|
"""
|
|
|
|
from .version import __version__
|
|
from .client import Client, PUB_REST_HOST, PUB_WS_HOST, REST_HOST, WS_HOST
|
|
from .models import (Order, Trade, OrderBook, Subscription, Wallet,
|
|
Position, FundingLoan, FundingOffer, FundingCredit,
|
|
Movement)
|
|
from .websockets.generic_websocket import GenericWebsocket, Socket
|
|
from .websockets.bfx_websocket import BfxWebsocket
|
|
from .utils.decimal import Decimal
|
|
|
|
NAME = 'bfxapi'
|