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.
18 lines
776 B
18 lines
776 B
"""
|
|
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.web import Web
|
|
from steam.client.builtins.unified_messages import UnifiedMessages
|
|
from steam.client.builtins.leaderboards import Leaderboards
|
|
from steam.client.builtins.gameservers import GameServers
|
|
from steam.client.builtins.friends import Friends
|
|
from steam.client.builtins.apps import Apps
|
|
|
|
class BuiltinBase(Account, User, Web, UnifiedMessages, Leaderboards, GameServers, Friends, Apps):
|
|
"""
|
|
This object is used as base to implement all high level functionality.
|
|
The features are separated into submodules.
|
|
"""
|
|
pass
|
|
|