diff --git a/recipes/3.WalletBalance/README.rst b/recipes/3.WalletBalance/README.rst new file mode 100644 index 0000000..505fa02 --- /dev/null +++ b/recipes/3.WalletBalance/README.rst @@ -0,0 +1,17 @@ +This are basic examples how to get the wallet balance + +wallet_steamclient.py +--------------------- + +This first script is very basic. +Prompts for loging, handles code prompts and prints wallet balalnce. +Since there is no handling for the result of ``cli_login`` during +this might break in certain situations like when Steam is down. + +wallet_webauth.py +----------------- + +This script is a little bit more complicated and instead logs in to the steam website. +Once logged in to the website, it requests a single page and finds the balance in the source code. +There is basic structure to handle code prompts. +Entering username, password or codes wrong will result in an error as there is na ologic to handle that. diff --git a/recipes/3.WalletBalance/wallet_steamclient.py b/recipes/3.WalletBalance/wallet_steamclient.py new file mode 100755 index 0000000..8d10ee3 --- /dev/null +++ b/recipes/3.WalletBalance/wallet_steamclient.py @@ -0,0 +1,15 @@ +from steam.client import SteamClient, EMsg +from steam.enums import EResult, ECurrencyCode + +client = SteamClient() + +@client.on(EMsg.ClientWalletInfoUpdate) +def print_balance(msg): + bucks, cents = divmod(msg.body.balance64, 100) + print("Current balance is {:d}.{:02d} {:s}".format(bucks, + cents, + ECurrencyCode(msg.body.currency).name + )) + +client.cli_login() +client.disconnect() diff --git a/recipes/3.WalletBalance/wallet_webauth.py b/recipes/3.WalletBalance/wallet_webauth.py new file mode 100755 index 0000000..b1a2f89 --- /dev/null +++ b/recipes/3.WalletBalance/wallet_webauth.py @@ -0,0 +1,29 @@ +import re +from getpass import getpass +import steam.webauth as wa + +try: + user_input = raw_input +except NameError: + user_input = input + +username = user_input("Username: ") +password = getpass("Password: ") + +webclient = wa.WebAuth(username, password) + +try: + webclient.login() +except wa.CaptchaRequired: + print("Captcha:" + webclient.captcha_url) + webclient.login(captcha=user_input("Captcha code: ")) +except wa.EmailCodeRequired: + webclient.login(email_code=user_input("Email code: ")) +except wa.TwoFactorCodeRequired: + webclient.login(twofactor_code=user_input("2FA code: ")) + +if webclient.complete: + resp = webclient.session.get('https://store.steampowered.com/account/store_transactions/') + resp.raise_for_status() + balance = re.search(r'store_transactions/">(?P.*?)', resp.text).group('balance') + print("Current balance: %s" % balance)