This is a simple python package to create a webhook server that can be used to handle Notion webhooks and trigger actions.
pip install secnex-notion-webhook-server
from notion_webhook import WebhookServer, ServerHandler, NotionWebhookHandler
server = WebhookServer()
server.run(ServerHandler())
handler = NotionWebhookHandler(lambda data: print(data))
server.webhook(handler)
This project is licensed under the MIT License. See the LICENSE file for details.
Contributions are welcome! Please open an issue or submit a pull request.
For questions or support, please contact us at support@secnex.io.