Skip to main content

Memoizer for classes

Project description

Memoizer

API

A Memoizer can be used as a factory for creating objects of a certain class. It exposes a constructor and 2 methods

  • memoizer = Memoizer(SomeClass)
  • memoizer.get(*args, **kwargs)
    • If memoizer has never seen the given arguments, it creates SomeClass(*args, **kwargs) and returns it.
    • If memoizer has seen the given arguments before, it returns the same instance that it returned the last time.
  • memoizer.forget(*args, **kwargs)
    • Makes memoizer forget that is has seen the given arguments.

Usage

The original application was for a MeasurementQueue class that processes incoming sensor data from many sensors, where the sensor ID's were not known ahead of time:

queue_manager = Memoizer(MeasurementQueue)

for sensor_id, data in event_stream():
    queue = queue_manager.get(sensor_id)
    queue.push(data)

When the first measurement comes in for a given sensor_id, a new MeasurementQueue will be created and returned for that sensor. On subsequent events with the same sensor ID, the same MeasurementQueue instance will be used to process the data.

Installation

pip install classmemo

The only dependencies are Python 3.6 and the frozendict package.

Contributing

  • Ensure the tests pass: pytest .
  • Format the code with black . -t py36

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

classmemo-1.0.2.tar.gz (2.0 kB view hashes)

Uploaded Source

Built Distribution

classmemo-1.0.2-py2.py3-none-any.whl (3.5 kB view hashes)

Uploaded Python 2 Python 3

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