Browse Source

Merge branch 'dev', v0.5

e686fb4 - version bump to v0.5
121605f - SteamID can now init with steam2 id
73fbf29 - added 'last_response'  attribute to WebAPIMethod
5f6b65a - fixed SteamID.__str__() not returning a str
5380594 - added HTTP method to method .doc()
b43b2cd - steamid.community_url is now https
6284106 - added shields to README
pull/1/merge
Rossen Georgiev 10 years ago
parent
commit
0daf05c0be
  1. 20
      README.rst
  2. 2
      steam/__init__.py
  3. 62
      steam/steamid.py
  4. 10
      steam/webapi.py

20
README.rst

@ -1,3 +1,5 @@
|pypi| |license|
Module for interacting with various Steam_ features Module for interacting with various Steam_ features
WebAPI WebAPI
@ -68,6 +70,7 @@ SteamID
>>> SteamID(12345) # accountid >>> SteamID(12345) # accountid
>>> SteamID('12345') >>> SteamID('12345')
>>> SteamID('STEAM_1:1:6172') # steam2
SteamID(id=12345, type='Individual', universe='Public', instance=1) SteamID(id=12345, type='Individual', universe='Public', instance=1)
>>> SteamID(103582791429521412) # steam64 >>> SteamID(103582791429521412) # steam64
@ -75,7 +78,8 @@ SteamID
>>> SteamID('[g:1:4]') # steam3 >>> SteamID('[g:1:4]') # steam3
SteamID(id=4, type='Clan', universe='Public', instance=0) 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('https://steamcommunity.com/id/drunkenf00l')
>>> SteamID('http://steamcommunity.com/profiles/76561197968459473') # no request is made >>> SteamID('http://steamcommunity.com/profiles/76561197968459473') # no request is made
SteamID(id=8193745, type='Individual', universe='Public', instance=1) SteamID(id=8193745, type='Individual', universe='Public', instance=1)
@ -89,12 +93,12 @@ SteamID
103582791429521412 103582791429521412
>>> str(group) >>> str(group)
'103582791429521412' '103582791429521412'
>>> group.as_steam2 >>> group.as_steam2 # only works for 'Individual' accounts
'STEAM_0:0:2' 'STEAM_1:0:2'
>>> group.as_steam3 >>> group.as_steam3
'[g:1:4]' '[g:1:4]'
>>> group.community_url >>> group.community_url
'http://steamcommunity.com/gid/103582791429521412' 'https://steamcommunity.com/gid/103582791429521412'
@ -102,3 +106,11 @@ SteamID
.. _Steam Web API: https://developer.valvesoftware.com/wiki/Steam_Web_API .. _Steam Web API: https://developer.valvesoftware.com/wiki/Steam_Web_API
.. _API Key: http://steamcommunity.com/dev/apikey .. _API Key: http://steamcommunity.com/dev/apikey
.. _list of the currently available API interfaces: https://github.com/ValvePython/steam/wiki/web-api .. _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

2
steam/__init__.py

@ -1,4 +1,4 @@
__version__ = "0.4" __version__ = "0.5"
__author__ = "Rossen Georgiev" __author__ = "Rossen Georgiev"
from .steamid import SteamID from .steamid import SteamID

62
steam/steamid.py

