mirror of
https://github.com/chatmail/core.git
synced 2026-04-06 07:32:12 +03:00
28 lines
566 B
ReStructuredText
28 lines
566 B
ReStructuredText
|
|
Implementing Plugin Hooks
|
|
==========================
|
|
|
|
The Delta Chat Python bindings use `pluggy <https://pluggy.readthedocs.io>`_
|
|
for managing global and per-account plugin registration, and performing
|
|
hook calls.
|
|
|
|
|
|
.. autoclass:: deltachat.register_global_plugin
|
|
|
|
.. autoclass:: deltachat.account.Account.add_account_plugin
|
|
|
|
|
|
Per-Account Hook specifications
|
|
-------------------------------
|
|
|
|
.. autoclass:: deltachat.hookspec.PerAccount
|
|
:members:
|
|
|
|
|
|
Global Hook specifications
|
|
--------------------------
|
|
|
|
.. autoclass:: deltachat.hookspec.Global
|
|
:members:
|
|
|