|
@ -387,25 +387,26 @@ class SteamClient(CMClient, BuiltinBase): |
|
|
self.wait_event("channel_secured") |
|
|
self.wait_event("channel_secured") |
|
|
|
|
|
|
|
|
@property |
|
|
@property |
|
|
def can_relogin(self): |
|
|
def relogin_available(self): |
|
|
"""``True`` when the client has the nessesary data for :meth:`relogin`""" |
|
|
"""``True`` when the client has the nessesary data for :meth:`relogin`""" |
|
|
return bool(self.username) and bool(self.login_key) |
|
|
return bool(self.username) and bool(self.login_key) |
|
|
|
|
|
|
|
|
def relogin(self): |
|
|
def relogin(self): |
|
|
"""Login without specifiying credentials. Can be used after the client instance has |
|
|
"""Login without needing credentials, essentially remember password. |
|
|
already been logged on once before and has obtained :attr:`login_key`. |
|
|
The :attr:`login_key` is acquired after successful login and it will be |
|
|
Listen for the ``new_login_key`` event. |
|
|
automatically acknowledged. Listen for the ``new_login_key`` event. |
|
|
|
|
|
After that the client can relogin using this method. |
|
|
|
|
|
|
|
|
.. note:: |
|
|
.. note:: |
|
|
Only works when :attr:`can_relogin` is ``True``. |
|
|
Only works when :attr:`relogin_available` is ``True``. |
|
|
|
|
|
|
|
|
.. code:: python |
|
|
.. code:: python |
|
|
|
|
|
|
|
|
if client.can_relogin: client.relogin() |
|
|
if client.relogin_available: client.relogin() |
|
|
else: |
|
|
else: |
|
|
client.login(user, pass) |
|
|
client.login(user, pass) |
|
|
""" |
|
|
""" |
|
|
if self.can_relogin: |
|
|
if self.relogin_available: |
|
|
self.login(self.username, '', self.login_key) |
|
|
self.login(self.username, '', self.login_key) |
|
|
|
|
|
|
|
|
def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None): |
|
|
def login(self, username, password='', login_key=None, auth_code=None, two_factor_code=None): |
|
|