Skip to main content

Flask extension and Django App 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.

How to install

To install this extension as a requirement in your project, you can use PIP;

pip install canonicalwebteam.blog

See also the documentation for (pip install)[https://pip.pypa.io/en/stable/reference/pip_install/].

How to use

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.

Flask

In your app you can then:

    import flask
    from canonicalwebteam.blog import BlogViews
    from canonicalwebteam.blog.flask import build_blueprint

    app = flask.Flask(__name__)

    # ...

    blog_views = BlogViews()
    app.register_blueprint(build_blueprint(blog_views), url_prefix="/blog")

You can customise the blog through the following optional arguments:

    blog_views = BlogViews(
        blog_title="Blog",
        tag_ids=[1, 12, 112],
        exclude_tags=[26, 34],
        feed_description="The Ubuntu Blog Feed",
        per_page=12, # OPTIONAL (defaults to 12)
    )
    app.register_blueprint(build_blueprint(blog_views), url_prefix="/blog")

Django

  • Add the blog module as a dependency to your Django project
  • Load it at the desired path (e.g. "/blog") in the urls.py file
from django.urls import path, include
urlpatterns = [path("blog/", include("canonicalwebteam.blog.django.urls"))]
  • In your Django project settings (settings.py) you have to specify the following parameters:
BLOG_CONFIG = {
    # the id for tags that should be fetched for this blog
    "TAGS_ID": [3184],
    # tag ids we don't want to retrieve posts from wordpress
    "EXCLUDED_TAGS": [3185],
    # the title of the blog
    "BLOG_TITLE": "TITLE OF THE BLOG",
    # [OPTIONAL] title seen on the RSS feed
    "FEED_DESCRIPTION": "The Amazing blog",
    # [OPTIONAL] number of articles per page (defaults to 12)
    "PER_PAGE": 12,
}
  • Run your project and verify that the blog is displaying at the path you specified (e.g. '/blog')

Groups pages

  • Group pages are optional and can be enabled by using the view canonicalwebteam.blog.django.views.group. The view takes the group slug to fetch data for and a template path to load the correct template from.
  • Group pages can be filtered by category, by adding a category=CATEGORY_NAME query parameter to the URL (e.g. http://localhost:8080/blog/cloud-and-server?category=articles).
from canonicalwebteam.blog.django.views import group

urlpatterns = [
    url(r"blog", include("canonicalwebteam.blog.django.urls")),
    url(
        r"blog/cloud-and-server",
        group,
        {
            "slug": "cloud-and-server",
            "template_path": "blog/cloud-and-server.html"
        }
    )

Topic pages

  • Topic pages are optional as well and can be enabled by using the view canonicalwebteam.blog.django.views.topic. The view takes the topic slug to fetch data for and a template path to load the correct template from.

urls.py

path(
		r"blog/topics/kubernetes",
		topic,
		{"slug": "kubernetes", "template_path": "blog/kubernetes.html"},
		name="topic",
),

Development

The blog extension leverages poetry for dependency management.

Regenerate setup.py

poetry install
poetry run poetry-setup

Testing

All tests can be run with poetry run pytest.

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 && poetry run pytest.

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

canonicalwebteam.blog-4.0.2.tar.gz (13.2 kB view details)

Uploaded Source

Built Distribution

canonicalwebteam.blog-4.0.2-py3-none-any.whl (13.9 kB view details)

Uploaded Python 3

File details

Details for the file canonicalwebteam.blog-4.0.2.tar.gz.

File metadata

  • Download URL: canonicalwebteam.blog-4.0.2.tar.gz
  • Upload date:
  • Size: 13.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/0.12.17 CPython/3.6.8 Linux/4.15.0-66-generic

File hashes

Hashes for canonicalwebteam.blog-4.0.2.tar.gz
Algorithm Hash digest
SHA256 61aafcea5edda923dfc49ca4814372719de40a7a256a3369bb26413809ab15a3
MD5 8fe75aaf47e2f1d6f74d82348fcbec69
BLAKE2b-256 2ac3f4ecec00bc9e7c89cb00f46c7d559eb2e814dc5f43b83aa9557dc156dd56

See more details on using hashes here.

File details

Details for the file canonicalwebteam.blog-4.0.2-py3-none-any.whl.

File metadata

File hashes

Hashes for canonicalwebteam.blog-4.0.2-py3-none-any.whl
Algorithm Hash digest
SHA256 7f654748b49897cb452b8039c1cfa3f7694f4684fca94df4602c43dd627f9fc2
MD5 44654842d72662744a200c31f6cb8df4
BLAKE2b-256 319e4c43bc13d1469b281a8b80df5ac330b8b1398cb351bf58a1bbb86ed03f97

See more details on using hashes here.

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