From d8e86736bab9fb178fdff2501ab7bab5af1d0a7f Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe Date: Thu, 3 Nov 2022 23:42:57 +0000 Subject: [PATCH 1/2] Add example for /user for steam64_from_url --- steam/steamid.py | 1 + 1 file changed, 1 insertion(+) diff --git a/steam/steamid.py b/steam/steamid.py index 3d93ab6..d41e772 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -551,6 +551,7 @@ def steam64_from_url(url, http_timeout=30): https://steamcommunity.com/profiles/[U:1:12] https://steamcommunity.com/profiles/76561197960265740 https://steamcommunity.com/id/johnc + https://steamcommunity.com/user/r https://steamcommunity.com/user/cv-dgb/ """ From de9cf6931c875c39aae84df06baf1638c2a92dfb Mon Sep 17 00:00:00 2001 From: James Hilton-Balfe Date: Sat, 10 Dec 2022 11:35:10 +0000 Subject: [PATCH 2/2] Update steamid.py --- steam/steamid.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steam/steamid.py b/steam/steamid.py index d41e772..34cb144 100644 --- a/steam/steamid.py +++ b/steam/steamid.py @@ -551,12 +551,12 @@ def steam64_from_url(url, http_timeout=30): https://steamcommunity.com/profiles/[U:1:12] https://steamcommunity.com/profiles/76561197960265740 https://steamcommunity.com/id/johnc - https://steamcommunity.com/user/r https://steamcommunity.com/user/cv-dgb/ + https://steamcommunity.com/app/570 """ match = re.match(r'^(?Phttps?://steamcommunity.com/' - r'(?Pprofiles|id|gid|groups|user)/(?P.*?))(?:/(?:.*)?)?$', url) + r'(?Pprofiles|id|gid|groups|user|app)/(?P.*?))(?:/(?:.*)?)?$', url) if not match: return None