├── .gitignore ├── .travis.yml ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.rst ├── docs └── acf_overview.rst ├── requirements.txt ├── requirements_test.txt ├── setup.py ├── steamfiles ├── __init__.py ├── __main__.py ├── acf.py ├── appinfo.py ├── manifest.proto ├── manifest.py └── manifest_pb2.py ├── tests ├── __init__.py ├── test_acf.py ├── test_appinfo.py ├── test_data │ ├── 731.manifest │ ├── appinfo_4426.vdf │ ├── appinfo_4427.vdf │ └── appmanifest_202970.acf └── test_manifest.py └── tox.ini /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/README.rst -------------------------------------------------------------------------------- /docs/acf_overview.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/docs/acf_overview.rst -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_test.txt: -------------------------------------------------------------------------------- 1 | pytest>=3.0.0 2 | coverage 3 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/setup.py -------------------------------------------------------------------------------- /steamfiles/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /steamfiles/__main__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/__main__.py -------------------------------------------------------------------------------- /steamfiles/acf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/acf.py -------------------------------------------------------------------------------- /steamfiles/appinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/appinfo.py -------------------------------------------------------------------------------- /steamfiles/manifest.proto: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/manifest.proto -------------------------------------------------------------------------------- /steamfiles/manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/manifest.py -------------------------------------------------------------------------------- /steamfiles/manifest_pb2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/steamfiles/manifest_pb2.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/test_acf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_acf.py -------------------------------------------------------------------------------- /tests/test_appinfo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_appinfo.py -------------------------------------------------------------------------------- /tests/test_data/731.manifest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_data/731.manifest -------------------------------------------------------------------------------- /tests/test_data/appinfo_4426.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_data/appinfo_4426.vdf -------------------------------------------------------------------------------- /tests/test_data/appinfo_4427.vdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_data/appinfo_4427.vdf -------------------------------------------------------------------------------- /tests/test_data/appmanifest_202970.acf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_data/appmanifest_202970.acf -------------------------------------------------------------------------------- /tests/test_manifest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tests/test_manifest.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/leovp/steamfiles/HEAD/tox.ini --------------------------------------------------------------------------------