Browse Source
The new method simplfiest the login process from CLI. Examples and recipes are changed to use it.pull/55/head
6 changed files with 147 additions and 94 deletions
@ -0,0 +1,42 @@ |
|||
from __future__ import print_function |
|||
from getpass import getpass |
|||
from steam import SteamClient |
|||
|
|||
|
|||
print("One-off login recipe") |
|||
print("-"*20) |
|||
|
|||
LOGON_DETAILS = { |
|||
'username': raw_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 = raw_input("Enter 2FA Code: ") |
|||
client.login(two_factor_code=code, **LOGON_DETAILS) |
|||
else: |
|||
code = raw_input("Enter Email Code: ") |
|||
client.login(auth_code=code, **LOGON_DETAILS) |
|||
|
|||
|
|||
try: |
|||
client.login(**LOGON_DETAILS) |
|||
client.wait_event('logged_on') |
|||
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() |
@ -1,47 +1,25 @@ |
|||
from __future__ import print_function |
|||
from getpass import getpass |
|||
import gevent |
|||
from steam import SteamClient |
|||
from steam.enums import EResult |
|||
|
|||
client = SteamClient() |
|||
|
|||
print("One-off login recipe") |
|||
print("-"*20) |
|||
|
|||
logon_details = { |
|||
'username': raw_input("Steam user: "), |
|||
'password': getpass("Password: "), |
|||
} |
|||
|
|||
|
|||
client = SteamClient() |
|||
|
|||
@client.on('error') |
|||
def error(result): |
|||
print("Logon result:", repr(result)) |
|||
result = client.cli_login() |
|||
|
|||
@client.on('auth_code_required') |
|||
def auth_code_prompt(is_2fa, mismatch): |
|||
if is_2fa: |
|||
code = raw_input("Enter 2FA Code: ") |
|||
client.login(two_factor_code=code, **logon_details) |
|||
else: |
|||
code = raw_input("Enter Email Code: ") |
|||
client.login(auth_code=code, **logon_details) |
|||
if result != EResult.OK: |
|||
print("Failed to login: %s" % repr(result)) |
|||
raise SystemExit |
|||
|
|||
print("-"*20) |
|||
|
|||
client.login(**logon_details) |
|||
|
|||
try: |
|||
client.wait_event('logged_on') |
|||
except: |
|||
raise SystemExit |
|||
client.wait_event('logged_on') |
|||
|
|||
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) |
|||
|
|||
gevent.idle() |
|||
client.logout() |
|||
|
Loading…
Reference in new issue