File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change 1
1
"""
2
+ The :class:`.CDNClient` class provides a simple API for downloading Steam content from SteamPipe
3
+
2
4
Initializing :class:`.CDNClient` requires a logged in :class:`.SteamClient` instance
3
5
4
6
.. code:: python
5
7
6
8
mysteam = SteamClient()
7
9
...
8
-
9
10
mycdn = CDNClient(mysteam)
10
11
11
12
@@ -261,7 +262,6 @@ def load_licenses(self):
261
262
262
263
packages = list (self .steam .licenses .keys ())
263
264
264
- # TODO: don't fetch all packages info at the same time (for accounts with many licences)
265
265
for package_id , info in iteritems (self .steam .get_product_info (packages = packages )['packages' ]):
266
266
self .licensed_app_ids .update (info ['appids' ].values ())
267
267
self .licensed_depot_ids .update (info ['depotids' ].values ())
You can’t perform that action at this time.
0 commit comments