Skip to main content

Advisory-only setattr hooks with veto support

Project description

Reaktome

Reaktome is a CPython extension that installs advisory hooks on Python’s built-in containers (list, dict, set).
It allows you to observe and react to mutations without subclassing or replacing types.


Features

  • Patch individual instances of built-in containers.
  • Hook into mutations (append, pop, __setitem__, etc.).
  • Hooks are called after the mutation (advisory only).
  • Works per-instance via an internal side-table.

Example

import _reaktome

def on_additem(self, key, old, new):
    print(f"{self} added {new}")

lst = []
_reaktome.patch_list(lst, {"__reaktome_additem__": on_additem})

lst.append(42)
# Output: [] added 42

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

reaktome-0.1.9.tar.gz (19.6 kB view details)

Uploaded Source

File details

Details for the file reaktome-0.1.9.tar.gz.

File metadata

  • Download URL: reaktome-0.1.9.tar.gz
  • Upload date:
  • Size: 19.6 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.2.0 CPython/3.12.11

File hashes

Hashes for reaktome-0.1.9.tar.gz
Algorithm Hash digest
SHA256 5c71d6d9193fb978dd36f52b27967232a9121bfb788da218dc317bc50e6c409c
MD5 7b5fcff3f0314150f6ef39180b2bd892
BLAKE2b-256 c1f58d1cfe8933fe79054e00ce9e80ec1ec3ad9a917165971b06218f1f8cde87

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