File tree Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Expand file tree Collapse file tree 1 file changed +11
-0
lines changed Original file line number Diff line number Diff line change 15
15
from django .utils import timezone
16
16
17
17
logger = logging .getLogger (__name__ )
18
+
18
19
# with reference to
19
20
# - https://developer.valvesoftware.com/wiki/Steam_Web_API
20
21
# - https://steamapi.xpaw.me/
21
22
#
22
23
# Get played (owned) games from IPlayerService.GetOwnedGames
23
24
# Get wishlist games from IWishlistService/GetWishlist
25
+ # TODO: asynchronous item loading
26
+ # TODO: remove dep on steam pkg, replace steam api with simple request
27
+ # TODO: implement get_time_to_beat with igdb
28
+ # TODO: log: use logging, loguru, or auditlog?
29
+ # TODO: add option:
30
+ # - shelf filter: subset of ShelfType
31
+ # - owned games filter:
32
+ # - all free games / played free games / no free games
33
+ # - list of app_id to ignore
34
+ # - Most played TZ
24
35
25
36
class RawGameMark (TypedDict ):
26
37
app_id : str
You can’t perform that action at this time.
0 commit comments