Html template renderer
Project description
HTMLTemplateRender
Rendering html file with variables into text
Installation
- Install Package Using
pip
python3 pip install HTMLTemplateRender
How to use:
-
HTML File (test.html)
Use {{ variable }} to assign value
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test</title> </head> <body> <h1>Hey there {{ username }}</h1> <h2>It's {{ day_name }}</h2> </body> </html>
- Lets Render the file
from HTMLTemplateRender.renderer import render_template context = { 'username': 'Anonymous', 'day_name': 'Sunday' } result = render_template(template_path='test.html', context=context) print(result)
-
Output
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Test</title> </head> <body> <h1>Hey there Anonymous</h1> <h2>It's Sunday</h2> </body> </html> Process finished with exit code 0
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.
Source Distribution
Built Distribution
Close
Hashes for HTMLTemplateRender-1.0.1-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5e28b8c4bf4fd914da8ca955bafce10c4d5fa2f7eae961390fb7f5cf482099c2 |
|
MD5 | 22148ca62e09e183c4ad82a1aba602d8 |
|
BLAKE2b-256 | 5ffb88e9ef88ce917e6c699ac83be60662410390a1c5e94c13a6077e880ae468 |