Skip to main content

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


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

HTMLTemplateRender-1.0.1.tar.gz (2.7 kB view hashes)

Uploaded Source

Built Distribution

HTMLTemplateRender-1.0.1-py3-none-any.whl (2.9 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page