Description
Stores small Python values in a file-based database using pickle serialization. It is useful for lightweight caches, interactive shells, and tools that need simple persistence without setting up a database server.
Pickle data is not safe to load from untrusted sources. Use it only for files controlled by the application or user, and avoid treating it as a secure interchange format.