mirror of
https://github.com/aljazceru/bitfinex-api-py.git
synced 2025-12-18 22:34:21 +01:00
Rename bfxapi.websocket.client to _client and bfxapi.websocket.handlers to _handlers (according to PEP8).
This commit is contained in:
@@ -1 +1 @@
|
|||||||
from .client import BfxWebSocketClient, BfxWebSocketBucket, BfxWebSocketInputs
|
from ._client import BfxWebSocketClient, BfxWebSocketBucket, BfxWebSocketInputs
|
||||||
|
|||||||
@@ -1,6 +1,6 @@
|
|||||||
import asyncio, json, uuid, websockets
|
import asyncio, json, uuid, websockets
|
||||||
|
|
||||||
from ..handlers import PublicChannelsHandler
|
from .._handlers import PublicChannelsHandler
|
||||||
|
|
||||||
from ..exceptions import ConnectionNotOpen, TooManySubscriptions
|
from ..exceptions import ConnectionNotOpen, TooManySubscriptions
|
||||||
|
|
||||||
@@ -9,7 +9,7 @@ from pyee.asyncio import AsyncIOEventEmitter
|
|||||||
from .bfx_websocket_bucket import require_websocket_connection, BfxWebSocketBucket
|
from .bfx_websocket_bucket import require_websocket_connection, BfxWebSocketBucket
|
||||||
|
|
||||||
from .bfx_websocket_inputs import BfxWebSocketInputs
|
from .bfx_websocket_inputs import BfxWebSocketInputs
|
||||||
from ..handlers import PublicChannelsHandler, AuthEventsHandler
|
from .._handlers import PublicChannelsHandler, AuthEventsHandler
|
||||||
from ..exceptions import ActionRequiresAuthentication, InvalidAuthenticationCredentials, EventNotSupported, \
|
from ..exceptions import ActionRequiresAuthentication, InvalidAuthenticationCredentials, EventNotSupported, \
|
||||||
ZeroConnectionsError, ReconnectionTimeoutError, OutdatedClientVersion
|
ZeroConnectionsError, ReconnectionTimeoutError, OutdatedClientVersion
|
||||||
|
|
||||||
2
setup.py
2
setup.py
@@ -33,7 +33,7 @@ setup(
|
|||||||
},
|
},
|
||||||
packages=[
|
packages=[
|
||||||
"bfxapi", "bfxapi.utils", "bfxapi.types",
|
"bfxapi", "bfxapi.utils", "bfxapi.types",
|
||||||
"bfxapi.websocket", "bfxapi.websocket.client", "bfxapi.websocket.handlers",
|
"bfxapi.websocket", "bfxapi.websocket._client", "bfxapi.websocket._handlers",
|
||||||
"bfxapi.rest", "bfxapi.rest.endpoints", "bfxapi.rest.middleware",
|
"bfxapi.rest", "bfxapi.rest.endpoints", "bfxapi.rest.middleware",
|
||||||
],
|
],
|
||||||
install_requires=[
|
install_requires=[
|
||||||
|
|||||||
Reference in New Issue
Block a user