Browse Source
Closes #231 These methods no longer work, and have been replaced by https://help.steampowered.com/en/wizard/HelpWithLoginInfopull/254/head
3 changed files with 1 additions and 80 deletions
@ -1,70 +0,0 @@ |
|||||
from steam.steamid import SteamID |
|
||||
from steam.enums import EResult |
|
||||
from steam.enums.emsg import EMsg |
|
||||
from steam.core.msg import Msg, MsgProto |
|
||||
|
|
||||
|
|
||||
class Account(object): |
|
||||
def __init__(self, *args, **kwargs): |
|
||||
super(Account, self).__init__(*args, **kwargs) |
|
||||
|
|
||||
def request_validation_mail(self): |
|
||||
"""Request validation email |
|
||||
|
|
||||
:return: result |
|
||||
:rtype: :class:`.EResult` |
|
||||
""" |
|
||||
message = Msg(EMsg.ClientRequestValidationMail, extended=True) |
|
||||
|
|
||||
resp = self.send_job_and_wait(message, timeout=10) |
|
||||
|
|
||||
if resp is None: |
|
||||
return EResult.Timeout |
|
||||
else: |
|
||||
return EResult(resp.eresult) |
|
||||
|
|
||||
def request_password_change_mail(self, password): |
|
||||
"""Request password change mail |
|
||||
|
|
||||
:param password: current account password |
|
||||
:type password: :class:`str` |
|
||||
:return: result |
|
||||
:rtype: :class:`.EResult` |
|
||||
""" |
|
||||
message = Msg(EMsg.ClientRequestChangeMail, extended=True) |
|
||||
message.body.password = password |
|
||||
|
|
||||
resp = self.send_job_and_wait(message, timeout=10) |
|
||||
|
|
||||
if resp is None: |
|
||||
return EResult.Timeout |
|
||||
else: |
|
||||
return EResult(resp.eresult) |
|
||||
|
|
||||
def change_password(self, password, new_password, email_code): |
|
||||
"""Change account's password |
|
||||
|
|
||||
:param password: current account password |
|
||||
:type password: :class:`str` |
|
||||
:param new_password: new account password |
|
||||
:type new_password: :class:`str` |
|
||||
:param email_code: confirmation code from email |
|
||||
:type email_code: :class:`str` |
|
||||
:return: result |
|
||||
:rtype: :class:`.EResult` |
|
||||
|
|
||||
.. note:: |
|
||||
First request change mail via :meth:`request_password_change_mail()` |
|
||||
to get the email code |
|
||||
""" |
|
||||
message = Msg(EMsg.ClientPasswordChange3, extended=True) |
|
||||
message.body.password = password |
|
||||
message.body.new_password = new_password |
|
||||
message.body.code = email_code |
|
||||
|
|
||||
resp = self.send_job_and_wait(message, timeout=10) |
|
||||
|
|
||||
if resp is None: |
|
||||
return EResult.Timeout |
|
||||
else: |
|
||||
return EResult(resp.eresult) |
|
Loading…
Reference in new issue