Browse Source

update README and docs

pull/202/head
Rossen Georgiev 6 years ago
parent
commit
dfcc0a748c
  1. 13
      README.rst
  2. 9
      docs/intro.rst
  3. 2
      steam/client/cdn.py

13
README.rst

@ -6,13 +6,14 @@ Supports Python ``2.7+`` and ``3.4+``.
Documentation: http://steam.readthedocs.io/en/latest/ Documentation: http://steam.readthedocs.io/en/latest/
Key features Features
------------ --------
* `SteamClient <http://steam.readthedocs.io/en/latest/api/steam.client.html>`_ - communication with the steam network based on ``gevent``. * `SteamClient <http://steam.readthedocs.io/en/latest/api/steam.client.html>`_ - communication with the steam network based on ``gevent``.
* `CDNClient <http://steam.readthedocs.io/en/latest/api/steam.client.cdn.html>`_ - access to Steam content depots
* `WebAuth <http://steam.readthedocs.io/en/latest/api/steam.webauth.html>`_ - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` * `WebAuth <http://steam.readthedocs.io/en/latest/api/steam.webauth.html>`_ - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com``
* `WebAPI <http://steam.readthedocs.io/en/latest/api/steam.webapi.html>`_ - simple API for Steam's Web API with automatic population of interfaces * `WebAPI <http://steam.readthedocs.io/en/latest/api/steam.webapi.html>`_ - simple API for Steam's Web API with automatic population of interfaces
* `SteamAuthenticator <http://steam.readthedocs.io/en/latest/api/steam.guard.html>`_ - enable/disable/manage 2FA on account and generate codes * `SteamAuthenticator <http://steam.readthedocs.io/en/latest/api/steam.guard.html>`_ - enable/disable/manage two factor authentication for Steam accounts
* `SteamID <http://steam.readthedocs.io/en/latest/api/steam.steamid.html>`_ - convert between the various ID representations with ease * `SteamID <http://steam.readthedocs.io/en/latest/api/steam.steamid.html>`_ - convert between the various ID representations with ease
* `Master Server Query Protocol <https://steam.readthedocs.io/en/latest/api/steam.game_servers.html>`_ - query masters servers directly or via ``SteamClient`` * `Master Server Query Protocol <https://steam.readthedocs.io/en/latest/api/steam.game_servers.html>`_ - 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 <https://github.com/ValvePython/steamctl>`_ tool Like using the command line? Try `steamctl <https://github.com/ValvePython/steamctl>`_ tool
Quick install Install
------------- -------
For system specific details, see `Installation Details <http://steam.readthedocs.io/en/latest/install.html>`_. For system specific details, see `Installation Details <http://steam.readthedocs.io/en/latest/install.html>`_.
@ -38,7 +39,7 @@ Install the current dev version from ``github``
.. code:: bash .. code:: bash
pip install git+https://github.com/ValvePython/steam pip install git+https://github.com/ValvePython/steam#egg=steam
Vagrant Vagrant
------- -------

9
docs/intro.rst

@ -11,13 +11,14 @@ A python module for interacting with various parts of Steam_.
Supports Python ``2.7+`` and ``3.4+``. Supports Python ``2.7+`` and ``3.4+``.
Key features Features
============ ========
* :doc:`SteamClient <api/steam.client>` - communication with the steam network based on ``gevent`` * :doc:`SteamClient <api/steam.client>` - communication with the steam network based on ``gevent``
* :doc:`CDNClient <api/steam.client.cdn>` - access to Steam content depots
* :doc:`WebAuth <api/steam.webauth>` - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com`` * :doc:`WebAuth <api/steam.webauth>` - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com``
* :doc:`WebAPI <api/steam.webapi>` - simple API for Steam's Web API with automatic population of interfaces * :doc:`WebAPI <api/steam.webapi>` - simple API for Steam's Web API with automatic population of interfaces
* :doc:`SteamAuthenticator <api/steam.guard>` - enable/disable/manage 2FA on account and generate codes * :doc:`SteamAuthenticator <api/steam.guard>` - enable/disable/manage two factor authentication for Steam accounts
* :doc:`SteamID <api/steam.steamid>` - convert between the various ID representations with ease * :doc:`SteamID <api/steam.steamid>` - convert between the various ID representations with ease
* :doc:`Master Server Query Protocol <api/steam.game_servers>` - query masters servers directly or via ``SteamClient`` * :doc:`Master Server Query Protocol <api/steam.game_servers>` - query masters servers directly or via ``SteamClient``
@ -38,4 +39,4 @@ Install latest version from PYPI::
Install the current dev version from ``github``:: 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

2
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 :param num_servers: number of servers to return
:type num_servers: int :type num_servers: int
:return: list of CS servers :return: list of CS servers
:rtype: class:`list` [:class:`.ContentServer`] :rtype: :class:`list` [:class:`.ContentServer`]
""" """
params = {'cellid': cell_id, 'max_servers': num_servers} params = {'cellid': cell_id, 'max_servers': num_servers}
resp = webapi.get('IContentServerDirectoryService', 'GetServersForSteamPipe', params=params) resp = webapi.get('IContentServerDirectoryService', 'GetServersForSteamPipe', params=params)

Loading…
Cancel
Save