The shitty ".qs" file (de-)serializer
Project description
qsck
Python library for serializing and deserializing a wonky format referred to as ".qs" files. For full format specification, please read through tests.test_serialize and tests.test_deserialize test suites and extrapolate.
Quick Start
Use Python ≥ 3.6 only. To install it, simply:
pip3 install qsck
Serializing Data
Via Python:
python3 -c "import qsck; print(qsck.serialize('LOG', '1553302923', [
('first_key', 'some value'),
('2nd_key', [('attr1', 'foo'), ('attr2', 'bar')]),
('3rd_key', {'subKey1': '-3', 'subKey2': None}),
('4th_key', None)
]))"
Out comes a ".qs" record, like so:
LOG,1553302923,first_key=some value,2nd_key={attr1=foo, attr2=bar},3rd_key={"subKey1":"-3","subKey2":null},4th_key=(null)
The library also supports serializing data by passing in a JSON file via
the command-line tool qs-format
, one record per line:
qs-format my-records.json > my-records.qs
Deserializing Data
Via Python:
python3 -c "import pprint, qsck; pprint.pprint(qsck.deserialize(
'LOG,1553302923,first_key=some value,2nd_key={attr1=foo, \
attr2=bar},3rd_key={\"subKey1\":\"-3\",\"subKey2\":null},4th_key=(null)'))"
Out comes a friendly Python collection:
('LOG',
'1553302923',
[('first_key', 'some value'),
('2nd_key', [('attr1', 'foo'), ('attr2', 'bar')]),
('3rd_key', {'subKey1': '-3', 'subKey2': None}),
('4th_key', None)])
The library-provided qs-parse
command-line tool supports deserializing a whole
".qs" log file, emitting one JSON record per input line to stdout:
qs-parse my-records.qs > my-records.json
Contributing
Really? Very welcome. Do the usual fork-and-submit-PR thingy.
Running the tests:
python setup.py test
Distributing:
pip3 install --upgrade twine wheel setuptools
python setup.py sdist bdist_wheel
twine upload dist/*
Changelog
0.3
- Better Deserialization
- Adds support for funky "nested-nested lists" in .qs records
- Squashing complex comma (
,
) values
0.2
– Deserialize Added
Adds support for de-serializing ".qs" records.
0.1
– Initial Release
Supports serializing ".qs" records.
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
Built Distribution
File details
Details for the file qsck-0.3.tar.gz
.
File metadata
- Download URL: qsck-0.3.tar.gz
- Upload date:
- Size: 6.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 79c37a151155833a4a59687758bd005cb667fb3ef084e2cd1eab4f10b0fe8df2 |
|
MD5 | 0667a90a856db21061c0442fc125ac55 |
|
BLAKE2b-256 | b56e59dd93d9f7deb8ed93927d0fcf7e0c83f60dafd6998fed0da3f3566b48b3 |
File details
Details for the file qsck-0.3-py3-none-any.whl
.
File metadata
- Download URL: qsck-0.3-py3-none-any.whl
- Upload date:
- Size: 8.2 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.13.0 pkginfo/1.5.0.1 requests/2.21.0 setuptools/40.8.0 requests-toolbelt/0.9.1 tqdm/4.31.1 CPython/3.7.2
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5af31d9cee01e0090eb140b9fc893588e53f8a777f7069cd25e10595b7b04532 |
|
MD5 | 996015d1195efd15da313f998f219f2d |
|
BLAKE2b-256 | 5205b143f38b5bdcee8cc5b40971a44ef99b905865ca43f2892a8086f3f32097 |