Metadata-Version: 1.1
Name: eco
Version: 1.1.0rc3
Summary: Python Eco is a bridge to the ECO(CoffeeScript Template) Compiler.
Home-page: https://github.com/ikeikeikeike/python-eco
Author: Tatsuo Ikeda
Author-email: jp.ne.co.jp at gmail
License: MIT License
Description: Python Eco
        ===========
        
        
        Python Eco is a bridge to the [Eco](https://github.com/sstephenson/eco) (CoffeeScript Template) Compiler.
        
        ```python
        import eco
        
        eco.compile(open("template.eco"))
        # Out: u"function(...) {...}"
        
        context = eco.context_for("Hello <%= @name %>")
        context.call("render", {"name": "Sam"})
        # Out: u'Hello Sam'
        
        eco.render("Hello <%= @name %>", name="world")
        # Out: u'Hello world'
        ```
        
        Setup
        -----
        ```bash
        $ pip install eco
        ```
        
        
        License
        ========
        MIT License
        
Keywords: javascript,coffeescript,eco,compiler
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Console
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.6
Classifier: Programming Language :: Python :: 2.7
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.1
Classifier: Programming Language :: Python :: 3.2
Classifier: Topic :: Utilities
Classifier: Topic :: Software Development :: Libraries :: Python Modules
