pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
25 lines
550 B
25 lines
550 B
from __future__ import print_function
|
|
from steam import SteamClient
|
|
from steam.enums import EResult
|
|
|
|
client = SteamClient()
|
|
|
|
print("One-off login recipe")
|
|
print("-"*20)
|
|
|
|
result = client.cli_login()
|
|
|
|
if result != EResult.OK:
|
|
print("Failed to login: %s" % repr(result))
|
|
raise SystemExit
|
|
|
|
print("-"*20)
|
|
|
|
client.wait_event('logged_on')
|
|
|
|
print("Logged on as:", client.user.name)
|
|
print("Community profile:", client.steam_id.community_url)
|
|
print("Last logon:", client.user.last_logon)
|
|
print("Last logoff:", client.user.last_logoff)
|
|
|
|
client.logout()
|
|
|