Move _BfxWebsocketBucket class in its own file bfxapi/websocket/_BfxWebsocketBucket.py.

This commit is contained in:
Davide Casale
2023-01-19 18:12:12 +01:00
parent 5fe4d83902
commit 36725a183e
3 changed files with 100 additions and 81 deletions

View File

@@ -1,5 +1,13 @@
from typing import TypedDict, Optional
__all__ = [
"Ticker",
"Trades",
"Book",
"Candles",
"Status"
]
class Ticker(TypedDict):
chanId: int; symbol: str
pair: Optional[str]