Browse Source

renamed can_relogin prop to relogin_available

pull/41/head v0.8.4
Rossen Georgiev 9 years ago
parent
commit
28a1d4ef8e
  1. 15
      steam/client/__init__.py

15
steam/client/__init__.py

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

Loading…
Cancel
Save