Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher. https://pypi.org/project/bouquin/
Find a file
Miguel Jacq 44e357dd66
Some checks failed
Lint / test (push) Waiting to run
Trivy / test (push) Waiting to run
CI / test (push) Has been cancelled
Adjust other images
2025-11-22 17:15:07 +11:00
.forgejo/workflows Add the ability to choose the database path at startup. Add more tests. Add bandit 2025-11-17 15:15:00 +11:00
bouquin Add .desktop file, icons 2025-11-22 17:09:08 +11:00
screenshots remove time graph visualiser. More tests. Other fixes 2025-11-19 15:33:31 +11:00
tests More tests 2025-11-21 14:30:38 +11:00
.gitignore Ignore .db 2025-11-18 17:32:53 +11:00
bouquin.desktop Add .desktop file, icons 2025-11-22 17:09:08 +11:00
CHANGELOG.md Try to force Noto Sans Regular font if present. Stop increasing the checkbox/bullet sizes separately 2025-11-22 09:20:11 +11:00
find_unused_strings.py Black 2025-11-21 12:35:45 +11:00
LICENSE Initial commit 2025-10-31 16:00:54 +11:00
poetry.lock remove time graph visualiser. More tests. Other fixes 2025-11-19 15:33:31 +11:00
pyproject.toml Add .desktop file, icons 2025-11-22 17:09:08 +11:00
README.md Adjust other images 2025-11-22 17:15:07 +11:00
release.sh Add AppImage 2025-11-12 10:00:21 +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 remove time graph visualiser. More tests. Other fixes 2025-11-19 15:33:31 +11:00

Bouquin

Bouquin logo

Introduction

Bouquin ("Book-ahn") is a notebook and planner application written in Python, PyQt 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.

It uses SQLCipher bindings 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.

Screenshots

General view

Bouquin screenshot

History panes

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

Some of the 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 and revert
  • Automatic rendering of basic Markdown syntax
  • Tabs are supported - right-click on a date from the calendar to open it in a new tab.
  • Images are supported
  • Search all pages, or find text on current page
  • Add and manage tags
  • 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 yesterday to today, on startup
  • English, French and Italian locales provided
  • Ability to set reminder alarms in the app against the current line of text on today's date
  • Ability to log time per day and run timesheet reports

How to install

Make sure you have libxcb-cursor0 installed (it may be called something else on non-Debian distributions).

It's also recommended that you have Noto Sans fonts installed, but it's up to you. It just can impact the display of unicode symbols such as checkboxes.

If downloading from my Forgejo's Releases page, you may wish to verify the GPG signatures with my GPG key.

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.

From the releases page

  • Download the whl and run it

How to run the tests

  • Clone the repo
  • Ensure you have poetry installed
  • Run poetry install --with test
  • Run ./tests.sh