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.
41 lines
944 B
41 lines
944 B
from __future__ import print_function
|
|
from getpass import getpass
|
|
from steam.client import SteamClient
|
|
|
|
|
|
print("One-off login recipe")
|
|
print("-"*20)
|
|
|
|
LOGON_DETAILS = {
|
|
'username': input("Steam user: "),
|
|
'password': getpass("Password: "),
|
|
}
|
|
|
|
client = SteamClient()
|
|
|
|
@client.on('error')
|
|
def error(result):
|
|
print("Logon result:", repr(result))
|
|
|
|
@client.on('auth_code_required')
|
|
def auth_code_prompt(is_2fa, mismatch):
|
|
if is_2fa:
|
|
code = input("Enter 2FA Code: ")
|
|
client.login(two_factor_code=code, **LOGON_DETAILS)
|
|
else:
|
|
code = input("Enter Email Code: ")
|
|
client.login(auth_code=code, **LOGON_DETAILS)
|
|
|
|
|
|
try:
|
|
client.login(**LOGON_DETAILS)
|
|
except:
|
|
raise SystemExit
|
|
|
|
print("-"*20)
|
|
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()
|
|
|