├── .github └── workflows │ ├── build-and-test.yml │ ├── docs.yml │ └── release.yml ├── .gitignore ├── .vscode ├── extensions.json └── settings.json ├── LICENSE ├── Makefile ├── README.rst ├── docs ├── Makefile ├── code_of_conduct.rst ├── conf.py ├── contributing.rst ├── images │ ├── cards_sample.png │ └── personal_access_token.png ├── index.rst ├── installation.rst ├── make.bat ├── requirements.txt └── user │ ├── api.rst │ ├── api_structure_table.rst │ ├── cards.rst │ ├── intro.rst │ ├── migrate.rst │ └── quickstart.rst ├── examples ├── bot-example-flask.py ├── bot-example-webpy.py ├── bot-with-card-example-flask.py ├── local_file_upload.py ├── ngrokwebhook.py ├── oauth-flask-ngrok.py ├── people.py ├── pyramidWebexTeamsBot │ ├── README.rst │ ├── pyramidWebexTeamsBot.ini │ ├── pyramidWebexTeamsBot │ │ ├── __init__.py │ │ └── views.py │ └── setup.py └── simple.py ├── generator ├── exceptions.py ├── generate.py ├── models │ ├── meeting_invitees.yaml │ ├── meeting_registrants.yaml │ ├── meeting_templates.yaml │ └── meetings.yaml ├── requirements.txt ├── templates │ ├── api.py │ └── mixins.py └── utils.py ├── pyproject.toml ├── src └── webexpythonsdk │ ├── __init__.py │ ├── _metadata.py │ ├── api │ ├── __init__.py │ ├── access_tokens.py │ ├── admin_audit_events.py │ ├── attachment_actions.py │ ├── events.py │ ├── guest_issuer.py │ ├── licenses.py │ ├── meeting_invitees.py │ ├── meeting_registrants.py │ ├── meeting_templates.py │ ├── meetings.py │ ├── memberships.py │ ├── messages.py │ ├── organizations.py │ ├── people.py │ ├── recordings.py │ ├── roles.py │ ├── room_tabs.py │ ├── rooms.py │ ├── team_memberships.py │ ├── teams.py │ └── webhooks.py │ ├── config.py │ ├── environment.py │ ├── exceptions.py │ ├── generator_containers.py │ ├── models │ ├── __init__.py │ ├── cards │ │ ├── __init__.py │ │ ├── actions.py │ │ ├── adaptive_card_component.py │ │ ├── card_elements.py │ │ ├── cards.py │ │ ├── containers.py │ │ ├── inputs.py │ │ ├── options.py │ │ ├── types.py │ │ └── utils.py │ ├── dictionary.py │ ├── immutable.py │ ├── mixins │ │ ├── __init__.py │ │ ├── access_token.py │ │ ├── admin_audit_event.py │ │ ├── attachment_action.py │ │ ├── event.py │ │ ├── guest_issuer_token.py │ │ ├── license.py │ │ ├── meeting_invitees.py │ │ ├── meeting_registrants.py │ │ ├── meeting_templates.py │ │ ├── meetings.py │ │ ├── membership.py │ │ ├── message.py │ │ ├── organization.py │ │ ├── person.py │ │ ├── recording.py │ │ ├── role.py │ │ ├── room.py │ │ ├── room_meeting_info.py │ │ ├── room_tab.py │ │ ├── team.py │ │ ├── team_membership.py │ │ ├── webhook.py │ │ └── webhook_event.py │ └── simple.py │ ├── response_codes.py │ ├── restsession.py │ └── utils.py └── tests ├── __init__.py ├── api ├── __init__.py ├── adaptive_card.json ├── attachment_actions_card.json ├── test_admin_audit_events.py ├── test_attachment_actions.py ├── test_events.py ├── test_guest_issuer.py ├── test_licenses.py ├── test_meeting_registrants.py ├── test_meetings.py ├── test_memberships.py ├── test_messages.py ├── test_organizations.py ├── test_people.py ├── test_recordings.py ├── test_roles.py ├── test_room_tabs.py ├── test_rooms.py ├── test_teammemberships.py └── test_teams.py ├── conftest.py ├── environment.py ├── test_restsession.py ├── test_webexpythonsdk.py └── utils.py /.github/workflows/build-and-test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.github/workflows/build-and-test.yml -------------------------------------------------------------------------------- /.github/workflows/docs.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.github/workflows/docs.yml -------------------------------------------------------------------------------- /.github/workflows/release.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.github/workflows/release.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/extensions.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.vscode/extensions.json -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/LICENSE -------------------------------------------------------------------------------- /Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/Makefile -------------------------------------------------------------------------------- /README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/README.rst -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/code_of_conduct.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/code_of_conduct.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/contributing.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/contributing.rst -------------------------------------------------------------------------------- /docs/images/cards_sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/images/cards_sample.png -------------------------------------------------------------------------------- /docs/images/personal_access_token.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/images/personal_access_token.png -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | sphinx_rtd_theme -------------------------------------------------------------------------------- /docs/user/api.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/api.rst -------------------------------------------------------------------------------- /docs/user/api_structure_table.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/api_structure_table.rst -------------------------------------------------------------------------------- /docs/user/cards.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/cards.rst -------------------------------------------------------------------------------- /docs/user/intro.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/intro.rst -------------------------------------------------------------------------------- /docs/user/migrate.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/migrate.rst -------------------------------------------------------------------------------- /docs/user/quickstart.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/docs/user/quickstart.rst -------------------------------------------------------------------------------- /examples/bot-example-flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/bot-example-flask.py -------------------------------------------------------------------------------- /examples/bot-example-webpy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/bot-example-webpy.py -------------------------------------------------------------------------------- /examples/bot-with-card-example-flask.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/bot-with-card-example-flask.py -------------------------------------------------------------------------------- /examples/local_file_upload.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/local_file_upload.py -------------------------------------------------------------------------------- /examples/ngrokwebhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/ngrokwebhook.py -------------------------------------------------------------------------------- /examples/oauth-flask-ngrok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/oauth-flask-ngrok.py -------------------------------------------------------------------------------- /examples/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/people.py -------------------------------------------------------------------------------- /examples/pyramidWebexTeamsBot/README.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/pyramidWebexTeamsBot/README.rst -------------------------------------------------------------------------------- /examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot.ini -------------------------------------------------------------------------------- /examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot/__init__.py -------------------------------------------------------------------------------- /examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/pyramidWebexTeamsBot/pyramidWebexTeamsBot/views.py -------------------------------------------------------------------------------- /examples/pyramidWebexTeamsBot/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/pyramidWebexTeamsBot/setup.py -------------------------------------------------------------------------------- /examples/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/examples/simple.py -------------------------------------------------------------------------------- /generator/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/exceptions.py -------------------------------------------------------------------------------- /generator/generate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/generate.py -------------------------------------------------------------------------------- /generator/models/meeting_invitees.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/models/meeting_invitees.yaml -------------------------------------------------------------------------------- /generator/models/meeting_registrants.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/models/meeting_registrants.yaml -------------------------------------------------------------------------------- /generator/models/meeting_templates.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/models/meeting_templates.yaml -------------------------------------------------------------------------------- /generator/models/meetings.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/models/meetings.yaml -------------------------------------------------------------------------------- /generator/requirements.txt: -------------------------------------------------------------------------------- 1 | Jinja2==3.1.4 2 | MarkupSafe==2.1.5 3 | PyYAML==6.0.1 4 | -------------------------------------------------------------------------------- /generator/templates/api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/templates/api.py -------------------------------------------------------------------------------- /generator/templates/mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/templates/mixins.py -------------------------------------------------------------------------------- /generator/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/generator/utils.py -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/pyproject.toml -------------------------------------------------------------------------------- /src/webexpythonsdk/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/__init__.py -------------------------------------------------------------------------------- /src/webexpythonsdk/_metadata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/_metadata.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/__init__.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/access_tokens.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/access_tokens.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/admin_audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/admin_audit_events.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/attachment_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/attachment_actions.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/events.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/guest_issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/guest_issuer.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/licenses.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/meeting_invitees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/meeting_invitees.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/meeting_registrants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/meeting_registrants.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/meeting_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/meeting_templates.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/meetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/meetings.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/memberships.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/messages.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/organizations.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/people.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/recordings.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/roles.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/room_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/room_tabs.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/rooms.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/team_memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/team_memberships.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/teams.py -------------------------------------------------------------------------------- /src/webexpythonsdk/api/webhooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/api/webhooks.py -------------------------------------------------------------------------------- /src/webexpythonsdk/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/config.py -------------------------------------------------------------------------------- /src/webexpythonsdk/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/environment.py -------------------------------------------------------------------------------- /src/webexpythonsdk/exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/exceptions.py -------------------------------------------------------------------------------- /src/webexpythonsdk/generator_containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/generator_containers.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/__init__.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/actions.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/adaptive_card_component.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/adaptive_card_component.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/card_elements.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/card_elements.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/cards.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/cards.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/containers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/containers.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/inputs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/inputs.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/options.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/types.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/types.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/cards/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/cards/utils.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/dictionary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/dictionary.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/immutable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/immutable.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/access_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/access_token.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/admin_audit_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/admin_audit_event.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/attachment_action.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/attachment_action.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/event.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/guest_issuer_token.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/guest_issuer_token.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/license.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/license.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/meeting_invitees.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/meeting_invitees.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/meeting_registrants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/meeting_registrants.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/meeting_templates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/meeting_templates.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/meetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/meetings.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/membership.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/message.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/message.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/organization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/organization.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/person.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/person.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/recording.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/recording.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/role.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/role.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/room.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/room.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/room_meeting_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/room_meeting_info.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/room_tab.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/room_tab.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/team.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/team.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/team_membership.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/team_membership.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/webhook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/webhook.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/mixins/webhook_event.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/mixins/webhook_event.py -------------------------------------------------------------------------------- /src/webexpythonsdk/models/simple.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/models/simple.py -------------------------------------------------------------------------------- /src/webexpythonsdk/response_codes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/response_codes.py -------------------------------------------------------------------------------- /src/webexpythonsdk/restsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/restsession.py -------------------------------------------------------------------------------- /src/webexpythonsdk/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/src/webexpythonsdk/utils.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/api/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/__init__.py -------------------------------------------------------------------------------- /tests/api/adaptive_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/adaptive_card.json -------------------------------------------------------------------------------- /tests/api/attachment_actions_card.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/attachment_actions_card.json -------------------------------------------------------------------------------- /tests/api/test_admin_audit_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_admin_audit_events.py -------------------------------------------------------------------------------- /tests/api/test_attachment_actions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_attachment_actions.py -------------------------------------------------------------------------------- /tests/api/test_events.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_events.py -------------------------------------------------------------------------------- /tests/api/test_guest_issuer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_guest_issuer.py -------------------------------------------------------------------------------- /tests/api/test_licenses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_licenses.py -------------------------------------------------------------------------------- /tests/api/test_meeting_registrants.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_meeting_registrants.py -------------------------------------------------------------------------------- /tests/api/test_meetings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_meetings.py -------------------------------------------------------------------------------- /tests/api/test_memberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_memberships.py -------------------------------------------------------------------------------- /tests/api/test_messages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_messages.py -------------------------------------------------------------------------------- /tests/api/test_organizations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_organizations.py -------------------------------------------------------------------------------- /tests/api/test_people.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_people.py -------------------------------------------------------------------------------- /tests/api/test_recordings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_recordings.py -------------------------------------------------------------------------------- /tests/api/test_roles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_roles.py -------------------------------------------------------------------------------- /tests/api/test_room_tabs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_room_tabs.py -------------------------------------------------------------------------------- /tests/api/test_rooms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_rooms.py -------------------------------------------------------------------------------- /tests/api/test_teammemberships.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_teammemberships.py -------------------------------------------------------------------------------- /tests/api/test_teams.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/api/test_teams.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/environment.py -------------------------------------------------------------------------------- /tests/test_restsession.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/test_restsession.py -------------------------------------------------------------------------------- /tests/test_webexpythonsdk.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/test_webexpythonsdk.py -------------------------------------------------------------------------------- /tests/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/WebexCommunity/WebexPythonSDK/HEAD/tests/utils.py --------------------------------------------------------------------------------