diff --git a/docs/binance.rst b/docs/binance.rst index c243a5fc3..998aa1f70 100644 --- a/docs/binance.rst +++ b/docs/binance.rst @@ -1,7 +1,7 @@ Binance API =========== -client module +Client module ------------- .. automodule:: binance.client @@ -9,10 +9,34 @@ client module :undoc-members: :show-inheritance: +Async client module +------------------- + +.. automodule:: binance.async_client + :members: + :undoc-members: + :show-inheritance: + +Websockets module +----------------- + +.. automodule:: binance.ws.streams + :members: + :undoc-members: + :show-inheritance: + +Threaded streams module +----------------------- + +.. automodule:: binance.ws.threaded_stream + :members: + :undoc-members: + :show-inheritance: + depthcache module ----------------- -.. automodule:: binance.depthcache +.. automodule:: binance.ws.depthcache :members: :undoc-members: :show-inheritance: @@ -32,11 +56,3 @@ helpers module :members: :undoc-members: :show-inheritance: - -websockets module ------------------ - -.. automodule:: binance.streams - :members: - :undoc-members: - :show-inheritance: diff --git a/docs/conf.py b/docs/conf.py index da1aa9ae4..e705d3c54 100644 --- a/docs/conf.py +++ b/docs/conf.py @@ -71,7 +71,7 @@ # # This is also used if you do content translation via gettext catalogs. # Usually you set "language" from the command line for these cases. -language = None +language = "en" # List of patterns, relative to source directory, that match files and # directories to ignore when looking for source files. diff --git a/docs/requirements.txt b/docs/requirements.txt index 2c7c38ffe..2a06717bd 100644 --- a/docs/requirements.txt +++ b/docs/requirements.txt @@ -1,3 +1,4 @@ sphinx==8.1.3 sphinx_rtd_theme==3.0.1 -sphinx-copybutton>=0.5.0 \ No newline at end of file +sphinx-copybutton>=0.5.0 +aiohttp