Skip to content

TAL Chameleon template engine renderer for aiohttp.web

License

Notifications You must be signed in to change notification settings

allusa/aiohttp_tal

Repository files navigation

aiohttp_tal

https://travis-ci.com/allusa/aiohttp_tal.svg?branch=master Documentation Status

TAL Chameleon template engine renderer for aiohttp.web. Based on aiohttp_jinja2.

Installation

Install from PyPI:

pip install aiohttp-tal

Developing

Install requirement and launch tests:

pip install -r requirements-dev.txt
pytest tests

Usage

For more details on usage, see https://aiohttp-tal.readthedocs.io/en/latest/usage.html.

Before template rendering you have to setup TAL environment first:

app = web.Application()
aiohttp_tal.setup(app,
    loader=chameleon.PageTemplateLoader('/path/to/templates/folder'))

Import:

import aiohttp_tal
import chameleon

After that you may to use template engine in your web-handlers. The most convenient way is to decorate a web-handler.

Using the function based web handlers:

@aiohttp_tal.template('tmpl.pt')
def handler(request):
    return {'name': 'Andrew', 'surname': 'Svetlov'}

License

aiohttp_tal is offered under the GPLv3 license.

This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.

This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.

You should have received a copy of the GNU General Public License along with this program. If not, see <http://www.gnu.org/licenses/>.

About

TAL Chameleon template engine renderer for aiohttp.web

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published