Add bfxapi package. Add bfxapi.websocket subpackage. Add requirements.txt file.

This commit is contained in:
Davide Casale
2022-11-07 18:35:39 +01:00
parent 8fd261fd19
commit 048eedcd8e
6 changed files with 89 additions and 0 deletions

View File

@@ -0,0 +1,6 @@
from enum import Enum
class Channels(str, Enum):
TICKER = "ticker"
TRADES = "trades"
BOOK = "book"