mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 06:44:22 +01:00
13 lines
399 B
Python
13 lines
399 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, Socket
|
|
from .websockets.BfxWebsocket import BfxWebsocket
|
|
from .utils.Decimal import Decimal
|
|
|
|
NAME = 'bfxapi'
|