Metadata-Version: 2.4
Name: pretty-json
Version: 1.2.0
Summary: make pretty json
Home-page: https://github.com/devstuff-io/pretty-json
Author: meganlkm
Author-email: devstuff.io@gmail.com
Keywords: pretty,json
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Requires-Dist: Pygments
Requires-Dist: pygments-json
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: home-page
Dynamic: keywords
Dynamic: requires-dist
Dynamic: summary

pretty-json
===========

make pretty json.

Documentation: https://github.com/devstuff-io/pretty-json


Installation
------------

.. code-block:: shell

   pip install pretty-json


Environment Variables
---------------------

``PJSON_OUTPUT_STYLE``
......................

**Default**: monokai

The pygments_ formatter used to make the json pretty.


Usage
-----

.. code-block:: python

   from pretty_json import format_json

   # format_json(content, style=OUTPUT_STYLE)
   print format_json({'key': 'value'})


**See and sample the available styles**

.. code-block:: shell

   python -c "from pretty_json import sample;sample('manni')"


Authors
-------

See contributors section on GitHub.


.. _pygments: http://pygments.org/docs/styles/
