solsticegamestudios / steam

☁️ Python package for interacting with Steam
http://steam.readthedocs.io
MIT License
8 stars 3 forks source link

[BUG?] Cannot login #4

Open Yarosvet opened 2 weeks ago

Yarosvet commented 2 weeks ago
from steam.client import SteamClient

s = SteamClient()
s.verbose_debug = True
s.login("my_user", "my_password")

print("Logged on as: %s" % s.user.name)
print("Community profile: %s" % s.steam_id.community_url)
print("Last logon: %s" % s.user.last_logon)
print("Last logoff: %s" % s.user.last_logoff)
print("Number of friends: %d" % len(s.friends))

s.logout()

But s.logged_on is False and no info from account loaded in SteamClient. What am I doing wrong? Or it's a bug

WinterPhoenix commented 3 days ago

Will review once we've finished migrating to only supporting Python 3.7+, and have tests working properly again