Metadata-Version: 1.1
Name: pyjsend
Version: 0.1.0
Summary: A python jsend library
Home-page: https://github.com/onceaweeq/py-jsend
Author: Juncheol Cho
Author-email: ziron1397@gmail.com
License: MIT
Description: py-jsend
        ========
        python jsend
        pypi: https://pypi.python.org/pypi/pyjsend/
        
        About jsend
        -----------
        http://labs.omniti.com/labs/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::
        
         >>> jsend.success({'key': 'value'}).jsonify()
         '{"status": "success", "data": {"key": "value"}}'
        
        
Keywords: python jsend
Platform: UNKNOWN
Classifier: Development Status :: 3 - Alpha
Classifier: Intended Audience :: Developers
Classifier: Topic :: Software Development :: Build Tools
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.2
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Topic :: Internet :: WWW/HTTP :: HTTP Servers
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
