Skip to main content

Syntactic cached property generator for classes.

Project description

Syntactic Cache

Tests codecov PyPI version

Syntactic Cache is a Python library that allows you to automatically create cached properties for methods in your classes, using the syntax of the methods to determine which methods should be cached.

I.e, methods with a given prefix will have a cached property created for them using the method name without the prefix, this allows for easy refactoring of existing code adding cached properties of functions 'for free'. The cache is a simple memory cache linked to each instance of the class.

Installation

You can install Syntactic Cache using pip.

pip install syntactic-cache

Usage

Here's a simple example of how to use the @make_cached_properties decorator.

from syntactic_cache import do_not_make_cached_property, make_cached_properties

@make_cached_properties('get', 'is')
class MyClass:
    def __init__(self, value):
        self.value = value

    def get_power(self, exponent):
        return self.value ** exponent

    def get_square(self):
        return self.get_power(2)

    @do_not_make_cached_property
    def get_cube(self):
        return self.get_power(3)

    def is_even(self):
        return self.value % 2 == 0

instance = MyClass(3)

print(instance.get_square())  # 9, does not use the cache,
print(instance.get_cube())    # 27, does not use the cache.

print(instance.square)  # 9, sets and uses the cache.
print(instance.cube)    # Raises AttributeError, as making cached properties is disabled.
print(instance.power)  # Raises AttributeError, as will not make cached properties for methods with arguments.

print(instance.is_even())  # False, does not use the cache.
print(instance.even)  # False, sets and uses the cache.

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

syntactic_cache-1.1.0.tar.gz (4.7 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

syntactic_cache-1.1.0-py3-none-any.whl (4.4 kB view details)

Uploaded Python 3

File details

Details for the file syntactic_cache-1.1.0.tar.gz.

File metadata

  • Download URL: syntactic_cache-1.1.0.tar.gz
  • Upload date:
  • Size: 4.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: uv/0.7.19

File hashes

Hashes for syntactic_cache-1.1.0.tar.gz
Algorithm Hash digest
SHA256 5f51f5e8c275b14e7e957c6f782cbbd3bea262ef55200c73883b81dc2463d418
MD5 32c464e6766c15fbd8b77703ef7440a1
BLAKE2b-256 2737a89ecdb564b9f721ebdcaaddd45faf788c51bbd301c5c1d2e42187d38b59

See more details on using hashes here.

File details

Details for the file syntactic_cache-1.1.0-py3-none-any.whl.

File metadata

File hashes

Hashes for syntactic_cache-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 7aeee6b3cf1a104d7faf5ba3fc001ec9efd03f10d96bc1500d3b64fe33597e87
MD5 aa842c5dc66c7b783e16e0ee5e1d7d32
BLAKE2b-256 72e19ad5665d1ce1a9db2558c8a732dad26cea0ecfa2f02e821e8b33857067dc

See more details on using hashes here.

Supported by

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