pythonhacktoberfeststeamauthenticationauthenticatorsteam-authenticatorsteam-clientsteam-guard-codessteam-websteamworksvalvewebapi
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
429 B
13 lines
429 B
"""
|
|
All high level features of :class:`steam.client.SteamClient` are implemented here in seperate submodules.
|
|
"""
|
|
from steam.client.builtins.misc import Misc
|
|
from steam.client.builtins.user import User
|
|
from steam.client.builtins.web import Web
|
|
|
|
class BuiltinBase(Misc, User, Web):
|
|
"""
|
|
This object is used as base to implement all high level functionality.
|
|
The features are seperated into submodules.
|
|
"""
|
|
pass
|
|
|