From d9d6c768233fc8841e40cc3e8402023898f38be6 Mon Sep 17 00:00:00 2001 From: Philipp Joos Date: Wed, 15 Apr 2020 23:48:25 +0200 Subject: [PATCH] Implemented method to claim free licenses (#213) --- steam/client/builtins/apps.py | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) diff --git a/steam/client/builtins/apps.py b/steam/client/builtins/apps.py index 6efc707..6b5d6f9 100644 --- a/steam/client/builtins/apps.py +++ b/steam/client/builtins/apps.py @@ -260,3 +260,26 @@ class Apps(object): return EResult(resp.eresult), resp.purchase_result_details, details else: return EResult.Timeout, None, None + + def request_free_license(self, app_ids): + """ Request license for free app(s) + + :param app_ids: list of app ids + :type app_ids: :class:`list` + :return: format ``(eresult, result_details, receipt_info)`` + :rtype: :class:`tuple` + + .. code:: python + [730] [] + + """ + resp = self.send_job_and_wait(MsgProto(EMsg.ClientRequestFreeLicense), + {'appids': map(int, app_ids)}, + timeout=10, + ) + + if resp: + return EResult(resp.eresult), resp.granted_appids, resp.granted_packageids + + else: + return EResult.Timeout, None, None