--- id: webexteamssdk version: "1.7" license: MIT; Copyright (c) 2016-2024 Cisco and/or its affiliates. license_treatment: permissive maintenance: active --- # webexteamssdk — Community-developed Python SDK for the Webex Teams APIs License: permissive · Maintenance: active · Downloads: 628.5K/mo ## What it is and what it does webexteamssdk is a community-developed Python client library for the Webex APIs that abstracts away HTTP details, authentication, and pagination. It wraps Webex API interactions into hierarchically organized Python methods on a WebexTeamsAPI connection object, returning native Python objects instead of raw JSON. The library automatically sources your Webex access token from your environment, handles pagination transparently, retries on rate limits, and supports multipart file uploads—all with minimal boilerplate. The package is in its final release cycle (v1.7 is the last version supporting Python 2 and Python 3 up to v3.10). Going forward, users on Python v3.10+ should migrate to WebexPythonSDK. For teams currently on Python 2 or early Python 3 versions who need a stable, production-grade Webex client, this package is mature and actively maintained, but represents a legacy integration path. Use it for: - Automate Webex room and membership management—create rooms, add users, delete rooms—without manually constructing HTTP requests. - Build chatbots or integrations that post messages and upload files to Webex spaces with automatic pagination and rate-limit handling. - Query and filter Webex resources (rooms, messages, people) using Python list comprehensions instead of raw API pagination loops. - Migrate legacy Cisco Spark integrations to Webex without rewriting API call logic, leveraging the SDK's native Python abstractions. - Prototype Webex workflows in Python with IDE auto-completion and descriptive exceptions for faster development and debugging. ## Worth the install? AI-flagged interpretation of the facts above — verify before relying. Python SDK for the Webex APIs that handles authentication, API calls, pagination, and rate-limit management with native Python objects and automatic token sourcing. Yes, with conditions. Install if you need a stable, production-grade Webex Python client and are on Python 2 or Python 3 up to v3.10. The package is actively maintained, permissively licensed, and has zero known vulnerabilities. However, v1.7 is explicitly the final release; if you are on Python v3.10+ or planning to upgrade, migrate to WebexPythonSDK instead to avoid future maintenance burden. ## Install pip install webexteamssdk uv add webexteamssdk poetry add webexteamssdk ## Installing webexteamssdk Before you install: High install friction due to no runtime dependencies, but the package is in active maintenance with recent commits (last commit 2026-05-24) and marked Production/Stable. However, v1.7 is explicitly the final release supporting Python 2 and Python 3 up to v3.10; users on newer Python versions should plan migration to WebexPythonSDK. License in practice: MIT license (permissive) with Cisco copyright (2016-2024) means you can use, modify, and distribute freely with attribution; no restrictions on commercial use. Quickstart: pip install webexteamssdk from webexteamssdk import WebexTeamsAPI api = WebexTeamsAPI() all_rooms = api.rooms.list() demo_rooms = [room for room in all_rooms if 'Demo' in room.title] Requires a valid Webex access token in your environment; the SDK sources it transparently from local environment variables. Verify before relying: - Exact Python version support boundaries for v1.7 (description says 'up to Python v3.10' but requires_python field is unspecified) - Whether high install_friction reflects actual dependency complexity or is a metadata artifact given zero runtime dependencies listed ## Package facts - License: MIT; Copyright (c) 2016-2024 Cisco and/or its affiliates. (permissive) - Python support: unspecified - Install friction: high - Maintenance: active - Downloads: 628.5K/month (top 15,000 on PyPI) - Known vulnerabilities: none known ## Tags webex api python sdk, cisco webex teams api client, webex messaging api python, webex rooms members messages api, python webex integration, webex teams automation, webex api wrapper python, webex-integration, api-client, end-of-life [View on SkillFed](https://skillfed.io/packages/webexteamssdk) · [View on PyPI](https://pypi.org/project/webexteamssdk/)