Tools for working with the SMILE data format
Project description
PySmile
Encode/Decode SMILE format objects
Based on:
http://wiki.fasterxml.com/SmileFormat
and
Install:
python setup.py clean build test && python setup.py install
or from pypi (https://pypi.python.org/pypi/pysmile):
pip install pysmile
Usage:
>>> import pysmile
>>> o = {'a': 1, 'b': [2, 3, 4], 'c': {'d': {'e': 4.20}}}
>>> b = pysmile.encode(o)
>>> print repr(b)
':)\n\x03\xfa\x80a\xc2\x80c\xfa\x80d\xfa\x80e(fL\x19\x04\x04\xfb\xfb\x80b\xf8\xc4\xc6\xc8\xf9\xfb'
>>> d = pysmile.decode(b)
>>> print d
{u'a': 1, u'b': [2, 3, 4], u'c': {u'd': {u'e': 4.2}}}
>>> assert d == o
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
pysmile-0.2.tar.gz
(16.9 kB
view details)
File details
Details for the file pysmile-0.2.tar.gz.
File metadata
- Download URL: pysmile-0.2.tar.gz
- Upload date:
- Size: 16.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
46b03718aeacbde463d5a6c84e845b1e80550c3d1af3b28f584a4ed0d33a95a5
|
|
| MD5 |
588b0f4d06cc25cc267985b000effcf1
|
|
| BLAKE2b-256 |
0bb162338ea7f564e2e327be0895f1558adb8b3fca25c3ebfdb9011c585e45f6
|