Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher. https://pypi.org/project/bouquin/
Find a file
Miguel Jacq 7e47cef602
All checks were successful
CI / test (push) Successful in 8m21s
Lint / test (push) Successful in 37s
Trivy / test (push) Successful in 18s
Move a code block or collapsed section (or generally, anything after a checkbox line until the next checkbox line) when moving an unchecked checkbox line to another day.
2025-12-26 17:06:45 +11:00
.forgejo/workflows Add ability to collapse/expand sections of text 2025-12-23 17:18:02 +11:00
bouquin Move a code block or collapsed section (or generally, anything after a checkbox line until the next checkbox line) when moving an unchecked checkbox line to another day. 2025-12-26 17:06:45 +11:00
debian prep changelog for debian package 2025-12-23 17:33:19 +11:00
rpm Add rpm 2025-12-24 15:26:41 +11:00
screenshots Screenshot update 2025-12-02 16:22:02 +11:00
tests Move a code block or collapsed section (or generally, anything after a checkbox line until the next checkbox line) when moving an unchecked checkbox line to another day. 2025-12-26 17:06:45 +11:00
.gitignore Invoicing 2025-12-08 20:34:11 +11:00
.pre-commit-config.yaml Add pre-commit, fix trailing whitespace 2025-12-18 13:48:42 +11:00
bouquin.desktop Fix test and appimage icon stuff 2025-11-22 17:52:39 +11:00
CHANGELOG.md Move a code block or collapsed section (or generally, anything after a checkbox line until the next checkbox line) when moving an unchecked checkbox line to another day. 2025-12-26 17:06:45 +11:00
Dockerfile.debbuild Fix dependency on my sqlcipher4 package 2025-12-21 15:43:17 +11:00
Dockerfile.rpmbuild Add rpm 2025-12-24 15:26:41 +11:00
find_unused_strings.py Add argparse to find_unused_strings.py so we can pass in --locale rather than hardcoded 2025-11-27 11:02:33 +11:00
LICENSE Initial commit 2025-10-31 16:00:54 +11:00
poetry.lock Add rpm 2025-12-24 15:26:41 +11:00
pyproject.toml Add rpm 2025-12-24 15:26:41 +11:00
README.md Add rpm 2025-12-24 15:26:41 +11:00
release.sh copy the rpm after signing it, you idiot 2025-12-24 18:55:55 +11:00
tests.sh Add option to automatically move yesterday's unchecked TODOs to today on startup 2025-11-06 15:45:31 +11:00
vulture_ignorelist.py Many changes and new features: 2025-11-25 14:52:26 +11:00

Bouquin

Bouquin logo

Introduction

Bouquin ("Book-ahn") is a notebook and planner application written in Python, Qt and SQLCipher.

It is designed to treat each day as its own 'page', complete with Markdown rendering, tagging, search, reminders and time logging for those of us who need to keep track of not just TODOs, but also how long we spent on them.

For those who rely on that time logging for work, there is also an Invoicing feature that can generate invoices of that time spent.

There is also support for embedding documents in a file manager.

It uses SQLCipher as a drop-in replacement for SQLite3.

This means that the underlying database for the notebook is encrypted at rest.

To increase security, the SQLCipher key is requested when the app is opened, and is not written to disk unless the user configures it to be in the settings.

There is deliberately no network connectivity or syncing intended, other than the option to send a bug report from within the app, or optionally to check for new versions to upgrade to.

Screenshots

General view

Bouquin screenshot

History panes

Screenshot of Bouquin History Preview Pane Screenshot of Bouquin History Diff Pane

Tags

Screenshot of Bouquin Tag Manager screen

Time Logging

Screenshot of Bouquin Time Log screens

Statistics

Bouquin statistics

Features

  • Data is encrypted at rest
  • Encryption key is prompted for and never stored, unless user chooses to via Settings
  • All changes are version controlled, with ability to view/diff versions, revert or delete revisions
  • Tabs are supported - right-click on a date from the calendar to open it in a new tab.
  • Automatic rendering of basic Markdown syntax
  • Basic code block editing/highlighting
  • Ability to collapse/expand sections of text
  • Ability to increase/decrease font size
  • Images are supported
  • Search all pages, or find text on current page
  • Automatic periodic saving (or explicitly save)
  • Automatic locking of the app after a period of inactivity (default 15 min)
  • Rekey the database (change the password)
  • Export the database to json, html, csv, markdown or .sql (for sqlite3)
  • Backup the database to encrypted SQLCipher format (which can then be loaded back in to a Bouquin)
  • Dark and light theme support
  • Automatically generate checkboxes when typing 'TODO'
  • It is possible to automatically move unchecked checkboxes from the last 7 days to the next day.
  • English, French and Italian locales provided
  • Ability to set reminder alarms (which will be flashed as the reminder or can be sent as webhooks/email notifications)
  • Ability to log time per day for different projects/activities, pomodoro-style log timer, timesheet reports and invoicing of time spent
  • Ability to store and tag documents (tied to Projects, same as the Time Logging system). The documents are stored embedded in the encrypted database.
  • Add and manage tags on pages and documents

How to install

Unless you are using the Debian option below:

  • Make sure you have libxcb-cursor0 installed (on Debian-based distributions) or xcb-util-cursor (RedHat/Fedora-based distributions).
  • If downloading from my Forgejo's Releases page, you may wish to verify the GPG signatures with my GPG key.

Debian 13 ('Trixie')

sudo mkdir -p /usr/share/keyrings
curl -fsSL https://mig5.net/static/mig5.asc | sudo gpg --dearmor -o /usr/share/keyrings/mig5.gpg
echo "deb [arch=amd64 signed-by=/usr/share/keyrings/mig5.gpg] https://apt.mig5.net $(lsb_release -cs) main" | sudo tee /etc/apt/sources.list.d/mig5.list
sudo apt update
sudo apt install bouquin

Fedora 42

sudo rpm --import https://mig5.net/static/mig5.asc

sudo tee /etc/yum.repos.d/mig5.repo > /dev/null << 'EOF'
[mig5]
name=mig5 Repository
baseurl=https://rpm.mig5.net/rpm/$basearch
enabled=1
gpgcheck=1
repo_gpgcheck=1
gpgkey=https://mig5.net/static/mig5.asc
EOF

sudo dnf upgrade --refresh
sudo dnf install bouquin

From PyPi/pip

  • pip install bouquin

From AppImage

  • Download the Bouquin.AppImage from the Releases page, make it executable with chmod +x, and run it.

From source

  • Clone this repo or download the tarball from the releases page
  • Ensure you have poetry installed
  • Run poetry install to install dependencies
  • Run poetry run bouquin to start the application.

Alternatively, you can download the source code and wheels from Releases as well.