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.

static save(location: Path, data: Any) None[source]

Serializes and saves the given data to a file using the pickle format.

Parameters:
  • location (Path) – The path to the file where the data will be saved.

  • data (Any) – The Python object to be serialized and saved.

static load(location: Path)[source]

Loads and deserializes data from a file that is in pickle format.

Parameters:

location (Path) – The path to the pickle file to load.

Returns:

The deserialized Python object loaded from the file.

Return type:

Any

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)
static load(data: Any) bytes[source]

Decompresses LZMA-compressed data.

Parameters:

data (Any) – The LZMA-compressed data to be decompressed.

Returns:

The decompressed data.

Return type:

bytes

static load_from_pickle(location: Path) bytes[source]

Loads LZMA-compressed data from a pickle file, decompresses it.

Parameters:

location (Path) – The path to the pickle file containing the LZMA-compressed data.

Returns:

The decompressed data.

Return type:

bytes

class absfuyu.pkg_data.DataLoader(data: DataList)[source]

Bases: BaseClass

A class to load package data

Added in version 5.0.0

load()[source]

Loads data from the specified file, handling different file formats automatically.

Returns:

The loaded data from the file.

Return type:

Any

Submodules