Metadata-Version: 2.0
Name: json2tsv
Version: 0.1.1
Summary: Convert json to tab-separated format.
Home-page: https://github.com/aronwc/json2tsv
Author: Aron Culotta
Author-email: aronwc@gmail.com
License: BSD
Keywords: json2tsv
Platform: UNKNOWN
Classifier: Development Status :: 2 - Pre-Alpha
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3

json2tsv
========

Convert json to tab-separated format. Read from STDIN and write to
STDOUT. E.g.

::

    $ echo '[{"id":"123", "user":{"name":"mary", "gender":"female"}}, {"id":"124", "user":{"name":"mark", "gender":"male"}}]' | json2tsv id user.name user.gender
    123     mary    female
    124     mark    male

-  Free software: BSD license
-  Documentation: http://json2tsv.rtfd.org.





History
-------

0.1.1 (2016-07-11)
++++++++++++++++++

* Bugfixes; unicode support
* py2 / py3 support

0.1.0 (2014-01-11)
++++++++++++++++++

* First release on PyPI.


