Skip to main content

Yet another python hook system

Project description

yaphs

pipeline status coverage report

Yet another python hook system for python 2.7/3.x

Usage

Basic usage

Import yaphs

from yaphs import Hook

Register foo as a hook-compatible function

@Hook
def foo(*args):
    print(args)

Register bar as a hook to be executed before calling foo

@foo.before(*args):
def bar(*args):
    print('before foo, args: ' + str(args))

When you call foo, bar is called before

foo(1, 2)

Expected output:

before foo, args: (1, 2)
(1, 2)

Class usage (python 3.x only)

You can use yaphs hooks inside classes:

class MyClass:
    @Hook
    def foo(self, *args)

When you register hooks, you just have to know that the first argument will be the object

c = MyClass()

@c.foo.after:
def bar(o, *args):
    print('after foo')
    print('object: ' + str(o))
    print('args: ' + str(args))

Project details


Release history Release notifications | RSS feed

This version

1.0

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

yaphs-1.0.tar.gz (1.9 kB view hashes)

Uploaded Source

Built Distribution

yaphs-1.0-py3-none-any.whl (2.8 kB view hashes)

Uploaded 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