├── .flake8 ├── .gitignore ├── .travis.yml ├── LICENSE ├── Makefile ├── README.md ├── README_ZH.md ├── setup.cfg ├── setup.py ├── tests ├── config.py └── webhookdata │ ├── github.json │ ├── gitlab.json │ ├── gitosc.json │ └── gogs.json └── webhookit ├── __init__.py ├── app.py ├── cli.py ├── parser.py ├── temp.py └── utils.py /.flake8: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/.flake8 -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/.gitignore -------------------------------------------------------------------------------- /.travis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/.travis.yml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/README.md -------------------------------------------------------------------------------- /README_ZH.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/README_ZH.md -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- 1 | [metadata] 2 | description-file = README.md 3 | 4 | [bdist_wheel] 5 | universal = 1 6 | -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/setup.py -------------------------------------------------------------------------------- /tests/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/tests/config.py -------------------------------------------------------------------------------- /tests/webhookdata/github.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/tests/webhookdata/github.json -------------------------------------------------------------------------------- /tests/webhookdata/gitlab.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/tests/webhookdata/gitlab.json -------------------------------------------------------------------------------- /tests/webhookdata/gitosc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/tests/webhookdata/gitosc.json -------------------------------------------------------------------------------- /tests/webhookdata/gogs.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/tests/webhookdata/gogs.json -------------------------------------------------------------------------------- /webhookit/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/__init__.py -------------------------------------------------------------------------------- /webhookit/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/app.py -------------------------------------------------------------------------------- /webhookit/cli.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/cli.py -------------------------------------------------------------------------------- /webhookit/parser.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/parser.py -------------------------------------------------------------------------------- /webhookit/temp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/temp.py -------------------------------------------------------------------------------- /webhookit/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hustcc/webhookit/HEAD/webhookit/utils.py --------------------------------------------------------------------------------