Skip to main content

Flask-Wiki

A lightweight, file-based wiki system built as a Flask extension. Create, edit, search, and manage wiki pages stored as Markdown files on the filesystem -- no database required.

Features

  • Markdown pages with metadata (title, tags)
  • Full-text search powered by Whoosh
  • File/image uploads
  • WikiLinks ([[Page Name]] syntax)
  • Multilingual support
  • Markdown editor with a server-rendered preview tab
  • No CDN: every front-end asset is served by the application
  • Customizable templates and permissions

Installation

pip install flask-wiki

Quick start

from flask import Flask
from flask_wiki import Wiki

app = Flask(__name__)
app.config["SECRET_KEY"] = "your-secret-key"
Wiki(app)

Or using the application factory pattern:

from flask import Flask
from flask_wiki import Wiki

wiki = Wiki()


def create_app():
    app = Flask(__name__)
    app.config["SECRET_KEY"] = "your-secret-key"
    wiki.init_app(app)
    return app

The wiki will be available at /help by default (configurable via WIKI_URL_PREFIX).

Initialize the search index

Before using search, initialize the Whoosh index:

flask flask_wiki init-index
flask flask_wiki index

How it works

Wiki pages are plain Markdown files stored in a content directory (./data by default). The URL structure mirrors the filesystem, and every page belongs to a language: /help/guides/setup maps to data/guides/setup_en.md for an English reader. See Internationalization.

Each page file has an optional metadata header followed by the Markdown body:

title: My Page Title
tags: setup, guide

# Content starts here

Regular markdown content...

The wiki registers a Flask Blueprint with routes for viewing, editing, searching, and managing pages. Uploaded files (images) are stored in a subfolder and served via middleware.

Permissions

Flask-Wiki uses a callable-based permission system. The host application provides functions that return True or False to control access. By default, everything is open (all lambdas return True).

There are four permission settings:

Setting Purpose
WIKI_READ_VIEW_PERMISSION Controls access to read routes (view pages, search). Returns 403 if False.
WIKI_EDIT_VIEW_PERMISSION Controls access to edit routes (edit, delete, upload). Returns 403 if False.
WIKI_READ_UI_PERMISSION Controls visibility of read-related UI elements in templates.
WIKI_EDIT_UI_PERMISSION Controls visibility of edit buttons/links in templates.

Each permission is a callable (no arguments) that is evaluated per-request. This lets you integrate with any authentication system -- Flask-Login, session-based auth, API tokens, etc.

Example: integrating with Flask-Login

from flask_login import current_user

app.config["WIKI_READ_VIEW_PERMISSION"] = lambda: current_user.is_authenticated
app.config["WIKI_EDIT_VIEW_PERMISSION"] = lambda: current_user.is_authenticated and current_user.has_role("editor")
app.config["WIKI_EDIT_UI_PERMISSION"] = app.config["WIKI_EDIT_VIEW_PERMISSION"]

The VIEW permissions are enforced server-side via route decorators. The UI permissions only toggle visibility of buttons and links in the templates -- they do not enforce access control on their own. Typically you'll set the UI permissions to match the view permissions, but you can separate them if needed (e.g., show a "log in to edit" button to anonymous users).

Configuration

Content & storage

Key Default Description
WIKI_HOME 'home' Default page for /
WIKI_URL_PREFIX '/help' URL prefix for the wiki blueprint
WIKI_CONTENT_DIR './data' Directory for Markdown files
WIKI_UPLOAD_FOLDER './data/files' Directory for uploaded images
WIKI_ALLOWED_EXTENSIONS {'png','jpg','jpeg','gif','svg'} Allowed upload types
WIKI_INDEX_DIR './index' Whoosh search index directory

Templates

All templates can be overridden by setting these config values to your own template paths:

Key Default
WIKI_BASE_TEMPLATE 'wiki/base.html'
WIKI_PAGE_TEMPLATE 'wiki/page.html'
WIKI_EDITOR_TEMPLATE 'wiki/editor.html'
WIKI_SEARCH_TEMPLATE 'wiki/search.html'
WIKI_FILES_TEMPLATE 'wiki/files.html'
WIKI_NOT_FOUND_TEMPLATE 'wiki/404.html'
WIKI_FORBIDDEN_TEMPLATE 'wiki/403.html'
WIKI_ICON_TEMPLATE 'wiki/icons/bootstrap.html'

Front-end assets

The wiki needs no build step, no CDN and no vendored third-party asset. Its whole front-end comes from bootstrap-flask:

Asset Origin
Bootstrap 4, jQuery, Popper shipped by bootstrap-flask
Bootstrap Icons (SVG sprite) shipped by bootstrap-flask

Set BOOTSTRAP_SERVE_LOCAL = True so bootstrap-flask serves its own assets instead of a CDN, which is what makes the wiki work without internet access:

app.config["BOOTSTRAP_SERVE_LOCAL"] = True

