You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
Rossen Georgiev 154be14dd8 fix #119 regex failing when ; in summary 9 years ago
docs fix broken login examples after recent changes 10 years ago
protobufs update protobufs 9 years ago
recipes fix broken login examples after recent changes 10 years ago
steam fix #119 regex failing when ; in summary 9 years ago
tests fix #101; refactor steamid.steam64_from_url 9 years ago
vcr fix #101; refactor steamid.steam64_from_url 9 years ago
.coveragerc added .coveragerc 11 years ago
.gitignore updated git ignore 10 years ago
.scrutinizer.yml update num of runs for scrutinizer 10 years ago
.travis.yml run tests suit against nightly as well 10 years ago
LICENSE textwrap LICENSE; tweaks to README 11 years ago
Makefile help nosetest find the test files 9 years ago
README.rst removed 'client' extra 10 years ago
Vagrantfile added Vagrantfile for testing 9 years ago
protobuf_list.txt update protobufs 9 years ago
requirements.txt bump gevent ver; steam to 0.8.16 9 years ago
setup.py update dev status to stable 9 years ago
tox.ini fix tox deps; correct test instructin in README 10 years ago

README.rst

|pypi| |license| |coverage| |scru| |master_build| |docs|

A python module for interacting with various parts of Steam_.

Supports Python ``2.7+`` and ``3.3+``.

Documentation: http://steam.readthedocs.io/en/latest/

Key features
------------

* `SteamAuthenticator <http://steam.readthedocs.io/en/latest/api/steam.guard.html>`_ - enable/disable/manage 2FA on account and generate codes
* `SteamClient <http://steam.readthedocs.io/en/latest/api/steam.client.html>`_ - communication with the steam network based on ``gevent``.
* `SteamID <http://steam.readthedocs.io/en/latest/api/steam.client.html>`_ - convert between the various ID representations with ease
* `WebAPI <http://steam.readthedocs.io/en/latest/api/steam.webapi.html>`_ - simple API for Steam's Web API with automatic population of interfaces
* `WebAuth <http://steam.readthedocs.io/en/latest/api/steam.webauth.html>`_ - authentication for access to ``store.steampowered.com`` and ``steamcommunity.com``

Checkout the `User guide <http://steam.readthedocs.io/en/latest/user_guide.html>`_ for examples,
or the `API Reference <http://steam.readthedocs.io/en/latest/api/index.html>`_ for details.

For questions, issues or general curiosity visit the repo at `https://github.com/ValvePython/steam <https://github.com/ValvePython/steam>`_.

Quick install
-------------

For details on require system packages, see `Full Installation <http://steam.readthedocs.io/en/latest/install.html>`_.

Install latest version from PYPI::

pip install -U steam

Install the current dev version from ``github``::

pip install git+https://github.com/ValvePython/steam


Testing
-------

To run the test suite with the current ``python``, use::

make test

To run for specific version, setup a ``virtual environment``::

virtualenv -p python3 py3
source py3/bin/active
pip install -r requirements.txt
make test

To run for ``python 2.7`` and ``3.4`` assuming you have them installed::

tox


.. _Steam: https://store.steampowered.com/

.. |pypi| image:: https://img.shields.io/pypi/v/steam.svg?style=flat&label=stable
:target: https://pypi.python.org/pypi/steam
:alt: Latest version released on PyPi

.. |license| image:: https://img.shields.io/pypi/l/steam.svg?style=flat&label=license
:target: https://pypi.python.org/pypi/steam
:alt: MIT License

.. |coverage| image:: https://img.shields.io/coveralls/ValvePython/steam/master.svg?style=flat
:target: https://coveralls.io/r/ValvePython/steam?branch=master
:alt: Test coverage

.. |scru| image:: https://scrutinizer-ci.com/g/ValvePython/steam/badges/quality-score.png?b=master
:target: https://scrutinizer-ci.com/g/ValvePython/steam/?branch=master
:alt: Scrutinizer score

.. |master_build| image:: https://img.shields.io/travis/ValvePython/steam/master.svg?style=flat&label=master
:target: http://travis-ci.org/ValvePython/steam/branches
:alt: Build status of master branch

.. |docs| image:: https://readthedocs.org/projects/steam/badge/?version=latest
:target: http://steam.readthedocs.io/en/latest/?badge=latest
:alt: Documentation status