Metadata-Version: 1.1
Name: eco
Version: 0.9.2
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 is a bridge to the  `Eco <https://github.com/sstephenson/eco>`_  (CoffeeScript Template) compiler.
        
        
        **Python Eco**
        ===============
        
        ::
        
            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
        =====
        
        ::
        
            $ pip install eco
        
        
        History
        ========
        0.9.x (2012-06-17)
        ~~~~~~~~~~~~~~~~~
        * first release
        
        License
        ========
        MIT License
        
Keywords: javascript,coffeescript,eco,compiler
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
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
