From 628410667bc964af66e44fcef4474162352e9589 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sun, 12 Jul 2015 20:13:29 +0100 Subject: [PATCH 1/7] added shields to README --- README.rst | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.rst b/README.rst index a189a38..f3777f2 100644 --- a/README.rst +++ b/README.rst @@ -1,3 +1,5 @@ +|pypi| |license| + Module for interacting with various Steam_ features WebAPI @@ -102,3 +104,11 @@ SteamID .. _Steam Web API: https://developer.valvesoftware.com/wiki/Steam_Web_API .. _API Key: http://steamcommunity.com/dev/apikey .. _list of the currently available API interfaces: https://github.com/ValvePython/steam/wiki/web-api + +.. |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 From b43b2cd6fc2fee4d1e51ad9a58c4fbd837c9c1ba Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 16 Jul 2015 09:03:58 +0100 Subject: [PATCH 2/7] steamid.community_url is now https --- README.rst | 2 +- steam/steamid.py | 4 ++-- 2 files changed, 3 insertions(+), 3 deletions(-) diff --git a/README.rst b/README.rst index f3777f2..49b8fdc 100644 --- a/README.rst +++ b/README.rst @@ -96,7 +96,7 @@ SteamID >>> group.as_steam3 '[g:1:4]' >>> group.community_url - 'http://steamcommunity.com/gid/103582791429521412' + 'https://steamcommunity.com/gid/103582791429521412' diff --git a/steam/steamid.py b/steam/steamid.py index 9887b70..60e9f0d 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -188,6 +188,6 @@ class SteamID(object): EType.Clan: "gid/%s", } if self.type in suffix: - url = "http://steamcommunity.com/%s" % suffix[self.type] + url = "https://steamcommunity.com/%s" % suffix[self.type] return url % self.as_64 - return '' + return None From 538059412280bc536817674bfe1196c0b16f0032 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 16 Jul 2015 09:45:08 +0100 Subject: [PATCH 3/7] added HTTP method to method .doc() --- steam/webapi.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/webapi.py b/steam/webapi.py index 3a95db2..25106f3 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -270,7 +270,7 @@ class WebAPIMethod(object): return self._parent.https def doc(self): - doc = "%(name)s (v%(version)04d)\n" % self._dict + doc = "%(httpmethod)s %(name)s (v%(version)04d)\n" % self._dict if 'description' in self._dict: doc += "\n %(description)s\n" % self._dict From 5f6b65a5e2c3100e9bd407623efbb5085c9291cd Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 16 Jul 2015 09:46:00 +0100 Subject: [PATCH 4/7] fixed SteamID.__str__() not returning a str --- steam/steamid.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/steamid.py b/steam/steamid.py index 60e9f0d..12b885e 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -152,7 +152,7 @@ class SteamID(object): ) def __str__(self): - return self.as_64 + return str(self.as_64) @property def as_steam2(self): From 73fbf290b3b10b933e578ada1e70404ac0667083 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Thu, 16 Jul 2015 10:38:13 +0100 Subject: [PATCH 5/7] added 'last_response' attribute to WebAPIMethod the attribute is a instance of `requests.Response` and it will hold a reference to the last response for the particular method. This could be useful for debuging, or reading the body, which may hold reason information, when http status code is not 200. --- steam/webapi.py | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/steam/webapi.py b/steam/webapi.py index 25106f3..ef29d01 100644 --- a/steam/webapi.py +++ b/steam/webapi.py @@ -42,6 +42,7 @@ class WebAPI(object): populates the name space under the instance """ result = self._api_request( + None, "GET", "ISteamWebAPIUtil/GetSupportedAPIList/v1/", params={'format': 'json'}, @@ -79,7 +80,7 @@ class WebAPI(object): def _url_base(self): return "%s://api.steampowered.com/" % ('https' if self.https else 'http') - def _api_request(self, method, path, **kwargs): + def _api_request(self, caller, method, path, **kwargs): if method not in ('GET', 'POST'): raise NotImplemented("HTTP method: %s" % repr(self.method)) if 'params' not in kwargs: @@ -104,6 +105,9 @@ class WebAPI(object): f = getattr(requests, method.lower()) resp = f(self._url_base + path, stream=True, **kwargs) + if caller is not None: + caller.last_response = resp + if not resp.ok: raise requests.exceptions.HTTPError("%s %s" % (resp.status_code, resp.reason)) @@ -175,6 +179,7 @@ class WebAPIMethod(object): """ def __init__(self, method_dict, parent=None): + self.last_response = None self._parent = parent self._dict = method_dict @@ -240,6 +245,7 @@ class WebAPIMethod(object): # make the request return self._api_request( + self, self.method, "%s/%s/v%s/" % (self._parent.name, self.name, self.version), params=params, From 121605fb88151cb45acd0a52298040decac84bfb Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 22 Jul 2015 10:04:03 +0100 Subject: [PATCH 6/7] SteamID can now init with steam2 id --- README.rst | 8 ++++--- steam/steamid.py | 56 ++++++++++++++++++++++++++++++++---------------- 2 files changed, 43 insertions(+), 21 deletions(-) diff --git a/README.rst b/README.rst index 49b8fdc..4afad08 100644 --- a/README.rst +++ b/README.rst @@ -70,6 +70,7 @@ SteamID >>> SteamID(12345) # accountid >>> SteamID('12345') + >>> SteamID('STEAM_1:1:6172') # steam2 SteamID(id=12345, type='Individual', universe='Public', instance=1) >>> SteamID(103582791429521412) # steam64 @@ -77,7 +78,8 @@ SteamID >>> SteamID('[g:1:4]') # steam3 SteamID(id=4, type='Clan', universe='Public', instance=0) - # vanity urls are resolved by making an HTTP request + # vanity urls are resolved by fetching the community profile page (this is unstable) + # use the WebAPI to reliably resolve vanity urls >>> SteamID('https://steamcommunity.com/id/drunkenf00l') >>> SteamID('http://steamcommunity.com/profiles/76561197968459473') # no request is made SteamID(id=8193745, type='Individual', universe='Public', instance=1) @@ -91,8 +93,8 @@ SteamID 103582791429521412 >>> str(group) '103582791429521412' - >>> group.as_steam2 - 'STEAM_0:0:2' + >>> group.as_steam2 # only works for 'Individual' accounts + 'STEAM_1:0:2' >>> group.as_steam3 '[g:1:4]' >>> group.community_url diff --git a/steam/steamid.py b/steam/steamid.py index 12b885e..3e139d0 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -33,10 +33,14 @@ class SteamID(object): SteamID(id=12345, type='Invalid', universe='Invalid', instance=0) SteamID(103582791429521412) # steam64 SteamID('103582791429521412') + SteamID('STEAM_1:0:2') # steam2 SteamID('[g:1:4]') # steam3 - SteamID('https://steamcommunity.com/id/drunkenf00l') # vanity url SteamID('http://steamcommunity.com/profiles/76561197968459473') + # WARNING: vainty url resolving is fragile + # it might break if community profile page changes + # you should use the WebAPI to resolve them reliably + SteamID('https://steamcommunity.com/id/drunkenf00l') """ largs = len(args) @@ -89,6 +93,20 @@ class SteamID(object): # textual input e.g. [g:1:4] else: + # try steam2 + match = re.match(r"^STEAM_(?P\d+)" + r":(?P[0-1])" + r":(?P\d+)$", value + ) + + if match: + self.id = (int(match.group('id')) << 1) | int(match.group('reminder')) + self.universe = EUniverse(int(match.group('universe'))) + self.type = EType(1) + self.instance = 1 + return + + # try steam3 typeChars = ''.join(self.ETypeChar.values()) match = re.match(r"^\[" r"(?P[%s]):" # type char @@ -97,23 +115,24 @@ class SteamID(object): r"(:(?P\d+))?" # instance r"\]$" % typeChars, value ) - if not match: - raise ValueError("Expected a number or textual SteamID" - " (e.g. [g:1:4]), got %s" % repr(value) - ) - - self.id = int(match.group('id')) - self.universe = EUniverse(int(match.group('universe'))) - inverseETypeChar = dict((b, a) for (a, b) in self.ETypeChar.items()) - self.type = EType(inverseETypeChar[match.group('type')]) - self.instance = match.group('instance') - if self.instance is None: - if self.type in (EType.Individual, EType.GameServer): - self.instance = 1 + if match: + self.id = int(match.group('id')) + self.universe = EUniverse(int(match.group('universe'))) + inverseETypeChar = dict((b, a) for (a, b) in self.ETypeChar.items()) + self.type = EType(inverseETypeChar[match.group('type')]) + self.instance = match.group('instance') + if self.instance is None: + if self.type in (EType.Individual, EType.GameServer): + self.instance = 1 + else: + self.instance = 0 else: - self.instance = 0 - else: - self.instance = int(self.instance) + self.instance = int(self.instance) + return + + raise ValueError("Expected a number or textual SteamID" + " (e.g. [g:1:4], STEAM_0:1:1234), got %s" % repr(value) + ) elif lkwargs > 0: if 'id' not in kwargs: @@ -156,7 +175,8 @@ class SteamID(object): @property def as_steam2(self): - return "STEAM_0:%s:%s" % ( + return "STEAM_%s:%s:%s" % ( + self.universe.value, self.id % 2, self.id >> 1, ) From e686fb40355db353bab6ce5b7ea3d7e0a769cad0 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Wed, 22 Jul 2015 10:07:22 +0100 Subject: [PATCH 7/7] version bump to v0.5 --- steam/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/__init__.py b/steam/__init__.py index cbe80b7..f1621d1 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "0.4" +__version__ = "0.5" __author__ = "Rossen Georgiev" from .steamid import SteamID