mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-19 14:54:21 +01:00
37 lines
1.1 KiB
Python
37 lines
1.1 KiB
Python
from .rest import BfxRestInterface
|
|
from .websocket import BfxWebsocketClient
|
|
|
|
from typing import Optional
|
|
|
|
from enum import Enum
|
|
|
|
class Constants(str, Enum):
|
|
REST_HOST = "https://api.bitfinex.com/v2"
|
|
PUB_REST_HOST = "https://api-pub.bitfinex.com/v2"
|
|
STAGING_REST_HOST = "https://api.staging.bitfinex.com/v2"
|
|
|
|
WSS_HOST = "wss://api.bitfinex.com/ws/2"
|
|
PUB_WSS_HOST = "wss://api-pub.bitfinex.com/ws/2"
|
|
STAGING_WSS_HOST = "wss://api.staging.bitfinex.com/ws/2"
|
|
|
|
class Client(object):
|
|
def __init__(
|
|
self,
|
|
REST_HOST: str = Constants.REST_HOST,
|
|
WSS_HOST: str = Constants.WSS_HOST,
|
|
API_KEY: Optional[str] = None,
|
|
API_SECRET: Optional[str] = None,
|
|
log_level: str = "WARNING"
|
|
):
|
|
self.rest = BfxRestInterface(
|
|
host=REST_HOST,
|
|
API_KEY=API_KEY,
|
|
API_SECRET=API_SECRET
|
|
)
|
|
|
|
self.wss = BfxWebsocketClient(
|
|
host=WSS_HOST,
|
|
API_KEY=API_KEY,
|
|
API_SECRET=API_SECRET,
|
|
log_level=log_level
|
|
) |