Flask extension to add a nice blog to your website
Project description
Canonical blog extension
This extension allows you to add a simple frontend section to your flask app. All the articles are pulled from Canonical's Wordpress back-end through the JSON API.
This extension provides a blueprint with 3 routes:
- "/": that returns the list of articles
- "/": the article page
- "/feed": provides a RSS feed for the page.
Installation
To install this extension as a requirement in your project, you can use PIP;
pip3 install canonicalwebteam.blog
See also the documentation for pip install.
Usage
Templates
The module expects HTML templates at blog/index.html
, blog/article.html
, blog/blog-card.html
, blog/archives.html
, blog/upcoming.html
and blog/author.html
.
An example of these templates can be found at https://github.com/canonical-websites/jp.ubuntu.com/tree/master/templates/blog.
Usage
In your app you can then do the following:
import flask
import talisker.requests
from flask_reggie import Reggie
from canonicalwebteam.blog import BlogViews, build_blueprint, BlogAPI
app = flask.Flask(__name__)
Reggie().init_app(app)
session = talisker.requests.get_session()
blog = build_blueprint(
BlogViews(
api=BlogAPI(session=session),
)
)
app.register_blueprint(blog, url_prefix="/blog")
You can customise the blog through the following optional arguments:
blog = build_blueprint(
BlogViews(
blog_title="Blog",
blog_path="blog",
tag_ids=[1, 12, 112],
exclude_tags=[26, 34],
per_page=12,
feed_description="The Ubuntu Blog Feed",
api=BlogAPI(
session=session,
use_image_template=True,
),
)
)
Testing
All tests can be run with ./setup.py test
.
Regenerating Fixtures
All API calls are caught with VCR and saved as fixtures in the fixtures
directory. If the API updates, all fixtures can easily be updated by just removing the fixtures
directory and rerunning the tests.
To do this run rm -rf fixtures && ./setup.py 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
Hashes for canonicalwebteam.blog-6.2.0.tar.gz
Algorithm | Hash digest | |
---|---|---|
SHA256 | dcb81732548a23ab9762c3f7db0d6fb2b6bcee8cc0a88a7dee64ae1a976f896f |
|
MD5 | ea8d6c817b0b6a41d2e0d1ff3c3dc673 |
|
BLAKE2b-256 | c75cbde9d7c172a194442fd8298b14b279b7c899c02530ec39ac8d4bea164e96 |
Hashes for canonicalwebteam.blog-6.2.0-py3-none-any.whl
Algorithm | Hash digest | |
---|---|---|
SHA256 | 68167294f3a7db4a905e5c633065018416a53fb7691c2c9bbc73f15dba116261 |
|
MD5 | b6acc1412afbcd9280c47f418668d03e |
|
BLAKE2b-256 | 5cb5aa5a7cd27a25c8cf91b73c1565fd21da1473c10a159148417041086fe801 |