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.
26 lines
700 B
26 lines
700 B
__version__ = "0.8.0"
|
|
__author__ = "Rossen Georgiev"
|
|
|
|
version_info = (0, 8, 0)
|
|
|
|
from steam.steamid import SteamID
|
|
from steam.globalid import GlobalID
|
|
from steam.webapi import WebAPI
|
|
from steam.webauth import WebAuth
|
|
|
|
|
|
# proxy object
|
|
# avoids importing steam.enums.emsg unless it's needed
|
|
class SteamClient(object):
|
|
def __new__(cls, *args, **kwargs):
|
|
from steam.client import SteamClient as SC
|
|
|
|
bases = cls.__bases__
|
|
|
|
if bases != (object, ):
|
|
if bases[0] != SteamClient:
|
|
raise ValueError("SteamClient needs to be the first base for custom classes")
|
|
|
|
SC = type("SteamClient", (SC,) + bases[1:], {})
|
|
|
|
return SC(*args, **kwargs)
|
|
|