Browse Source

Merge branch 'dev', v0.5.3

b9d30a3 - bump to v0.5.3
fcf34b1 - Conditionally installs enum34 only if < Python 3.4
3247b6d - add scrutinizer config for coverage
676d79a - set stream arg to false for all requests
f79d35b - updated README
pull/6/merge
Rossen Georgiev 10 years ago
parent
commit
6e9a8da0fd
  1. 8
      .scrutinizer.yml
  2. 2
      .travis.yml
  3. 5
      README.rst
  4. 16
      setup.py
  5. 2
      steam/__init__.py
  6. 2
      steam/webapi.py

8
.scrutinizer.yml

@ -0,0 +1,8 @@
filter:
excluded_paths:
- 'tests/*'
- 'vcr/*'
tools:
external_code_coverage:
timeout: 300
runs: 3

2
.travis.yml

@ -6,7 +6,9 @@ python:
install:
- make init
- pip install coveralls
- pip install scrutinizer-ocular
script:
- make test
after_success:
- coveralls
- ocular

5
README.rst

@ -1,6 +1,6 @@
|pypi| |license| |coverage| |master_build|
Module for interacting with various Steam_ features
Module for interacting with various Steam_ features. Install with `pip install steam`.
WebAPI
------
@ -14,6 +14,7 @@ What interfaces are availability depends on the ``key``.
>>> from steam import WebAPI
>>> api = WebAPI(key="<your api key>")
# instance.<interface>.<method>
>>> api.ISteamWebAPIUtil.GetServerInfo()
>>> api.call('ISteamWebAPIUtil.GetServerInfo')
{u'servertimestring': u'Sun Jul 05 22:37:25 2015', u'servertime': 1436161045}
@ -27,7 +28,7 @@ What interfaces are availability depends on the ``key``.
>>> api.call('ISteamUser.ResolveVanityURL_v1', vanityurl="valve", url_type=2)
It's not necessary to provide the key when calling any interface method.
``key``, ``format``, ``raw`` parameters can be specified on ``WebAPI`` to affect
``key``, ``format``, ``raw``, ``http_timeout`` parameters can be specified on ``WebAPI`` to affect
all method calls, or when calling a specific method.
Some methods have parameters which need to be a ``list``.
Trying to call nonexistent method will raise an ``AttributeError``.

16
setup.py

@ -3,7 +3,7 @@
from setuptools import setup
from codecs import open
from os import path
import sys
here = path.abspath(path.dirname(__file__))
with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
@ -11,6 +11,14 @@ with open(path.join(here, 'README.rst'), encoding='utf-8') as f:
with open(path.join(here, 'steam/__init__.py'), encoding='utf-8') as f:
__version__ = f.readline().split('"')[1]
install_requires = [
'requests',
'vdf',
]
if sys.version_info < (3, 4):
install_requires.append('enum34>=1.0.4')
setup(
name='steam',
version=__version__,
@ -30,10 +38,6 @@ setup(
],
keywords='valve steam steamid api webapi',
packages=['steam'],
install_requires=[
'enum34',
'requests',
'vdf',
],
install_requires=install_requires,
zip_safe=True,
)

2
steam/__init__.py

@ -1,4 +1,4 @@
__version__ = "0.5.2"
__version__ = "0.5.3"
__author__ = "Rossen Georgiev"
from steam.steamid import SteamID

2
steam/webapi.py

@ -38,7 +38,7 @@ def webapi_request(path, method='GET', caller=None, params={}):
kwargs = {'params': params} if method == "GET" else {'data': params}
f = getattr(requests, method.lower())
resp = f(path, stream=True, timeout=onetime['http_timeout'], **kwargs)
resp = f(path, stream=False, timeout=onetime['http_timeout'], **kwargs)
if caller is not None:
caller.last_response = resp

Loading…
Cancel
Save