A python jsend library
Project description
python jsend pypi: https://pypi.python.org/pypi/pyjsend/
About jsend
Install
pip install pyjsend
Usage
import module:
>>> import jsend
success:
>>> jsend.success({'key': 'value'}) {'status': 'success', 'data': {'key': 'value'}}
fail:
>>> jsend.fail({'key': 'value'}) {'status': 'fail', 'data': {'key': 'value'}}
error:
>>> jsend.error('message') {'status': 'error', 'message': 'message'}
is success:
>>> jsend.is_success({'status':'success'}) True
is fail:
>>> jsend.is_fail({'status':'fail'}) True
is error:
>>> jsend.is_error({'status':'error'}) True
to json string and load jsend string:
>>> jsend.success({'key': 'value'}).stringify() '{"status": "success", "data": {"key": "value"}}' >>> jsend.loads(jsend.success({'key': 'value'}).stringify()) {u'status': u'success', u'data': {u'key': u'value'}}
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
pyjsend-0.2.0.tar.gz
(3.3 kB
view hashes)
Built Distribution
Close
Hashes for pyjsend-0.2.0-py2.py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | cef32baedb2b6ff34dcff634f47391f440f1866384ade9c792bf380f4d4ca25f |
|
MD5 | fd2e48122c2e0a80e3696b857609bbd9 |
|
BLAKE2b-256 | 6216ddb05f35d6eb432b21d55ef83698353979190206a47e86ed209f26d40c29 |