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 0533c9328e webauth: limit the domains where cookies are used 9 years ago
docs reworked SteamClient example in user_guide 9 years ago
protobufs added unified messaging support #26 9 years ago
steam webauth: limit the domains where cookies are used 9 years ago
tests steamid: fix exception handling and http_timeout 9 years ago
vcr SteamID: added from_url to class + cleanup 9 years ago
.coveragerc added .coveragerc 9 years ago
.gitignore added steam client protobufs 9 years ago
.scrutinizer.yml set scrutinizer to expect 1 run 9 years ago
.travis.yml enable cache for Travis CI 9 years ago
LICENSE textwrap LICENSE; tweaks to README 10 years ago
Makefile rework pb recipes 9 years ago
README.rst seperate steam client dependencies as an extra 9 years ago
protobuf_list.txt added unified messaging support #26 9 years ago
requirements.txt migrate from PyCrypto to cryptograhy #17 9 years ago
setup.py migrate from PyCrypto to cryptograhy #17 9 years ago
tox.ini remove pypy test; reconf build env 9 years ago

README.rst

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

Module for interacting with various Steam_ features.

**Documentation**: http://valvepython.github.io/steam/

Installation
------------

By default the ``steam`` package doesn't install all dependecies.
Add ``[client]`` extra if you are going to use ``SteamClient``.

Install latest version from PYPI::

pip install -U steam
pip install -U steam[client]

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[client]

For extras syntax in ``requirements.txt`` see `pip docs <https://pip.pypa.io/en/stable/reference/pip_install/#requirement-specifiers>`_::

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
make test

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

tox


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

.. |pypi| image:: https://img.shields.io/pypi/v/steam.svg?style=flat&label=latest%20version
: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
:alt: Build status of master branch