diff --git a/.scrutinizer.yml b/.scrutinizer.yml new file mode 100644 index 0000000..37eb797 --- /dev/null +++ b/.scrutinizer.yml @@ -0,0 +1,8 @@ +filter: + excluded_paths: + - 'tests/*' + - 'vcr/*' +tools: + external_code_coverage: + timeout: 300 + runs: 3 diff --git a/.travis.yml b/.travis.yml index 67f8f11..f7ce8b5 100644 --- a/.travis.yml +++ b/.travis.yml @@ -6,7 +6,9 @@ python: install: - make init - pip install coveralls + - pip install scrutinizer-ocular script: - make test after_success: - coveralls + - ocular diff --git a/README.rst b/README.rst index aa8f112..1b7cce1 100644 --- a/README.rst +++ b/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="") + # instance.. >>> 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``. diff --git a/setup.py b/setup.py index bfc93b1..8db0600 100644 --- a/setup.py +++ b/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, ) diff --git a/steam/__init__.py b/steam/__init__.py index 864d4a7..989eb63 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.5.2" +__version__ = "0.5.3" __author__ = "Rossen Georgiev" from steam.steamid import SteamID diff --git a/steam/webapi.py b/steam/webapi.py index 0668310..07ad88e 100644 --- a/steam/webapi.py +++ b/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