From d68e9f1f2330d339da684083c565935415473907 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 14 May 2016 09:46:59 +0100 Subject: [PATCH] docs: add event details for SteamClient; fix typos --- docs/api/steam.client.rst | 8 +++--- docs/index.rst | 8 +++--- steam/client/__init__.py | 41 ++++++++++++++++++++++++++----- steam/client/builtins/__init__.py | 4 +-- steam/client/gc.py | 2 +- steam/client/mixins/__init__.py | 4 +-- steam/webapi.py | 2 +- 7 files changed, 50 insertions(+), 19 deletions(-) diff --git a/docs/api/steam.client.rst b/docs/api/steam.client.rst index c809292..721b681 100644 --- a/docs/api/steam.client.rst +++ b/docs/api/steam.client.rst @@ -1,11 +1,13 @@ steam.client ============ +.. automodule:: steam.client + :members: SteamClient + :undoc-members: + :show-inheritance: + .. toctree:: steam.client.builtins steam.client.mixins steam.client.gc -.. automodule:: steam.client - :members: - :show-inheritance: diff --git a/docs/index.rst b/docs/index.rst index 8d3e2ce..8deda42 100644 --- a/docs/index.rst +++ b/docs/index.rst @@ -18,10 +18,10 @@ Supports Python ``2.7+`` and ``3.4+``. Main features: -* :class:`SteamID ` - convert between the various ID representations with ease -* :class:`WebAPI ` - simple API for Steam's Web API with automatic population of interfaces -* :class:`WebAuth ` - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` -* :class:`SteamClient ` - communication with the steam network based on ``gevent``. +* :doc:`SteamID ` - convert between the various ID representations with ease +* :doc:`WebAPI ` - simple API for Steam's Web API with automatic population of interfaces +* :doc:`WebAuth ` - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` +* :doc:`SteamClient ` - communication with the steam network based on ``gevent``. Checkout the :doc:`user_guide` for examples, or the :doc:`api/index` for details. diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 378de39..9d0d70b 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -1,3 +1,38 @@ +""" +Implementation of Steam client based on ``gevent`` + +Events +^^^^^^ + +See `gevent-eventmitter `_ +for details on how to work with events. + +| ``connected`` - when successful connection with a CM server is established +| ``disconnected`` - when connection is lost +| ``channel_secured`` - after channel encryption is complete, client can attempt to login now +| ``error`` - after login failure +| ``auth_code_required`` - either email code or 2FA code is needed for login +| ``logged_on`` - after successful login, client can send messages +| :class:`EMsg ` - all messages are emitted with their ``EMsg`` + +Mixing can emitter additional events. See their docs pages for details. + + +Builtins +^^^^^^^^ + +Additional features are located in separate submodules. +All functionality from :doc:`bultins ` is inherited by default. + +Mixins +^^^^^^ + +Optional features are available as :doc:`mixins `. +This allows the client to remain light yet flexible. + +API +^^^ +""" import os import logging import gevent @@ -16,12 +51,6 @@ from steam.client.builtins import BuiltinBase class SteamClient(CMClient, BuiltinBase): - """ - Implementation of Steam client based on ``gevent`` - - See `gevent-eventmitter `_ - for details on how to work with events. - """ _reconnect_backoff_c = 0 current_jobid = 0 credential_location = None #: location for sentry diff --git a/steam/client/builtins/__init__.py b/steam/client/builtins/__init__.py index dac72cb..cec8662 100644 --- a/steam/client/builtins/__init__.py +++ b/steam/client/builtins/__init__.py @@ -1,5 +1,5 @@ """ -All high level features of :class:`steam.client.SteamClient` are implemented here in seperate submodules. +All high level features of :class:`steam.client.SteamClient` are implemented here in separate submodules. """ from steam.client.builtins.misc import Misc from steam.client.builtins.user import User @@ -8,6 +8,6 @@ from steam.client.builtins.web import Web class BuiltinBase(Misc, User, Web): """ This object is used as base to implement all high level functionality. - The features are seperated into submodules. + The features are separated into submodules. """ pass diff --git a/steam/client/gc.py b/steam/client/gc.py index f2ca3d8..b956e25 100644 --- a/steam/client/gc.py +++ b/steam/client/gc.py @@ -36,7 +36,7 @@ Example usage for sending client hello to Dota 2's GC. gc.send(header, body.SerializeToString()) The above code assumes that we have a ``myDotaModule`` that contains the appropriate -data structures, which can be used to (de)serialize messages. For example, protobufs. +data structures, which can be used to (de)serialize messages such as protobufs. """ import logging import gevent diff --git a/steam/client/mixins/__init__.py b/steam/client/mixins/__init__.py index 4820bc9..eaf7ead 100644 --- a/steam/client/mixins/__init__.py +++ b/steam/client/mixins/__init__.py @@ -1,7 +1,7 @@ """ All optional features are available as mixins for :class:`steam.client.SteamClient`. Using this approach the client can remain light yet flexible. -Functionallity can be added though inheritance depending on the use case. +Functionality can be added though inheritance depending on the use case. Here is quick example of how to use one of the available mixins. @@ -25,7 +25,7 @@ Making custom mixing is just as simple. Take care not to override existing methods or properties, otherwise bad things will happen .. note:: - To avoid name collisions of non-public variables and methods, see `Private Variables `_ + To avoid name collisions of non-public variables and methods, use `Private Variables `_ .. code:: python diff --git a/steam/webapi.py b/steam/webapi.py index b2e4052..fa51719 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -1,5 +1,5 @@ """ -WebAPI provides a thin gevent cooperative wrapper over Steam's WebAPI +WebAPI provides a thin wrapper over `Steam's Web API `_ Calling an endpoint