Booklet

Latest version: v0.7.8

Safety actively analyzes 723685 Python packages for vulnerabilities to keep your Python projects secure.

Scan your dependencies

Page 3 of 5

0.5.0

Yet another rewrite...but now it's much better.
Single file, no mmap, and the database can scale to any number of keys up to 256**4. It's really fast regardless of the size.
The user needs to assign an appropriate n_buckets.

0.4.0

Major rewrite after discovering that mmap can use huge amounts of memory. During writing, a separate index file is created. This file is updated using mmap, while the main data file just uses normal file operations. When the file is closed after a write operation, it is appended to the end of the main data file. When open for reading, mmap is only used on the index at the end of the file.

There's still the issue that when the number of indexes increases to over 100,000 and upwards of 1,000,000 there is significant slowdown due to the constant moving/copying of indexes during insertions. mmap is currently handling this, and I haven't figured out a decent way to create an indexing system without moving data around...

0.3.0

Reworked the indexing and deletes.
There's no longer any need for many of the input parameters of Booklet including the number of buckets.

0.1.15

Whenever there is a catchable error, booklet properly closes the file. This will sync all changes and "unlock" the file. This seems like the safest option.

0.1.14

New exception classes that includes unlocking the opened file to reduce the potential for deadlocks.

0.1.13

Some bugs were fixed and the FixedValue class was created.

Page 3 of 5

© 2025 Safety CLI Cybersecurity Inc. All Rights Reserved.