pickle5 is a backport of the pickle protocol 5 (PEP 574) and other related changes, primarily for Python versions prior to 3.8. It provides the performance improvements and features of protocol 5 for Python 3.5, 3.6, and 3.7. The library is currently at version 0.0.12 and is no longer actively maintained, as its purpose has been superseded by native support in Python 3.8+.
Verified import paths — ran on the pinned version, not inferred.
Use pickle5's functions directly for protocol 5 on older Pythons, not the standard library's pickle.
This example demonstrates how to use `pickle5` to dump and load a Python dictionary. `pickle5` automatically uses protocol 5 by default, offering improvements over earlier pickle protocols available in older Python versions.
Breaking-change detection hasn't run for this library yet.
CVE tracking and dependency tree are planned for a later release.