11steamfiles
22==========
33
4- | |Build Status|
4+ .. image :: https://badge.fury.io/py/steamfiles.svg
5+ :target: http://badge.fury.io/py/steamfiles
6+ :alt: Latest version
7+
8+ .. image :: https://travis-ci.org/leovp/steamfiles.svg?branch=master
9+ :target: https://travis-ci.org/leovp/steamfiles
10+ :alt: Travis-CI
11+
512| Python library for parsing the most common Steam file formats.
613| The library has a familiar JSON-like interface: ``load()`` / ``loads()`` for loading the data,
714| and ``dump()`` / ``dumps()`` for saving the data back to the file.
@@ -22,7 +29,7 @@ Format support
2229Quickstart
2330----------
2431
25- `` steamfiles ` ` requires Python 3.3+
32+ `steamfiles ` requires Python 3.3+
2633
2734Install the latest stable version:
2835
@@ -32,13 +39,15 @@ Install the latest stable version:
3239
3340Import a module for your desired format:
3441::
42+
3543 # Use one of these, or all at once!
3644 from steamfiles import acf
3745 from steamfiles import appinfo
3846 from steamfiles import manifest
3947
4048Easily load data, modify it and dump back:
4149::
50+
4251 with open('appinfo.vdf', 'rb') as f:
4352 data = appinfo.load(f)
4453
@@ -56,9 +65,7 @@ Easily load data, modify it and dump back:
5665License
5766-------
5867
59- `` steamfiles ` ` is distributed under the terms of the MIT license.
68+ `steamfiles ` is distributed under the terms of the MIT license.
6069
61- See `LICENSE <LICENSE >`__ file for all the details.
70+ See the bundled `LICENSE <https://github.com/leovp/steamfiles/blob/master/ LICENSE >`_ file for more details.
6271
63- .. |Build Status | image :: https://travis-ci.org/leovp/steamfiles.svg?branch=master
64- :target: https://travis-ci.org/leovp/steamfiles
0 commit comments