Skip to main content

TypeDispatch is a Python utility for registering and dispatching functions based on object types and predicates, supporting inheritance through method resolution order (MRO).

Project description

typedispatch

typedispatch is a Python library that provides a flexible and powerful mechanism for registering functions based on type resolution. It allows you to associate types with functions and dynamically look up functions based on the type of an object, including handling inheritance hierarchies and predicate-based dispatch.

Features

  • Register functions for specific types
  • Automatic type resolution based on inheritance
  • Decorator syntax for easy registration
  • Predicate-based function dispatch
  • Supports multiple inheritance

Installation

pip install typedispatch

Usage

Basic Registration

You can register functions directly with the register method:

from typedispatch import TypeDispatch, TypeDispatchError

typedispatch = TypeDispatch()
typedispatch.register(int, lambda x: f"Processing integer: {x}")

print(typedispatch.lookup(10))  # Output: Processing integer: 10

Using the Decorator

The library provides a convenient decorator for registering functions with specific types:

from typedispatch import TypeDispatch

typedispatch = TypeDispatch()

@typedispatch.register_decorator(int)
def handle_integer(x):
    return f"Handling integer: {x}"

@typedispatch.register_decorator(str)
def handle_string(x):
    return f"Handling string: {x}"

print(typedispatch.lookup(42))        # Output: Handling integer: 42
print(typedispatch.lookup("hello"))   # Output: Handling string: hello

Inheritance-based Dispatch

It automatically handles inheritance hierarchies:

typedispatch.register(list, lambda x: f"List of length {len(x)}")

class MyList(list):
    pass

print(typedispatch.lookup(MyList([1, 2, 3])))  # Output: List of length 3

Predicate-based Dispatch

You can use predicates to further refine the dispatch logic:

@typedispatch.register_decorator(int, a=True)
def handle_a_ints(x):
    return f"A integer {x}"

@typedispatch.register_decorator(int, b=True)
def handle_b_ints(x):
    return f"B integer {x}"

class MyInt(int):
    pass

@typedispatch.register_decorator(MyInt, a=True)
def handle_a_myints(x):
    return f"A MyInt {x}"

print(typedispatch.lookup(2, a=True))          # Output: A integer 2
print(typedispatch.lookup(2, b=True))          # Output: B integer 2
print(typedispatch.lookup(MyInt(2), a=True))   # Output: A MyInt 2
print(typedispatch.lookup(MyInt(2), b=True))   # Output: B integer 2

Error Handling

When no matching function is found, a TypeDispatchError is raised:

try:
    typedispatch.lookup(3.14)  # Assuming no function registered for float
except TypeDispatchError as e:
    print(f"Error: {e}")  # Output: Error: No function found for type <class 'float'> or its superclasses.

API Reference

TypeDispatch

  • register(obj_type, func, **predicate): Register a function for a specific type with optional predicates.
  • register_decorator(obj_type, **predicate): Decorator for registering functions.
  • lookup(obj, **predicate): Find and execute the function associated with the object's type and predicates.
  • is_registered(obj_type): Check if a type or any of its superclasses is registered.

Exceptions

  • TypeDispatchError: Raised when no matching function is found or when an invalid type is registered.

Contributing

Contributions are welcome! Please feel free to 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

typedispatch-1.0.0.tar.gz (5.1 kB view details)

Uploaded Source

Built Distribution

typedispatch-1.0.0-py3-none-any.whl (5.9 kB view details)

Uploaded Python 3

File details

Details for the file typedispatch-1.0.0.tar.gz.

File metadata

  • Download URL: typedispatch-1.0.0.tar.gz
  • Upload date:
  • Size: 5.1 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.9.20

File hashes

Hashes for typedispatch-1.0.0.tar.gz
Algorithm Hash digest
SHA256 9611e4b1b91f5bfc8bbdf4b2499387444c832bc1c9207afdfd7c26bc58461a74
MD5 c38c62093ccf3a832fcecaef6af4414f
BLAKE2b-256 44fc658a71a46e03e7809de60f8fc99de5e12671b7abb914e9495caf1527ed65

See more details on using hashes here.

File details

Details for the file typedispatch-1.0.0-py3-none-any.whl.

File metadata

File hashes

Hashes for typedispatch-1.0.0-py3-none-any.whl
Algorithm Hash digest
SHA256 720d36c47cb62c6d8c35422e4697ce1a4cb44a6ab162168ce293e1ca9ec400ba
MD5 897e36a4801f0e31ef7078f70ea82ded
BLAKE2b-256 a71cb5f289800c92e229f66e6dbcd31344ec3f2e46513ca5c22e316e416a8155

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