Easily pack and unpack metadata in a filename.
Project description
keyname
Easily pack and unpack metadata in a filename.
Free software: MIT license
Documentation: https://keyname.readthedocs.io.
Usage
Keyname is built around the following file name convention:
key/value pairs are constructed with
=
between the key and valuekey/value pairs are joined by
+
key/value pairs are ordered alphanumerically by key
keys beginning with
_
are ordered after keys not beginning with_
the
ext
(extension) key is always placed lastthe key
_
is reserved for the original filename
For example, key1=val1+key2=val2+_key3=val3+ext=.txt
.
from keyname import keyname as kn
# returns 'key1=val1+key2=val2+_key3=val3+ext=.txt'
kn.pack({
'key2' : 'val2',
'ext' : '.txt',
'key1' : 'val1',
'_key3' : 'val3',
})
# returns {'key' : 'val', 'ext' : '.txt', '_' : 'path/to/key=val+ext=.txt'}
kf.unpack('path/to/key=val+ext=.txt')
Credits
This package was created with Cookiecutter and the audreyr/cookiecutter-pypackage project template.
History
0.0.0 (2019-03-16)
First release on PyPI.
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
Hashes for keyname-0.2.1-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 4b6070c76863cbdc739698c3f7049cd981531cec1efbca55fb027ae8eea05bc1 |
|
MD5 | b9cefe43f6ef872918e9e07ad57f53ad |
|
BLAKE2b-256 | b2568deeb206bb4011387af0a2ae9a95a7a338334d1d34aa9cf1dfd55105e6b3 |