Browse Source

appcache: update comment examples

pull/463/head
Eamonn Rea 9 months ago
parent
commit
4863486da7
  1. 4
      steam/utils/appcache.py

4
steam/utils/appcache.py

@ -7,7 +7,7 @@ Appache file parsing examples:
>>> header, apps = parse_appinfo(open('/d/Steam/appcache/appinfo.vdf', 'rb')) >>> header, apps = parse_appinfo(open('/d/Steam/appcache/appinfo.vdf', 'rb'))
>>> header >>> header
{'magic': b"(DV\\x07", 'universe': 1} {'magic': b")DV\\x07", 'universe': 1}
>>> next(apps) >>> next(apps)
{'appid': 5, {'appid': 5,
'size': 79, 'size': 79,
@ -53,7 +53,7 @@ def parse_appinfo(fp):
:return: (header, apps iterator) :return: (header, apps iterator)
""" """
# format: # format:
# uint32 - MAGIC: "'DV\x07" or "(DV\x07" # uint32 - MAGIC: "'DV\x07" or "(DV\x07" or b")DV\x07"
# uint32 - UNIVERSE: 1 # uint32 - UNIVERSE: 1
# ---- repeated app sections ---- # ---- repeated app sections ----
# uint32 - AppID # uint32 - AppID

Loading…
Cancel
Save