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.
15 lines
370 B
15 lines
370 B
__version__ = "0.6.4"
|
|
__author__ = "Rossen Georgiev"
|
|
|
|
version_info = (0, 6, 4)
|
|
|
|
from steam.steamid import SteamID
|
|
from steam.webapi import WebAPI
|
|
|
|
|
|
# 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
|
|
return SC(*args, **kwargs)
|
|
|