|
|
@ -162,15 +162,21 @@ After that we logout. |
|
|
|
.. code:: python |
|
|
|
|
|
|
|
from steam import SteamClient |
|
|
|
from steam.enums import EResult |
|
|
|
from steam.enums.emsg import EMsg |
|
|
|
|
|
|
|
client = SteamClient() |
|
|
|
|
|
|
|
@client.on(EMsg.ClientVACBanStatus) |
|
|
|
def print_vac_status(msg): |
|
|
|
print("Number of VAC Bans: %s" % msg.body.numBans) |
|
|
|
|
|
|
|
client.cli_login() |
|
|
|
|
|
|
|
msg = client.wait_msg(EMsg.ClientAccountInfo) |
|
|
|
print "Logged on as: %s" % msg.body.persona_name |
|
|
|
print "SteamID: %s" % repr(client.steam_id) |
|
|
|
print("Logged on as: %s" % client.user.name) |
|
|
|
print("Community profile: %s" % client.steam_id.community_url) |
|
|
|
print("Last logon: %s" % client.user.last_logon) |
|
|
|
print("Last logoff: %s" % client.user.last_logoff) |
|
|
|
print("Number of friends: %d" % len(client.friends)) |
|
|
|
|
|
|
|
client.logout() |
|
|
|
|
|
|
|