├── .editorconfig ├── .github └── workflows │ ├── black.yml │ ├── deploy.yml │ └── pythonpackage.yml ├── .gitignore ├── CHANGELOG.rst ├── CONTRIBUTING.rst ├── LICENSE ├── MANIFEST.in ├── README.rst ├── codeql-analysis.yml ├── docs ├── Makefile ├── auth.rst ├── changelog.rst ├── conf.py ├── contributing.rst ├── endpoints.rst ├── index.rst ├── make.bat └── mmDriverTokenAuthExample.py ├── pyproject.toml ├── requirements.txt ├── setup.py └── src └── mattermostdriver ├── __init__.py ├── client.py ├── driver.py ├── endpoints ├── __init__.py ├── base.py ├── bots.py ├── brand.py ├── channels.py ├── cluster.py ├── commands.py ├── compliance.py ├── data_retention.py ├── elasticsearch.py ├── emoji.py ├── files.py ├── integration_actions.py ├── ldap.py ├── oauth.py ├── opengraph.py ├── posts.py ├── preferences.py ├── reactions.py ├── roles.py ├── saml.py ├── scheme.py ├── status.py ├── system.py ├── teams.py ├── users.py └── webhooks.py ├── exceptions.py ├── version.py └── websocket.py /.editorconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/.editorconfig -------------------------------------------------------------------------------- /.github/workflows/black.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/.github/workflows/black.yml -------------------------------------------------------------------------------- /.github/workflows/deploy.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/.github/workflows/deploy.yml -------------------------------------------------------------------------------- /.github/workflows/pythonpackage.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/.github/workflows/pythonpackage.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/.gitignore -------------------------------------------------------------------------------- /CHANGELOG.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/CHANGELOG.rst -------------------------------------------------------------------------------- /CONTRIBUTING.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/CONTRIBUTING.rst -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/LICENSE -------------------------------------------------------------------------------- /MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/MANIFEST.in -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/README.rst -------------------------------------------------------------------------------- /codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/codeql-analysis.yml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/auth.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/auth.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- 1 | .. include:: ../CONTRIBUTING.rst -------------------------------------------------------------------------------- /docs/endpoints.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/endpoints.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/mmDriverTokenAuthExample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/docs/mmDriverTokenAuthExample.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/pyproject.toml -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/requirements.txt -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/setup.py -------------------------------------------------------------------------------- /src/mattermostdriver/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/__init__.py -------------------------------------------------------------------------------- /src/mattermostdriver/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/client.py -------------------------------------------------------------------------------- /src/mattermostdriver/driver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/driver.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/base.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/bots.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/bots.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/brand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/brand.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/channels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/channels.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/cluster.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/cluster.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/commands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/commands.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/compliance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/compliance.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/data_retention.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/data_retention.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/elasticsearch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/elasticsearch.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/emoji.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/emoji.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/files.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/integration_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/integration_actions.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/ldap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/ldap.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/oauth.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/oauth.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/opengraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/opengraph.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/posts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/posts.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/preferences.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/preferences.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/reactions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/reactions.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/roles.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/saml.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/saml.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/scheme.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/scheme.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/status.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/status.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/system.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/system.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/teams.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/users.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/users.py -------------------------------------------------------------------------------- /src/mattermostdriver/endpoints/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/endpoints/webhooks.py -------------------------------------------------------------------------------- /src/mattermostdriver/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/exceptions.py -------------------------------------------------------------------------------- /src/mattermostdriver/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/version.py -------------------------------------------------------------------------------- /src/mattermostdriver/websocket.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Vaelor/python-mattermost-driver/HEAD/src/mattermostdriver/websocket.py --------------------------------------------------------------------------------