diff --git a/README.rst b/README.rst index 0fd20ba..3b7bee6 100644 --- a/README.rst +++ b/README.rst @@ -72,12 +72,16 @@ SteamID >>> group = SteamID('[g:1:4]') >>> group.id # accountid 4 - >>> group.as_steam3 - '[g:1:4]' - >>> group.as_32 - 'STEAM_0:0:2' + >>> group.as_32 # accountid + 4 >>> group.as_64 103582791429521412 + >>> str(group) + '103582791429521412' + >>> group.as_steam2 + 'STEAM_0:0:2' + >>> group.as_steam3 + '[g:1:4]' >>> group.community_url 'http://steamcommunity.com/gid/103582791429521412' diff --git a/steam/steamid.py b/steam/steamid.py index 11ed8c4..9887b70 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -154,6 +154,13 @@ class SteamID(object): def __str__(self): return self.as_64 + @property + def as_steam2(self): + return "STEAM_0:%s:%s" % ( + self.id % 2, + self.id >> 1, + ) + @property def as_steam3(self): return "[%s:%s:%s]" % ( @@ -172,10 +179,7 @@ class SteamID(object): @property def as_32(self): - return "STEAM_0:%s:%s" % ( - self.id % 2, - self.id >> 1, - ) + return self.id @property def community_url(self):