Metadata-Version: 2.1
Name: ltsv2json
Version: 1.0.2
Summary: LTSV-to-JSON converter
Home-page: https://github.com/hoffa/ltsv2json
Author: Chris Rehn
Author-email: chris@rehn.me
License: MIT
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Utilities

ltsv2json
=========

.. image:: https://travis-ci.org/hoffa/ltsv2json.svg?branch=master
   :target: https://travis-ci.org/hoffa/ltsv2json

Reads LTSV from ``stdin`` and prints JSON to ``stdout``.

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

::

  pip install ltsv2json

Usage
-----

::

  $ printf "world:bar\thello:foo\nworld:turtle" | ltsv2json
  {"world":"bar","hello":"foo"}
  {"world":"turtle"}


