Library for working with Valve's VDF text format
Project description
VDF is Valve’s KeyValue text file format
https://developer.valvesoftware.com/wiki/KeyValues
The module works just like json to convert VDF to a dict, and vise-versa.
Poblems & solutions
There are known files that contain duplicate keys. This can be solved by creating a class inherating from dict and implementing a way to handle duplicate keys.
By default the module uses dict, so key order is preserved. If key order is important then I suggest using collections.OrderedDict. See example.
Install
You can grab the latest release from https://pypi.python.org/pypi/vdf or via pip
pip install vdf
Example usage
import vdf
# parsing vdf from file or string
d = vdf.load(open('file.txt'))
d = vdf.loads(vdf_text)
d = vdf.parse(open('file.txt'))
d = vdf.parse(vdf_text)
# dumping dict as vdf to string
vdf_text = vdf.dumps(d)
indented_vdf = vdf.dumps(d, pretty=True)
# dumping dict as vdf to file
vdf.dump(d, open('file2.txt','w'), pretty=True)
Using OrderedDict to preserve key order.
import vdf
from collections import OrderedDict
# parsing vdf from file or string
d = vdf.load(open('file.txt'), mapper=OrderedDict)
d = vdf.loads(vdf_text, mapper=OrderedDict)
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
File details
Details for the file vdf-1.5.tar.gz.
File metadata
- Download URL: vdf-1.5.tar.gz
- Upload date:
- Size: 3.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
3d5da3e16bbfa674af6eff00843eb6270e2c34f478ce3a1a3c73dd5282ea8187
|
|
| MD5 |
c3cf43ad752c73cff3ae11c07850fb37
|
|
| BLAKE2b-256 |
74b83ba90f4af8286a88058b222058c80809db841bbf96358de5fbf97d37a76e
|