AttributeRouter

An Attribute Router/Chainer For Any Class


Keywords
python, python3
License
MIT
Install
pip install AttributeRouter==1.0.0

Documentation

Attribute Router

Travis (.org) PyPI - Downloads PyPI - Python Version GitHub release GitHub

Attribute Router is a library that chains calls of attributes of class and if regex matches it returns method.

Quick Start

import re

from attribute_router import Router


class Printer(Router):
    def __init__(self):
        super().__init__(
            routes={
                re.compile(" (.*) PRINT"): self.print_match
            },
            join_char=" "
        )

    def print_match(self, prefix, _match):
        print(prefix, _match.group(1))

Printer().hello.world('!').again.PRINT("Hello and")

So to define routes we use compiled regex and the method itself also don't forget to inherit from attribute_router.Router


Installation

Library is on PyPi so just run

pip install AttributeRouter