Metadata-Version: 1.2
Name: jinja2-pimport
Version: 0.1.8
Summary: Jinja2 Extension for Python Import
Home-page: https://github.com/starofrainnight/jinja2-pimport
Author: Hong-She Liang
Author-email: starofrainnight@gmail.com
Maintainer: Hong-She Liang
Maintainer-email: starofrainnight@gmail.com
License: MIT
Description: ===============
        Jinja2 PImport
        ===============
        
        Jinja2 Extension for Python Import keywords
        
        So we don't have to write a new jinja2 filter just for simple function.
        
        It exposed a powerful weapon for shoot you feet, use it in your own risk!
        
        Usage
        -------
        
        Execute "echo hello" shell command and get the output
        
        .. code::
        
            from jinja2 import Environment
        
            env = Environment(extensions=['jinja2_pimport.PImportExtension'])
            template = env.from_string("{{ ('subprocess'|pimport).check_output('echo hello', shell=True).strip().decode() }}")
            template.render()
            # => hello
        
        License
        -------
        
        Distributed under the terms of the `MIT`_ license, jinja2-pimport is free and open source software
        
        .. image:: https://opensource.org/trademarks/osi-certified/web/osi-certified-120x100.png
           :align: left
           :alt: OSI certified
           :target: https://opensource.org/
        
        .. _`MIT`: http://opensource.org/licenses/MIT
        
Keywords: jinja2,extension,import
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Natural Language :: English
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 3.5
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python
