10000 GitHub - cyliu0/python-jira-webhook: A mini framework for writing JIRA webhooks in Python. Inspired by https://github.com/bloomberg/python-github-webhook
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

cyliu0/python-jira-webhook

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 

Repository files navigation

python-jira-webhook

A mini framework for writing JIRA webhooks in Python. Inspired by https://github.com/bloomberg/python-github-webhook

Usage

from flask import Flask

from jira_webhook import JiraWebhook

app = Flask(__name__)
jw = JiraWebhook(app)


@app.route("/")
def webhook_service():
    return "This is a JIRA webhook service"


@jw.hook()
def on_close(data):
    print("Got data: {0}", data)


if __name__ == "__main__":
    app.run(host="0.0.0.0", port=80)

About

A mini framework for writing JIRA webhooks in Python. Inspired by https://github.com/bloomberg/python-github-webhook

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

0