From a2d79a085b846553cf09fe19ad382b576de8f720 Mon Sep 17 00:00:00 2001 From: Pavel Djundik Date: Mon, 26 Aug 2019 17:27:32 +0300 Subject: [PATCH 1/5] docs: update url to xPaw api page (#214) --- docs/user_guide.rst | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/user_guide.rst b/docs/user_guide.rst index 3fdfe56..ebc4308 100644 --- a/docs/user_guide.rst +++ b/docs/user_guide.rst @@ -144,7 +144,7 @@ WebAPI documentation For a more complete list of all available interfaces and methods visit: -https://lab.xpaw.me/steam_api_documentation.html +https://steamapi.xpaw.me/ SteamClient From b47f267aa11533b451bb251bef4e6d1d7079d44b Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Sat, 20 Jul 2019 14:41:07 +0100 Subject: [PATCH 2/5] CMClient: move _LOG attr to class level --- steam/core/cm.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/steam/core/cm.py b/steam/core/cm.py index 57d0ff2..81d5ffb 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -55,6 +55,7 @@ class CMClient(EventEmitter): EVENT_EMSG = 0 """All incoming messages are emitted with their :class:`.EMsg` number. """ + _LOG = logging.getLogger("CMClient") PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum @@ -80,7 +81,6 @@ class CMClient(EventEmitter): _LOG = None def __init__(self, protocol=PROTOCOL_TCP): - self._LOG = logging.getLogger("CMClient") self.cm_servers = CMServerList() if protocol == CMClient.PROTOCOL_TCP: From c708ed0c75f226c3cdf95178fd7a9011665a6a85 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Tue, 3 Sep 2019 22:39:03 +0100 Subject: [PATCH 3/5] update gevent-eventemitter req to >=2.1 --- requirements.txt | 2 +- setup.py | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/requirements.txt b/requirements.txt index d72929a..f26efda 100644 --- a/requirements.txt +++ b/requirements.txt @@ -4,7 +4,7 @@ requests>=2.9.1,<2.22.0 vdf>=2.0 gevent>=1.2.0 protobuf>=3.0.0 -gevent-eventemitter>=2.0 +gevent-eventemitter>=2.1 enum34==1.1.2; python_version < '3.4' coverage==4.0.3 pytest==3.2.1 diff --git a/setup.py b/setup.py index af0c1a7..f876380 100644 --- a/setup.py +++ b/setup.py @@ -21,7 +21,7 @@ install_requires = [ 'vdf>=2.0', 'gevent>=1.2.0', 'protobuf>=3.0.0', - 'gevent-eventemitter>=2.0', + 'gevent-eventemitter>=2.1', 'cachetools>=3.0.0', ] From e49d0b15cf9133f110aff1c11313fb806cc3c2f5 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Tue, 3 Sep 2019 22:41:47 +0100 Subject: [PATCH 4/5] bump to v1.0.0-alpha5 --- steam/__init__.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/steam/__init__.py b/steam/__init__.py index d390846..ba815a1 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0-alpha4" +__version__ = "1.0.0-alpha5" __author__ = "Rossen Georgiev" -version_info = (1, 0, 0, 'alpha', 4) +version_info = (1, 0, 0, 'alpha', 5) From 09f4f51a287ee7aec1f159c7e8098add5f14bed3 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Tue, 3 Sep 2019 23:02:00 +0100 Subject: [PATCH 5/5] bump to v1.0.0-alpha6 fix bug introduced in b47f267aa11533b451bb251bef4e6d1d7079d44b --- steam/__init__.py | 4 ++-- steam/core/cm.py | 3 +-- 2 files changed, 3 insertions(+), 4 deletions(-) diff --git a/steam/__init__.py b/steam/__init__.py index ba815a1..4075f1b 100644 --- a/steam/__init__.py +++ b/steam/__init__.py @@ -1,4 +1,4 @@ -__version__ = "1.0.0-alpha5" +__version__ = "1.0.0-alpha6" __author__ = "Rossen Georgiev" -version_info = (1, 0, 0, 'alpha', 5) +version_info = (1, 0, 0, 'alpha', 6) diff --git a/steam/core/cm.py b/steam/core/cm.py index 81d5ffb..83cfb22 100644 --- a/steam/core/cm.py +++ b/steam/core/cm.py @@ -55,7 +55,6 @@ class CMClient(EventEmitter): EVENT_EMSG = 0 """All incoming messages are emitted with their :class:`.EMsg` number. """ - _LOG = logging.getLogger("CMClient") PROTOCOL_TCP = 0 #: TCP protocol enum PROTOCOL_UDP = 1 #: UDP protocol enum @@ -78,7 +77,7 @@ class CMClient(EventEmitter): _recv_loop = None _heartbeat_loop = None - _LOG = None + _LOG = logging.getLogger("CMClient") def __init__(self, protocol=PROTOCOL_TCP): self.cm_servers = CMServerList()