├── .github └── workflows │ ├── add-good-first-issue-labels.yml │ ├── automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml │ ├── automerge-for-humans-merging.yml │ ├── automerge-for-humans-remove-ready-to-merge-label-on-edit.yml │ ├── automerge-orphans.yml │ ├── automerge.yml │ ├── autoupdate.yml │ ├── bounty-program-commands.yml │ ├── bump.yml │ ├── help-command.yml │ ├── if-nodejs-pr-testing.yml │ ├── if-nodejs-release.yml │ ├── if-nodejs-version-bump.yml │ ├── issues-prs-notifications.yml │ ├── lint-pr-title.yml │ ├── notify-tsc-members-mention.yml │ ├── please-take-a-look-command.yml │ ├── release-announcements.yml │ ├── scripts │ ├── README.md │ └── mailchimp │ │ ├── htmlContent.js │ │ ├── index.js │ │ ├── package-lock.json │ │ └── package.json │ ├── stale-issues-prs.yml │ ├── transfer-issue.yml │ ├── update-maintainers-trigger.yaml │ ├── update-pr.yml │ └── welcome-first-time-contrib.yml ├── .gitignore ├── CODEOWNERS ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTICE ├── README.md ├── filters └── all.js ├── hooks └── post-process.js ├── lib └── templateUtil.js ├── package.json ├── partials └── model-class ├── samples ├── README.md ├── config-template.ini ├── entity.py ├── main.py ├── messaging.py ├── mosquitto.conf ├── order.py ├── sensorReading.py ├── temperature.yaml └── test.py └── template ├── $$schema$$.py ├── README.md ├── config-template.ini ├── entity.py ├── main.py ├── messaging.py └── payload.py /.github/workflows/add-good-first-issue-labels.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/add-good-first-issue-labels.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/automerge-for-humans-add-ready-to-merge-or-do-not-merge-label.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-merging.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/automerge-for-humans-merging.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/automerge-for-humans-remove-ready-to-merge-label-on-edit.yml -------------------------------------------------------------------------------- /.github/workflows/automerge-orphans.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/automerge-orphans.yml -------------------------------------------------------------------------------- /.github/workflows/automerge.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/automerge.yml -------------------------------------------------------------------------------- /.github/workflows/autoupdate.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/autoupdate.yml -------------------------------------------------------------------------------- /.github/workflows/bounty-program-commands.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/bounty-program-commands.yml -------------------------------------------------------------------------------- /.github/workflows/bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/bump.yml -------------------------------------------------------------------------------- /.github/workflows/help-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/help-command.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-pr-testing.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/if-nodejs-pr-testing.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/if-nodejs-release.yml -------------------------------------------------------------------------------- /.github/workflows/if-nodejs-version-bump.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/if-nodejs-version-bump.yml -------------------------------------------------------------------------------- /.github/workflows/issues-prs-notifications.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/issues-prs-notifications.yml -------------------------------------------------------------------------------- /.github/workflows/lint-pr-title.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/lint-pr-title.yml -------------------------------------------------------------------------------- /.github/workflows/notify-tsc-members-mention.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/notify-tsc-members-mention.yml -------------------------------------------------------------------------------- /.github/workflows/please-take-a-look-command.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/please-take-a-look-command.yml -------------------------------------------------------------------------------- /.github/workflows/release-announcements.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/release-announcements.yml -------------------------------------------------------------------------------- /.github/workflows/scripts/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/scripts/README.md -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/htmlContent.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/scripts/mailchimp/htmlContent.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/scripts/mailchimp/index.js -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package-lock.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/scripts/mailchimp/package-lock.json -------------------------------------------------------------------------------- /.github/workflows/scripts/mailchimp/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/scripts/mailchimp/package.json -------------------------------------------------------------------------------- /.github/workflows/stale-issues-prs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/stale-issues-prs.yml -------------------------------------------------------------------------------- /.github/workflows/transfer-issue.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/transfer-issue.yml -------------------------------------------------------------------------------- /.github/workflows/update-maintainers-trigger.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/update-maintainers-trigger.yaml -------------------------------------------------------------------------------- /.github/workflows/update-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/update-pr.yml -------------------------------------------------------------------------------- /.github/workflows/welcome-first-time-contrib.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.github/workflows/welcome-first-time-contrib.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/.gitignore -------------------------------------------------------------------------------- /CODEOWNERS: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/CODEOWNERS -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/LICENSE -------------------------------------------------------------------------------- /NOTICE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/NOTICE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/README.md -------------------------------------------------------------------------------- /filters/all.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/filters/all.js -------------------------------------------------------------------------------- /hooks/post-process.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/hooks/post-process.js -------------------------------------------------------------------------------- /lib/templateUtil.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/lib/templateUtil.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/package.json -------------------------------------------------------------------------------- /partials/model-class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/partials/model-class -------------------------------------------------------------------------------- /samples/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/README.md -------------------------------------------------------------------------------- /samples/config-template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/config-template.ini -------------------------------------------------------------------------------- /samples/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/entity.py -------------------------------------------------------------------------------- /samples/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/main.py -------------------------------------------------------------------------------- /samples/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/messaging.py -------------------------------------------------------------------------------- /samples/mosquitto.conf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/mosquitto.conf -------------------------------------------------------------------------------- /samples/order.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/order.py -------------------------------------------------------------------------------- /samples/sensorReading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/sensorReading.py -------------------------------------------------------------------------------- /samples/temperature.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/temperature.yaml -------------------------------------------------------------------------------- /samples/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/samples/test.py -------------------------------------------------------------------------------- /template/$$schema$$.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/$$schema$$.py -------------------------------------------------------------------------------- /template/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/README.md -------------------------------------------------------------------------------- /template/config-template.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/config-template.ini -------------------------------------------------------------------------------- /template/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/entity.py -------------------------------------------------------------------------------- /template/main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/main.py -------------------------------------------------------------------------------- /template/messaging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/messaging.py -------------------------------------------------------------------------------- /template/payload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/asyncapi/python-paho-template/HEAD/template/payload.py --------------------------------------------------------------------------------