Metadata-Version: 1.1
Name: quik
Version: 0.2.1
Summary: A fast and lightweight Python template engine
Home-page: https://github.com/avelino/quik
Author: Thiago Avelino
Author-email: thiago@avelino.xxx
License: MIT
Description: quik
        ====
        
        A fast and lightweight Python template engine
        
        
        Nutshell
        --------
        
        Here a small example of a Quik template::
        
            <ul>
                #for ($user in $users)
                    #if($user.age > 18)
                    <li><a href="$user.url">$user.username</a></li>
                    #end
                #end
            </ul>
        
        
        Features
        --------
        
        - Easy to use.
        - High performance.
        - Autoescaping.
        - Template inheritance.
        - Supports native python expressions.
        
Keywords: template,engine,web,fast,lightweight
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet :: WWW/HTTP :: Dynamic Content
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Topic :: Text Processing :: Markup :: HTML
