Browse Source
Remove gevent monkey patch by default in steam.client (#364)
* remove gevent monkey patch by default in steam.client
* add entry to changelog
pull/365/head
Rossen
4 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
6 changed files with
61 additions and
5 deletions
-
CHANGES.md
-
docs/api/steam.client.monkey.rst
-
docs/user_guide.rst
-
steam/client/__init__.py
-
steam/client/cdn.py
-
steam/client/monkey.py
|
@ -1,5 +1,13 @@ |
|
|
# Change notes |
|
|
# Change notes |
|
|
|
|
|
|
|
|
|
|
|
## 2.0.0 |
|
|
|
|
|
|
|
|
|
|
|
This release brings breaking changes |
|
|
|
|
|
|
|
|
|
|
|
### steam.cleint |
|
|
|
|
|
|
|
|
|
|
|
- Removed monkey patching by default. See `steam.client.monkey` for details |
|
|
|
|
|
|
|
|
## 1.0.0 |
|
|
## 1.0.0 |
|
|
|
|
|
|
|
|
This release brings breaking changes |
|
|
This release brings breaking changes |
|
|
|
@ -0,0 +1,7 @@ |
|
|
|
|
|
monkey |
|
|
|
|
|
====== |
|
|
|
|
|
|
|
|
|
|
|
.. automodule:: steam.client.monkey |
|
|
|
|
|
:members: |
|
|
|
|
|
:show-inheritance: |
|
|
|
|
|
|
|
@ -153,6 +153,10 @@ SteamClient |
|
|
``gevent`` based implementation for interacting with the Steam network. |
|
|
``gevent`` based implementation for interacting with the Steam network. |
|
|
The library comes with some Steam client features implemented, see :doc:`api/steam.client` for more details. |
|
|
The library comes with some Steam client features implemented, see :doc:`api/steam.client` for more details. |
|
|
|
|
|
|
|
|
|
|
|
.. warning:: |
|
|
|
|
|
:class:`.SteamClient` no longer applies gevent monkey patches by default. |
|
|
|
|
|
See :mod:`steam.client.monkey` for details how make stdlib gevent cooperative. |
|
|
|
|
|
|
|
|
CLI example |
|
|
CLI example |
|
|
----------- |
|
|
----------- |
|
|
|
|
|
|
|
|
|
@ -1,6 +1,11 @@ |
|
|
""" |
|
|
""" |
|
|
Implementation of Steam client based on ``gevent`` |
|
|
Implementation of Steam client based on ``gevent`` |
|
|
|
|
|
|
|
|
|
|
|
.. warning:: |
|
|
|
|
|
``steam.client`` no longer patches stdlib to make it gevent cooperative. |
|
|
|
|
|
This provides flexibility if you want to use :class:`.SteamClient` with async or other modules. |
|
|
|
|
|
If you want to monkey patch anyway use :meth:`steam.client.monkey.patch_minimal()` |
|
|
|
|
|
|
|
|
.. note:: |
|
|
.. note:: |
|
|
Additional features are located in separate submodules. All functionality from :mod:`.builtins` is inherited by default. |
|
|
Additional features are located in separate submodules. All functionality from :mod:`.builtins` is inherited by default. |
|
|
|
|
|
|
|
@ -8,11 +13,6 @@ Implementation of Steam client based on ``gevent`` |
|
|
Optional features are available as :mod:`.mixins`. This allows the client to remain light yet flexible. |
|
|
Optional features are available as :mod:`.mixins`. This allows the client to remain light yet flexible. |
|
|
|
|
|
|
|
|
""" |
|
|
""" |
|
|
import gevent |
|
|
|
|
|
import gevent.monkey |
|
|
|
|
|
gevent.monkey.patch_socket() |
|
|
|
|
|
gevent.monkey.patch_ssl() |
|
|
|
|
|
|
|
|
|
|
|
import os |
|
|
import os |
|
|
import json |
|
|
import json |
|
|
from random import random |
|
|
from random import random |
|
|
|
@ -3,9 +3,20 @@ The :class:`.CDNClient` class provides a simple API for downloading Steam conten |
|
|
|
|
|
|
|
|
Initializing :class:`.CDNClient` requires a logged in :class:`.SteamClient` instance |
|
|
Initializing :class:`.CDNClient` requires a logged in :class:`.SteamClient` instance |
|
|
|
|
|
|
|
|
|
|
|
.. warning:: |
|
|
|
|
|
This module uses :mod:`requests` library, which is not gevent cooperative by default. |
|
|
|
|
|
It is high recommended that you use :meth:`steam.client.monkey.patch_minimal()`. |
|
|
|
|
|
See example below |
|
|
|
|
|
|
|
|
.. code:: python |
|
|
.. code:: python |
|
|
|
|
|
import steam.client.monkey |
|
|
|
|
|
steam.client.monkey.patch_minimal() |
|
|
|
|
|
|
|
|
|
|
|
from steam.client import SteamClient, EMsg |
|
|
|
|
|
from steam.client.cdn import CDNClient |
|
|
|
|
|
|
|
|
mysteam = SteamClient() |
|
|
mysteam = SteamClient() |
|
|
|
|
|
mysteam.cli_login() |
|
|
... |
|
|
... |
|
|
mycdn = CDNClient(mysteam) |
|
|
mycdn = CDNClient(mysteam) |
|
|
|
|
|
|
|
|
|
@ -0,0 +1,26 @@ |
|
|
|
|
|
""" |
|
|
|
|
|
Helper moduel for calling ``gevent`` monkey patch functions. |
|
|
|
|
|
This only need to if want to make stdlib gevent cooperative. |
|
|
|
|
|
The patches need to be applied before any other module imports. |
|
|
|
|
|
|
|
|
|
|
|
See :mod:`gevent.monkey` for details |
|
|
|
|
|
|
|
|
|
|
|
.. code:: python |
|
|
|
|
|
|
|
|
|
|
|
import steam.client.monkey |
|
|
|
|
|
steam.client.monkey.patch_minimal() |
|
|
|
|
|
|
|
|
|
|
|
import requests |
|
|
|
|
|
from steam.client import SteamClient, EMsg |
|
|
|
|
|
""" |
|
|
|
|
|
|
|
|
|
|
|
def patch_minimal(): |
|
|
|
|
|
""" |
|
|
|
|
|
This method needs to be called before any other imports |
|
|
|
|
|
|
|
|
|
|
|
It calls :meth:`gevent.monkey.patch_socket()` and :meth:`gevent.monkey.patch_ssl()` |
|
|
|
|
|
""" |
|
|
|
|
|
import gevent.monkey |
|
|
|
|
|
gevent.monkey.patch_socket() |
|
|
|
|
|
gevent.monkey.patch_ssl() |
|
|
|
|
|
gevent.monkey.patch_dns() |