The `webexteamssdk` is a community-developed Python SDK for interacting with the Webex Teams (now Webex App) APIs. While it achieved its last official release at v1.7, the project has been superseded by `webexpythonsdk` since October 2022, which is now the actively maintained version. Users are strongly encouraged to migrate to `webexpythonsdk` for new projects and ongoing development.
pip install webexteamssdkVerified import paths — ran on the pinned version, not inferred.
Demonstrates initializing the API with an access token (expected via environment variable) and fetching information about the authenticated user and their rooms.
Migrate your project to `webexpythonsdk`. Update your `requirements.txt` and import statements (e.g., `from webexpythonsdk import WebexTeamsAPI`). Review `webexpythonsdk` documentation for any minor API changes.
For support, issues, or contributions, refer to the `webexpythonsdk` project's GitHub repository. Do not open issues on the `CiscoDevNet/webexteamssdk` repo.
Ensure `WEBEX_TEAMS_ACCESS_TOKEN` is correctly set in your environment with a valid token from developer.webex.com/my-apps. If providing explicitly, pass `access_token='YOUR_TOKEN'` to `WebexTeamsAPI()`.
Implement robust error handling for `ApiError` exceptions. Consider adding delays between consecutive API calls, or migrate to `webexpythonsdk` which has improved rate limit handling.
No dependency data recorded yet.