Metadata-Version: 1.0
Name: coima
Version: 0.0.1
Summary: Extremely plain and simple template engine for text files
Home-page: http://github.com/alfredodeza/coima
Author: Alfredo Deza
Author-email: alfredodeza [at] gmail [dot] com
License: MIT
Description: Small template engine that replaces variables via dictionary values::
        
        cat file.txt
        "This is a {{variable}} in a {{string}}"
        
        from coima import Template
        t = Template({'variable':'word', 'string':'sentence'}, 'file.txt')
        
        t.render()
        
        "This is a word in a sentence"
        
        Syntax
        -------
        No Python or code blocks are allowed, this is basically a **dumb** templating
        engine.
        
        Variables should be a one word or 2 words together with an underscore. These are
        valid variables:
        
        {{variable}}
        {{variable_one}}
        
        Invalid variables are left 'as is' and left in the final rendered template.
        
        
Keywords: WSGI stats requests context development
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Topic :: Software Development :: Build Tools
Classifier: Programming Language :: Python :: 2.5
Classifier: Programming Language :: Python :: 2.6
