Skip to main content

This is a simple http server, use MVC like design.

Project description

Jinja for Python Simple Http Server

What's this?

This is a Jinja extension for pythone simple http server (https://github.com/keijack/python-simple-http-server)

How to use?

install

python3 -m pip install simple_http_server_jinja
from simple_http_server import route, server
from simple_http_server_jinja import JinjaView, render

@route("/index")
def index(name: str = "world"):
    return JinjaView("index.html", {"name": name})

@route("/page")
def page():
    return 200, render("page.html", {"a": "b"})

def main():
    server.start(port=9090)

if __name__ == "__main__":
    main()

For the above code, the templates should be placed in the templates folder in your project's root.

|--templates
|----index.html
|----page.html
|--main.py

You can set your own Jinja2 Environment via set_env function:

from simple_http_server import route, server
from simple_http_server_jinja import JinjaView, set_env
from jinja2 import Environment, FileSystemLoader

@route("/index")
def index(name: str = "world"):
    return JinjaView("index.html", {"name": name})

def main():
    env = Environment(loader=FileSystemLoader("/you/own/template/folder"))
    set_env(env)
    server.start(port=9090)

if __name__ == "__main__":
    main()

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

simple_http_server_jinja-0.1.1.tar.gz (3.4 kB view hashes)

Uploaded Source

Built Distribution

simple_http_server_jinja-0.1.1-py3-none-any.whl (4.8 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