├── .github └── CODE_OF_CONDUCT.md ├── .gitignore ├── README.md └── example.py /.github/CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/python-message-dialogs/HEAD/.github/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .idea 2 | env 3 | .DS_Store 4 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/python-message-dialogs/HEAD/README.md -------------------------------------------------------------------------------- /example.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/slack-samples/python-message-dialogs/HEAD/example.py --------------------------------------------------------------------------------