Skip to main content

A framework for caching data locally. It features explicit caching with priority support for type hints.

Project description

typed-cache

typed-cache is a lightweight framework designed for caching data locally, supporting explicit caching with a focus on Python's type hints. It simplifies the process of persisting data to disk by allowing easy integration into custom data classes, with automatic loading and manual saving of data.

Features

  • Type Hinting: Enhances code clarity and safety through the use of Python's type hints.
  • Automatic Caching: Automatically loads cached data on initialization if the file exists.
  • Manual Data Saving: Allows for explicit control over when data is saved via the save() method.
  • File Integrity Checks: Ensures that cache files use the correct .pickle extension and manages errors properly.
  • Python 3.6+ Compatibility: Works with Python 3.6 and above, making it accessible for most environments.

Requirements

  • Python 3.6+
  • Standard libraries: pickle, pathlib

Installation

You can clone the repository or download the typed_cache.py file and include it in your project.

Usage

Here's a simple script demonstrating how to use typed-cache to persist and retrieve data in a custom class:

from dataclasses import dataclass
from pathlib import Path

from typed_cache import TypedCache


@dataclass
class Settings(TypedCache):
    volume: int = 50
    brightness: float = 0.8
    username: str = "user"


# Specify cache file path
cache_path = Path.home() / 'settings_cache.pickle'

# Initialize settings, modify, and save
settings = Settings(path=cache_path)
settings.volume = 70
settings.save()  # Saves the modified settings to 'settings_cache.pickle'

# On subsequent runs, the previous settings will be automatically loaded
loaded_settings = Settings(path=cache_path)
print(f"Loaded volume: {loaded_settings.volume}")  # Output: Loaded volume: 70

Key Functions:

  1. Initialization: When you instantiate your class with a cache file path, typed-cache will automatically attempt to load data from that file.
  2. Saving: Call save() on your object to persist the current state to the cache file.
  3. Loading: Upon reinitialization with the same cache path, previously saved data will be loaded automatically.

Exception Handling

  • ValueError: Raised if the cache file does not have a .pickle extension.
  • FileNotFoundError: Raised if trying to load a cache file that does not exist.

Contributing

Contributions are welcome! Feel free to fork the repository, make improvements, and submit a pull request.

License

This project is licensed under the MIT License.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

typed_cache-0.2.1.tar.gz (4.3 kB view details)

Uploaded Source

Built Distribution

typed_cache-0.2.1-py3-none-any.whl (4.9 kB view details)

Uploaded Python 3

File details

Details for the file typed_cache-0.2.1.tar.gz.

File metadata

  • Download URL: typed_cache-0.2.1.tar.gz
  • Upload date:
  • Size: 4.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.11 Windows/10

File hashes

Hashes for typed_cache-0.2.1.tar.gz
Algorithm Hash digest
SHA256 200112d27262566f990b950eaf5c48f4425117d65d93ec2f97683433241b0b4f
MD5 bf5ded6f14fc7ed36f610d07958c8b82
BLAKE2b-256 b8575f2124aedc257a238bb3d9706d13f2d6c83cc1cabdd154d804d9852fad1d

See more details on using hashes here.

File details

Details for the file typed_cache-0.2.1-py3-none-any.whl.

File metadata

  • Download URL: typed_cache-0.2.1-py3-none-any.whl
  • Upload date:
  • Size: 4.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.8.3 CPython/3.10.11 Windows/10

File hashes

Hashes for typed_cache-0.2.1-py3-none-any.whl
Algorithm Hash digest
SHA256 0167e956905bb0f953636b54f4f5ef526ebfa5fbbeab467c0d034ba5c27986e6
MD5 e22dba7b69a023dcb37233de037397a9
BLAKE2b-256 32e4983e1ade0fc42e4827a2fd9b5ad28ea9a0108ae518708bee14596ccf605d

See more details on using hashes here.

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page