G.A.
G.A.

Reputation: 1523

Web hooks in Python: Any particular library?

I wanted to implement web hooks in python. Both at server end and client end. Is there any particular library for implementing web hooks? Or does django or twisted python handle this?

Upvotes: 5

Views: 1280

Answers (1)

Alex Martelli
Alex Martelli

Reputation: 881635

You should probably mention that "web hooks" is a specific concept -- as explained at webhooks.org -- to avoid getting generic answers about the web, as I see you already have. It's hardly a popular or widespread concept, so the answerers' utter confusion is not surprising but easily predictable.

On your question, I know of Hookah (from the webhooks.org site) and durian (web hooks for Django). There are specific ones, such as TracWebHooks for adding web hooks to the issue tracking service Trac, but I gather you're looking for something more general.

Upvotes: 7

Related Questions