Metadata-Version: 2.0
Name: subtoml
Version: 0.1.1
Summary: Sed for TOML: subtitute parts of a TOML file
Home-page: https://bitbucket.org/dahlia/subtoml
Author: Hong Minhee
Author-email: hong.minhee@gmail.com
License: GPLv3 or later
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Console
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: System Administrators
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Operating System :: POSIX
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: Stackless
Classifier: Topic :: Software Development :: Pre-processors
Classifier: Topic :: Text Editors :: Text Processing
Classifier: Topic :: Text Processing :: Filters
Classifier: Topic :: Utilities
Requires-Dist: pytoml (>=0.1.12)

``subtoml``: Sed for TOML
=========================

``subtoml`` is a small CLI utility that substitutes parts of a TOML file.

.. code-block:: console

   $ cat sample.toml
   [database]
   url = "postgresql://localhost/sample"
   [web]
   debug = true
   $ subtoml database.url 'postgresql://localhost/test' < sample.toml
   [database]
   url = "postgresql://localhost/test"
   [web]
   debug = true

Distributed under GPLv3_ or later.

.. _GPLv3: http://www.gnu.org/licenses/gpl-3.0.html


