A module which attempts to load the corresponding templates directly from URLs, without the need to write a view for each URL.
Project description
TemplateFinder
TemplateFinder is an extension of TemplateView which attempts to
load the corresponding templates directly from URLs, without the need to
write a view for each URL.
It can load HTML templates directly, or parse Markdown files that contain a "wrapper_template" frontmatter key.
Usage
To register the template finder in your Flask app you need to register the template folder in the application config, and specify which routes should be handled by it. The following example will handle everything via the templatefinder:
from canonicalwebteam.templatefinder import TemplateFinder
TEMPLATE_FOLDER =
app = Flask(
template_folder="templates",
static_folder="static",
)
app.config["TEMPLATE_FOLDER"] = "templates"
template_finder_view = TemplateFinder.as_view("template_finder")
app.add_url_rule("/", view_fun c=template_finder_view)
app.add_url_rule("/<path:subpath>", view_func=template_finder_view)
Template matching
The templatefinder can be used to automatically map .html and .md files to url on a website.
When included the finder will search for files at the given url in a specified template directory.
E.g. localhost/pages/test will look for the following files, in order:
$TEMPLATE_FOLDER/pages/test.html$TEMPLATE_FOLDER/pages/test/index.html$TEMPLATE_FOLDER/pages/test.md$TEMPLATE_FOLDER/pages/test/index.md
Markdown parsing
If the TemplateFinder encounters a Markdown file (ending .md) it
will look for the following keys in YAML
frontmatter:
wrapper_templatemandatory: (e.g.:wrapper_template: includes/markdown-wrapper.html) A path to an HTML template within which to place the parsed markdown content. This path must be relative to Flask'stemplate_folderroot.contextoptional: (e.g.:context: {title: "Welcome", description: "A welcome page"}) A dictionary of extra key / value pairs to pass through to the template context.markdown_includesoptional: (e.g.:markdown_includes: {nav: }) A mapping of key names to template paths pointing to Markdown files to include. Each template path will be parsed, the resulting HTML will be passed in the template context, under the relevant key. Paths must be relative to Flask'stemplate_folderroot.
Here's an example Markdown file:
---
wrapper_template: "includes/markdown-wrapper.html"
markdown_includes:
nav: "includes/nav.md"
context:
title: "Welcome"
description: "A welcome page"
---
Welcome to my website.
## GitHub
I also have [a GitHub page](https://github.com/me).
Tests
Tests can be run with pytest:
pip3 install -r requirements.txt
python3 -m pytest test
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
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file canonicalwebteam.templatefinder-1.0.0.tar.gz.
File metadata
- Download URL: canonicalwebteam.templatefinder-1.0.0.tar.gz
- Upload date:
- Size: 7.6 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
5bb51a04aeb6f2a3f7298bb1439c31c52636cc8d5f507d7e440618d2c06ba829
|
|
| MD5 |
b9d9ce6d61d91210de0b7965246510e4
|
|
| BLAKE2b-256 |
63f93943d05dbacc44e4b376339fa55c74dffee4fc6177553f87ba846c80e088
|
File details
Details for the file canonicalwebteam.templatefinder-1.0.0-py3-none-any.whl.
File metadata
- Download URL: canonicalwebteam.templatefinder-1.0.0-py3-none-any.whl
- Upload date:
- Size: 8.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/3.1.1 pkginfo/1.5.0.1 requests/2.23.0 setuptools/46.4.0 requests-toolbelt/0.9.1 tqdm/4.46.0 CPython/3.7.7
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
f9226bf00b378e2b8be1c09ab31c2aeebc97b6af53016464497e6bcc636a3a90
|
|
| MD5 |
2f53e842d45fd4ea6aa86afa13f030c5
|
|
| BLAKE2b-256 |
2d9967439d1d9e8ac1cced42d48189f2a7046794bc0af17e486000725fe141f1
|