├── .circleci └── circle_ciconfig.md ├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md └── workflows │ └── python-package.yml ├── .gitignore ├── .pre-commit-config.yaml ├── LICENSE ├── README.md ├── pyproject.toml ├── src └── pymsteams │ └── __init__.py ├── tests ├── desk_toys_1.jpg ├── desk_toys_2.jpg └── test_webhook.py └── uv.lock /.circleci/circle_ciconfig.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.circleci/circle_ciconfig.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/workflows/python-package.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.github/workflows/python-package.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/README.md -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/pymsteams/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/src/pymsteams/__init__.py -------------------------------------------------------------------------------- /tests/desk_toys_1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/tests/desk_toys_1.jpg -------------------------------------------------------------------------------- /tests/desk_toys_2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/tests/desk_toys_2.jpg -------------------------------------------------------------------------------- /tests/test_webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/tests/test_webhook.py -------------------------------------------------------------------------------- /uv.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/rveachkc/pymsteams/HEAD/uv.lock --------------------------------------------------------------------------------