Icons

Templates never name a glyph directly. They ask for an intentsearch, copy, edit, upload, delete, language, save — and WIKI_ICON_TEMPLATE supplies the markup for it:

Value Markup Assets needed
'wiki/icons/bootstrap.html' (default) inline SVG using the Bootstrap Icons sprite none, bootstrap-flask ships it
'wiki/icons/fontawesome.html' <i class="fa-solid fa-..."> Font Awesome 7, supplied by your application

The Font Awesome variant emits class names only; it bundles nothing. Use it in an application that already ships Font Awesome — through a webpack bundle, for instance — and the wiki icons match the rest of that application:

app.config["WIKI_ICON_TEMPLATE"] = "wiki/icons/fontawesome.html"

Any template exposing an icon(name) macro works, so an application needing different styles or a third icon set can point the key at its own file.

Pages are edited in a plain <textarea>; the Preview tab posts the body to wiki.preview and renders it with the same Markdown pipeline as a saved page, so WikiLinks, captions and syntax highlighting show up exactly as they will.

Internationalization

Key Default Description
WIKI_CURRENT_LANGUAGE lambda: 'en' Callable returning the current language code
WIKI_LANGUAGES {'en': 'English', 'fr': 'French', 'de': 'German', 'it': 'Italian'} Available languages
WIKI_FALLBACK_LANGUAGES every language of WIKI_LANGUAGES, in order Languages tried, in order, when a page has no variant in the current language

Every page belongs to a language: its filename carries a language code (page_fr.md, page_de.md), and /help/page serves the variant matching WIKI_CURRENT_LANGUAGE. Pages created or edited through the wiki are always saved with a language code.

When a page has no variant in the current language, the wiki walks WIKI_FALLBACK_LANGUAGES in order and serves the first translation it finds, with a banner telling the reader which language the page is displayed in. A page is only a 404 when it exists in no language at all. Set WIKI_FALLBACK_LANGUAGES = [] to disable the cascade.

Page listings (index, tags) and search results follow the same cascade: one entry per page, in the current language when it exists.

Files without a language code (page.md) are still served, as a last resort, for wikis created before language codes became mandatory. They are read-only: editing one writes the variant of the current language and leaves the original untouched. To migrate such a wiki, rename its files to page_<language>.md and re-run flask flask_wiki index.

Markdown

Key Default Description
WIKI_MARKDOWN_EXTENSIONS {'codehilite', 'fenced_code'} Additional Python-Markdown extensions

The extensions toc, meta, tables, and a built-in Bootstrap extension are always loaded.

Development

Requirements

  • Python >=3.14,<3.15
  • uv

Setup

git clone <repo-url>
cd flask-wiki
uv sync --frozen

Run the example app

cd examples
uv run flask flask_wiki init-index
uv run flask flask_wiki index
uv run flask run --debug
# Visit http://localhost:5000/help

Run tests

uv run poe run_tests

License

BSD 3-Clause. See LICENSE for details.

Download files

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

Source Distribution

flask_wiki-3.0.0.tar.gz (31.0 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

flask_wiki-3.0.0-py3-none-any.whl (53.1 kB view details)

Uploaded Python 3

File details

Details for the file flask_wiki-3.0.0.tar.gz.

File metadata

  • Download URL: flask_wiki-3.0.0.tar.gz
  • Upload date:
  • Size: 31.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for flask_wiki-3.0.0.tar.gz
Algorithm Hash digest
SHA256 15b2099a1f918a3fc8ae4ed9536e9e2d47b375bc4d168376047af05849a22bec
MD5 56c62914182e61a0254363d0d2d4e887
BLAKE2b-256 153ff2682cb6c00cae7a512ee2ee452c389f00b3afbbb6d53e46d40d225e9d61

See more details on using hashes here.

File details

Details for the file flask_wiki-3.0.0-py3-none-any.whl.

File metadata

  • Download URL: flask_wiki-3.0.0-py3-none-any.whl
  • Upload date:
  • Size: 53.1 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.12.9 {"installer":{"name":"uv","version":"0.12.9","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}

File hashes

Hashes for flask_wiki-3.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 f812ced83bf95dc1431b03b69aa0c6735995f5ae5f4cebb587278b95504104ae
MD5 b939f5229c65acc1c1b979ee8109ac93
BLAKE2b-256 f2ab3fe94466662643e2f880c9ba3f90a724a8e090dae41150669fb86d609e8a

See more details on using hashes here.

Release history Release notifications | RSS feed

4.1.0

2 files

4.0.0

2 files

This release

3.0.0 This release

2 files

2.0.0

2 files

1.0.4

2 files

1.0.3

2 files

1.0.2

2 files

1.0.1

2 files

1.0.0

2 files

0.3.1

2 files

0.3.0

2 files

0.2.4

2 files

0.2.3

2 files

0.2.2

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page