Metadata-Version: 1.1
Name: ujs-jsonsyntax
Version: 0.1.0
Summary: JSON syntax checker
Home-page: http://github.com/usingjsonschema/ujs-jsonsyntax-python
Author: Joe McIntyre
Author-email: j_h_mcintyre@yahoo.com
License: MIT
Description: =================
        JSON Syntax Check
        =================
        
        Part of the
        `Using JSON Schema <http://usingjsonschema.github.io>`_
        project.
        
        The 'hello world' of JSON processing, check the syntax of a JSON file.
        
        For command line/script use, a console message is displayed and the process
        exits with 0 for success, 1 for failure.
        
        .. image:: https://travis-ci.org/usingjsonschema/ujs-jsonsyntax-python.svg?branch=master
            :target: https://travis-ci.org/usingjsonschema/ujs-jsonsyntax-python
        
        Command Line / Script Use
        -------------------------
        Usage: jsonsyntax filename
        - filename name of file to check (path optional)
        
        To run the syntax checker (command line or script) against the file
        ``example.json`` use,
        
        .. code-block:: bash
        
            jsonsyntax example.json
        
        Library Function Use
        --------------------
        To use the syntax checker as a library function, call the ``syntaxCheck``
        function in a try/except block. For example,
        
        .. code-block:: python
        
            from jsonsyntax import checkSyntax
            try :
                checkSyntax ("example.json")
                print ("Valid JSON file")
            except as e:
                print ("Error: " + e.message);
        
        Install
        -------
        Installation using pip for Python 2 (2.7) or Python 3.
        
        .. code-block:: bash
        
            pip install ujs-jsonsyntax
        
        License
        -------
        MIT
Keywords: bookujs json
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.4
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Topic :: Software Development
