bouquin 0.1.0__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of bouquin might be problematic. Click here for more details.

@@ -0,0 +1,80 @@
1
+ Metadata-Version: 2.1
2
+ Name: bouquin
3
+ Version: 0.1.0
4
+ Summary: Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher.
5
+ License: GPL-3.0-or-later
6
+ Author: Miguel Jacq
7
+ Author-email: mig@mig5.net
8
+ Requires-Python: >=3.9,<3.14
9
+ Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3.9
12
+ Classifier: Programming Language :: Python :: 3.10
13
+ Classifier: Programming Language :: Python :: 3.11
14
+ Classifier: Programming Language :: Python :: 3.12
15
+ Requires-Dist: pyside6 (>=6.8.1,<7.0.0)
16
+ Requires-Dist: sqlcipher3-wheels (>=0.5.5.post0,<0.6.0)
17
+ Description-Content-Type: text/markdown
18
+
19
+ # Bouquin
20
+
21
+
22
+ ## Introduction
23
+
24
+ Bouquin is a simple, opinionated notebook application written in Python, PyQt and SQLCipher.
25
+
26
+ It uses [SQLCipher bindings](https://pypi.org/project/sqlcipher3-wheels) as a drop-in replacement
27
+ for SQLite3. This means that the underlying database for the notebook is encrypted at rest.
28
+
29
+ To increase security, the SQLCipher key is requested when the app is opened, and is not written
30
+ to disk.
31
+
32
+ There is deliberately no network connectivity or syncing intended.
33
+
34
+ ## Screenshot
35
+
36
+ ![Screenshot of Bouquin](./screenshot.png)
37
+
38
+ ## Features
39
+
40
+ * Every 'page' is linked to the calendar day
41
+ * Basic markdown
42
+ * Automatic periodic saving (or explicitly save)
43
+ * Navigating from one day to the next automatically saves
44
+ * Basic keyboard shortcuts
45
+ * Transparent integrity checking of the database when it opens
46
+
47
+
48
+ ## Yet to do
49
+
50
+ * Search
51
+ * Taxonomy/tagging
52
+ * Ability to change the SQLCipher key
53
+ * Export to other formats (plaintext, json, sql etc)
54
+
55
+
56
+ ## How to install
57
+
58
+ ### From source
59
+
60
+ * Clone this repo or download the tarball from the releases page
61
+ * Ensure you have poetry installed
62
+ * Run `poetry install` to install dependencies
63
+ * Run `poetry run bouquin` to start the application.
64
+
65
+ ### From the releases page
66
+
67
+ * Download the whl and run it
68
+
69
+ ### From PyPi
70
+
71
+ * `pip install bouquin`
72
+
73
+
74
+ ## How to run the tests
75
+
76
+ * Clone the repo
77
+ * Ensure you have poetry installed
78
+ * Run `poetry install --with test`
79
+ * Run `poetry run pytest -vvv`
80
+
@@ -0,0 +1,14 @@
1
+ bouquin/__init__.py,sha256=-bBNFYOq80A2Egtpo5V5zWJtYOxQfRZFQ_feve5lkFU,23
2
+ bouquin/__main__.py,sha256=Vdhw8YA1K3wPMlbJQYL5WqvRzAKVeZ16mZQFO9VRmCo,62
3
+ bouquin/db.py,sha256=0fCr--ko-StUMRPG96Nwzotq7a7xz1-9ZlmaEKs_2PA,2697
4
+ bouquin/highlighter.py,sha256=UPP4G4jdN7U8y1c3nk9zTswkHHJw0Tpl3PX6obZrSG0,4077
5
+ bouquin/key_prompt.py,sha256=RNrW0bN4xnwDGeBlgbmFaBSs_2iQyYrBYpKOQhe4E0c,1092
6
+ bouquin/main.py,sha256=tx59cJZnGgHQ1UHQbdlYgaC36_L0ulyKaOoy6oURXVA,348
7
+ bouquin/main_window.py,sha256=qWDM1ZJcPRHsX8oju_TaoLmBLGAwkaLcUIf44wSRLEQ,8830
8
+ bouquin/settings.py,sha256=bJYQXbTqX_r_DfOKuGnah6IVZLiNwZAuBuz2OgdhA_E,670
9
+ bouquin/settings_dialog.py,sha256=XW7SFg3_bD4rGj9D3jA65j7Jvq6049CxvRilfcGCKDU,2014
10
+ bouquin-0.1.0.dist-info/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
11
+ bouquin-0.1.0.dist-info/METADATA,sha256=SFda5ee4tRfifEa10WNRbMG9uIhK5IrB1Pz4TbobBNI,2187
12
+ bouquin-0.1.0.dist-info/WHEEL,sha256=sP946D7jFCHeNz5Iq4fL4Lu-PrWrFsgfLXbbkciIZwg,88
13
+ bouquin-0.1.0.dist-info/entry_points.txt,sha256=d2C5Mc85suj1vWg_mmcfFuEBAYEkdwhZquusme5EWuQ,49
14
+ bouquin-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: poetry-core 1.9.0
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any
@@ -0,0 +1,3 @@
1
+ [console_scripts]
2
+ bouquin=bouquin.__main__:main
3
+