TAL template renderer for aiohttp.web (http server for asyncio)
Project description
aiohttp_tal
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/>.
CHANGES
0.1.0 (2019-03-28)
Initial release. Based on aiohttp-jinja2 copyright by Andrew Svetlo and aio-libs team.
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.