├── .github └── ISSUE_TEMPLATE.md ├── .gitignore ├── AUTHORS.rst ├── CONTRIBUTING.rst ├── HISTORY.md ├── LICENSE ├── MANIFEST.in ├── Makefile ├── README.md ├── images ├── botcongrats.jpg ├── createbot.jpg ├── newapp.jpg └── newbot.jpg ├── requirements_dev.txt ├── sample.py ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── models.py ├── teams_mock.py └── test_webexteamsbot.py ├── tox.ini └── webexteamsbot ├── __init__.py ├── models.py └── webexteamsbot.py /.github/ISSUE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/.github/ISSUE_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/.gitignore -------------------------------------------------------------------------------- /AUTHORS.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/AUTHORS.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /HISTORY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/HISTORY.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/Makefile -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/README.md -------------------------------------------------------------------------------- /images/botcongrats.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/images/botcongrats.jpg -------------------------------------------------------------------------------- /images/createbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/images/createbot.jpg -------------------------------------------------------------------------------- /images/newapp.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/images/newapp.jpg -------------------------------------------------------------------------------- /images/newbot.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/images/newbot.jpg -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/sample.py -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/setup.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/tests/__init__.py -------------------------------------------------------------------------------- /tests/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/tests/models.py -------------------------------------------------------------------------------- /tests/teams_mock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/tests/teams_mock.py -------------------------------------------------------------------------------- /tests/test_webexteamsbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/tests/test_webexteamsbot.py -------------------------------------------------------------------------------- /tox.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/tox.ini -------------------------------------------------------------------------------- /webexteamsbot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/webexteamsbot/__init__.py -------------------------------------------------------------------------------- /webexteamsbot/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/webexteamsbot/models.py -------------------------------------------------------------------------------- /webexteamsbot/webexteamsbot.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hpreston/webexteamsbot/HEAD/webexteamsbot/webexteamsbot.py --------------------------------------------------------------------------------