@ -33,10 +33,14 @@ class SteamID(object):
SteamID(id=12345, type='Invalid', universe='Invalid', instance=0) SteamID(id=12345, type='Invalid', universe='Invalid', instance=0)
SteamID(103582791429521412) # steam64 SteamID(103582791429521412) # steam64
SteamID('103582791429521412') SteamID('103582791429521412')
SteamID('STEAM_1:0:2') # steam2
SteamID('[g:1:4]') # steam3 SteamID('[g:1:4]') # steam3
SteamID('https://steamcommunity.com/id/drunkenf00l') # vanity url
SteamID('http://steamcommunity.com/profiles/76561197968459473') 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) largs = len(args)
@ -89,6 +93,20 @@ class SteamID(object):
# textual input e.g. [g:1:4] # textual input e.g. [g:1:4]
else: else:
# try steam2
match = re.match(r"^STEAM_(?P<universe>\d+)"
r":(?P<reminder>[0-1])"
r":(?P<id>\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()) typeChars = ''.join(self.ETypeChar.values())
match = re.match(r"^\[" match = re.match(r"^\["
r"(?P<type>[%s]):" # type char r"(?P<type>[%s]):" # type char
@ -97,23 +115,24 @@ class SteamID(object):
r"(:(?P<instance>\d+))?" # instance r"(:(?P<instance>\d+))?" # instance
r"\]$" % typeChars, value r"\]$" % typeChars, value
) )
if not match: if match:
raise ValueError("Expected a number or textual SteamID" self.id = int(match.group('id'))
" (e.g. [g:1:4]), got %s" % repr(value) 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.id = int(match.group('id')) self.instance = match.group('instance')
self.universe = EUniverse(int(match.group('universe'))) if self.instance is None:
inverseETypeChar = dict((b, a) for (a, b) in self.ETypeChar.items()) if self.type in (EType.Individual, EType.GameServer):
self.type = EType(inverseETypeChar[match.group('type')]) self.instance = 1
self.instance = match.group('instance') else:
if self.instance is None: self.instance = 0
if self.type in (EType.Individual, EType.GameServer):
self.instance = 1
else: else:
self.instance = 0 self.instance = int(self.instance)
else: return
self.instance = int(self.instance)
raise ValueError("Expected a number or textual SteamID"
" (e.g. [g:1:4], STEAM_0:1:1234), got %s" % repr(value)
)
elif lkwargs > 0: elif lkwargs > 0:
if 'id' not in kwargs: if 'id' not in kwargs:
@ -152,11 +171,12 @@ class SteamID(object):
) )
def __str__(self): def __str__(self):
return self.as_64 return str(self.as_64)
@property @property
def as_steam2(self): def as_steam2(self):
return "STEAM_0:%s:%s" % ( return "STEAM_%s:%s:%s" % (
self.universe.value,
self.id % 2, self.id % 2,
self.id >> 1, self.id >> 1,
) )
@ -188,6 +208,6 @@ class SteamID(object):
EType.Clan: "gid/%s", EType.Clan: "gid/%s",
} }
if self.type in suffix: 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 url % self.as_64
return '' return None

10
steam/webapi.py

@ -42,6 +42,7 @@ class WebAPI(object):
populates the name space under the instance populates the name space under the instance
""" """
result = self._api_request( result = self._api_request(
None,
"GET", "GET",
"ISteamWebAPIUtil/GetSupportedAPIList/v1/", "ISteamWebAPIUtil/GetSupportedAPIList/v1/",
params={'format': 'json'}, params={'format': 'json'},
@ -79,7 +80,7 @@ class WebAPI(object):
def _url_base(self): def _url_base(self):
return "%s://api.steampowered.com/" % ('https' if self.https else 'http') 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'): if method not in ('GET', 'POST'):
raise NotImplemented("HTTP method: %s" % repr(self.method)) raise NotImplemented("HTTP method: %s" % repr(self.method))
if 'params' not in kwargs: if 'params' not in kwargs:
@ -104,6 +105,9 @@ class WebAPI(object):
f = getattr(requests, method.lower()) f = getattr(requests, method.lower())
resp = f(self._url_base + path, stream=True, **kwargs) resp = f(self._url_base + path, stream=True, **kwargs)
if caller is not None:
caller.last_response = resp
if not resp.ok: if not resp.ok:
raise requests.exceptions.HTTPError("%s %s" % (resp.status_code, resp.reason)) 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): def __init__(self, method_dict, parent=None):
self.last_response = None
self._parent = parent self._parent = parent
self._dict = method_dict self._dict = method_dict
@ -240,6 +245,7 @@ class WebAPIMethod(object):
# make the request # make the request
return self._api_request( return self._api_request(
self,
self.method, self.method,
"%s/%s/v%s/" % (self._parent.name, self.name, self.version), "%s/%s/v%s/" % (self._parent.name, self.name, self.version),
params=params, params=params,
@ -270,7 +276,7 @@ class WebAPIMethod(object):
return self._parent.https return self._parent.https
def doc(self): 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: if 'description' in self._dict:
doc += "\n %(description)s\n" % self._dict doc += "\n %(description)s\n" % self._dict

Loading…
Cancel
Save