Skip to main content

plugin and hook calling mechanisms for python

Reason this release was yanked:

Caused breakage due to new style hook wrappers. Team will reevaluate.

Project description

pypi conda-forge versions github-actions Join the chat at https://gitter.im/pytest-dev/pluggy black Code coverage Status

This is the core framework used by the pytest, tox, and devpi projects.

Please read the docs to learn more!

A definitive example

import pluggy

hookspec = pluggy.HookspecMarker("myproject")
hookimpl = pluggy.HookimplMarker("myproject")


class MySpec:
    """A hook specification namespace."""

    @hookspec
    def myhook(self, arg1, arg2):
        """My special little hook that you can customize."""


class Plugin_1:
    """A hook implementation namespace."""

    @hookimpl
    def myhook(self, arg1, arg2):
        print("inside Plugin_1.myhook()")
        return arg1 + arg2


class Plugin_2:
    """A 2nd hook implementation namespace."""

    @hookimpl
    def myhook(self, arg1, arg2):
        print("inside Plugin_2.myhook()")
        return arg1 - arg2


# create a manager and add the spec
pm = pluggy.PluginManager("myproject")
pm.add_hookspecs(MySpec)

# register plugins
pm.register(Plugin_1())
pm.register(Plugin_2())

# call our ``myhook`` hook
results = pm.hook.myhook(arg1=1, arg2=2)
print(results)

Running this directly gets us:

$ python docs/examples/toy-example.py
inside Plugin_2.myhook()
inside Plugin_1.myhook()
[-1, 3]

Download files

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

Source Distribution

pluggy-1.1.0.tar.gz (60.0 kB view details)

Uploaded Source

Built Distribution

pluggy-1.1.0-py3-none-any.whl (17.6 kB view details)

Uploaded Python 3

File details

Details for the file pluggy-1.1.0.tar.gz.

File metadata

  • Download URL: pluggy-1.1.0.tar.gz
  • Upload date:
  • Size: 60.0 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pluggy-1.1.0.tar.gz
Algorithm Hash digest
SHA256 c500b592c5512df35622e4faf2135aa0b7e989c7d31344194b4afb9d5e47b1bf
MD5 2073d2ab94b41629203b9280e5686b39
BLAKE2b-256 02aa218b70027ff08035df09ac7ea7f230437a5bde09a4b76a1d72a60bf353ff

See more details on using hashes here.

File details

Details for the file pluggy-1.1.0-py3-none-any.whl.

File metadata

  • Download URL: pluggy-1.1.0-py3-none-any.whl
  • Upload date:
  • Size: 17.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.11.4

File hashes

Hashes for pluggy-1.1.0-py3-none-any.whl
Algorithm Hash digest
SHA256 d81d19a3a88d82ed06998353ce5d5c02587ef07ee2d808ae63904ab0ccef0087
MD5 beea129599f0a816f98d08586e6ad3a4
BLAKE2b-256 5d8e293ae6e231bd3e2d56cf452b5784732d0cb3da1422f39b7f1fbb5a346873

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page