diff --git a/README.rst b/README.rst index bb44ece..b8cdc73 100644 --- a/README.rst +++ b/README.rst @@ -6,13 +6,14 @@ Supports Python ``2.7+`` and ``3.4+``. Documentation: http://steam.readthedocs.io/en/latest/ -Key features ------------- +Features +-------- * `SteamClient `_ - communication with the steam network based on ``gevent``. +* `CDNClient `_ - access to Steam content depots * `WebAuth `_ - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` * `WebAPI `_ - simple API for Steam's Web API with automatic population of interfaces -* `SteamAuthenticator `_ - enable/disable/manage 2FA on account and generate codes +* `SteamAuthenticator `_ - enable/disable/manage two factor authentication for Steam accounts * `SteamID `_ - convert between the various ID representations with ease * `Master Server Query Protocol `_ - query masters servers directly or via ``SteamClient`` @@ -23,8 +24,8 @@ For questions, issues or general curiosity visit the repo at `https://github.com Like using the command line? Try `steamctl `_ tool -Quick install -------------- +Install +------- For system specific details, see `Installation Details `_. @@ -38,7 +39,7 @@ Install the current dev version from ``github`` .. code:: bash - pip install git+https://github.com/ValvePython/steam + pip install git+https://github.com/ValvePython/steam#egg=steam Vagrant ------- diff --git a/docs/intro.rst b/docs/intro.rst index dfb9106..781bd3e 100644 --- a/docs/intro.rst +++ b/docs/intro.rst @@ -11,13 +11,14 @@ A python module for interacting with various parts of Steam_. Supports Python ``2.7+`` and ``3.4+``. -Key features -============ +Features +======== * :doc:`SteamClient ` - communication with the steam network based on ``gevent`` +* :doc:`CDNClient ` - access to Steam content depots * :doc:`WebAuth ` - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` * :doc:`WebAPI ` - simple API for Steam's Web API with automatic population of interfaces -* :doc:`SteamAuthenticator ` - enable/disable/manage 2FA on account and generate codes +* :doc:`SteamAuthenticator ` - enable/disable/manage two factor authentication for Steam accounts * :doc:`SteamID ` - convert between the various ID representations with ease * :doc:`Master Server Query Protocol ` - query masters servers directly or via ``SteamClient`` @@ -38,4 +39,4 @@ Install latest version from PYPI:: Install the current dev version from ``github``:: - pip install git+https://github.com/ValvePython/steam + pip install git+https://github.com/ValvePython/steam#egg=steam diff --git a/steam/client/cdn.py b/steam/client/cdn.py index 420e304..31020ef 100644 --- a/steam/client/cdn.py +++ b/steam/client/cdn.py @@ -175,7 +175,7 @@ def get_content_servers_from_webapi(cell_id, num_servers=20): :param num_servers: number of servers to return :type num_servers: int :return: list of CS servers - :rtype: class:`list` [:class:`.ContentServer`] + :rtype: :class:`list` [:class:`.ContentServer`] """ params = {'cellid': cell_id, 'max_servers': num_servers} resp = webapi.get('IContentServerDirectoryService', 'GetServersForSteamPipe', params=params)