From fd8c21985c0f044101c11c4295931edbeca3acc0 Mon Sep 17 00:00:00 2001 From: Rossen Georgiev Date: Mon, 17 Apr 2017 16:29:12 +0300 Subject: [PATCH] SteamClient: added sleep & idle methods --- steam/client/__init__.py | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/steam/client/__init__.py b/steam/client/__init__.py index 5aa139d..2f85124 100644 --- a/steam/client/__init__.py +++ b/steam/client/__init__.py @@ -565,6 +565,14 @@ class SteamClient(CMClient, BuiltinBase): while True: gevent.sleep(300) + def sleep(self, seconds): + """Yeild and sleep N seconds. Allows other greenlets to run""" + gevent.sleep(seconds) + + def idle(self): + """Yeild in the current greenlet and let other greenlets run""" + gevent.idle() + def cli_login(self, username='', password=''): """Generates CLI prompts to complete the login process