absfuyu.pkg_data package
Absfuyu: Package data
Load package data
Version: 5.1.0 Date updated: 10/03/2025 (dd/mm/yyyy)
- class absfuyu.pkg_data.Pickler[source]
Bases:
BaseClass
A utility class for saving and loading data using the pickle format.
This class provides static methods for serializing Python objects to a file using the
pickle
module and deserializing them back from a file. It simplifies the process of saving and loading data to and from pickle files.
- class absfuyu.pkg_data.BasicLZMAOperation[source]
Bases:
BaseClass
A class for basic LZMA compression and decompression operations, integrated with pickle for saving and loading compressed data.
This class provides static methods to compress data using LZMA, save the compressed data to a pickle file, load compressed data from a pickle file, and decompress LZMA-compressed data.
Added in version 5.0.0
- static save_to_pickle(location: Path, data: bytes) None [source]
Compresses the given byte data using LZMA and saves the compressed data to a file using pickle serialization.
- Parameters:
location (Path) – The path to the file where the compressed data will be saved.
data (bytes) – The byte data to be compressed and saved.
Example:
>>> data = b"This is some example data to compress." >>> BasicLZMAOperation.save_to_pickle(Path("compressed_data.pkl"), data)
- class absfuyu.pkg_data.DataLoader(data: DataList)[source]
Bases:
BaseClass
A class to load package data
Added in version 5.0.0