Metadata-Version: 2.1
Name: j2tmpl
Version: 0.0.8
Summary: Jinja2 templating based on environment variables.
Home-page: https://github.com/ikogan/j2tmpl
Author: Ilya Kogan
Author-email: kogan@ohio.edu
License: BSD
Description: 
        Simple command line template renderer using
        Jinja2.
        
        This will parse the current environment into a dictionary
        tree where each key is split along underscores or
        camelcase and each element is added a sub-dictionary.
        
        For example:
        
        .. code-block:: shell
        
            DATABASE_ONE_URL=mysql:3306
            DATABASE_ONE_NAME=one
            databaseTwoUrl=mysql2:3306
            databaseTwoName=two
            AUTH_LDAP=true
        
        Would result in:
        
        .. code-block:: json
        
            {
                'database': {
                    'one': {
                        'url': 'mysql1:3306,
                        'name': 'one'
                    },
                    'two': {
                        'url': mysql2:3306,
                        'name': 'two'
                    }
                },
                'auth':
                    'ldap': 'true'
            }
        
        .. code-block:: shell
        
            $ j2tmpl template.jinja
            $ j2tmpl templatedir/
            $ j2tmpl --help
        
        See the GitHub README for more details.
        
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: System Administrators
Classifier: Operating System :: OS Independent
Classifier: Topic :: Software Development
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: 3.6
Classifier: Programming Language :: Python :: 3.7
Provides-Extra: tests
Provides-Extra: build
