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 the get_ 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 Syntactic Cache, curently the library support 'get_' and 'is_' prefixes for methods.

from syntactic_cache import do_not_make_cached_property, make_cached_properties

@make_cached_properties
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.0.1.tar.gz (4.6 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.0.1-py3-none-any.whl (4.3 kB view details)

Uploaded Python 3

File details

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

File metadata

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

File hashes

Hashes for syntactic_cache-1.0.1.tar.gz
Algorithm Hash digest
SHA256 024b10f527f8a458d33a30ddd01621360829004171c35ea9e5e8d90ba63697e5
MD5 04669f03d3b03712ed9dc10a2f771628
BLAKE2b-256 2c69a36708b3af9c36e0801bd2bd82ce6481785db624402100d213683b0358a0

See more details on using hashes here.

File details

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

File metadata

File hashes

Hashes for syntactic_cache-1.0.1-py3-none-any.whl
Algorithm Hash digest
SHA256 9ea7d6e7439b598d3b48bce2baaed3cea10fd73df212b78518f21e3936dd7ee7
MD5 20ff8b06476646447fec853954977004
BLAKE2b-256 2fdea4be34c3249f061900248422e108b16adc46ff033628db15bfefa450cbe2

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