Browse Source

client: remove Account methods as they been deprecated

Closes #231

These methods no longer work, and have been replaced by https://help.steampowered.com/en/wizard/HelpWithLoginInfo
pull/254/head
Rossen Georgiev 5 years ago
parent
commit
443c0dac0a
  1. 8
      docs/api/steam.client.builtins.rst
  2. 3
      steam/client/builtins/__init__.py
  3. 70
      steam/client/builtins/account.py

8
docs/api/steam.client.builtins.rst

@ -11,14 +11,6 @@ Apps
:undoc-members: :undoc-members:
:show-inheritance: :show-inheritance:
Account
-------
.. automodule:: steam.client.builtins.account
:members:
:undoc-members:
:show-inheritance:
User User
---- ----

3
steam/client/builtins/__init__.py

@ -1,7 +1,6 @@
""" """
All high level features of :class:`steam.client.SteamClient` are implemented here in separate submodules. All high level features of :class:`steam.client.SteamClient` are implemented here in separate submodules.
""" """
from steam.client.builtins.account import Account
from steam.client.builtins.user import User from steam.client.builtins.user import User
from steam.client.builtins.web import Web from steam.client.builtins.web import Web
from steam.client.builtins.unified_messages import UnifiedMessages from steam.client.builtins.unified_messages import UnifiedMessages
@ -10,7 +9,7 @@ from steam.client.builtins.gameservers import GameServers
from steam.client.builtins.friends import Friends from steam.client.builtins.friends import Friends
from steam.client.builtins.apps import Apps from steam.client.builtins.apps import Apps
class BuiltinBase(GameServers, UnifiedMessages, Account, User, Web, Leaderboards, Friends, Apps): class BuiltinBase(GameServers, UnifiedMessages, User, Web, Leaderboards, Friends, Apps):
""" """
This object is used as base to implement all high level functionality. This object is used as base to implement all high level functionality.
The features are separated into submodules. The features are separated into submodules.

70
steam/client/builtins/account.py

@ -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…
Cancel
Save