This release is a pre-release and may not be stable for production use.
composio-client for Python
composio-client replaces the Stainless-generated package without requiring you to rewrite existing
1.43.x calls.
from composio_client import Composio
client = Composio(api_key="ak_...")
session = client.tool_router.session.create(user_id="user@example.com")
result = client.tool_router.session.execute(
session.session_id,
tool_slug="GITHUB_CREATE_ISSUE",
arguments={"owner": "composiohq", "repo": "composio", "title": "Example"},
)
The owned client preserves the public Python contract from composio-client==1.43.0 and adds the
rest of the v3.1 API. You get all 104 released operations, including the 64 operations published by
Stainless and 40 additive operations generated from the checked-in OpenAPI document.
Install the client
pip install composio-client
With uv:
uv add composio-client
Set COMPOSIO_API_KEY or pass api_key when you construct the client.
Use from_env when configuration must come from a specific mapping instead of os.environ:
client = Composio.from_env(config, environment="staging")
Explicit keyword arguments replace mapped values. The factory recognizes COMPOSIO_API_KEY,
COMPOSIO_USER_API_KEY, COMPOSIO_ORG_API_KEY, COMPOSIO_BASE_URL, and
COMPOSIO_CUSTOM_HEADERS. Clients created with with_options() keep using the resolved mapping
and do not fall back to ambient values.
Use the async client
import asyncio
from composio_client import AsyncComposio
async def main() -> None:
async with AsyncComposio(api_key="ak_...") as client:
session = await client.tool_router.session.create(user_id="user@example.com")
print(session.session_id)
asyncio.run(main())
Read raw response metadata
Every released resource keeps the Stainless raw and streaming accessors:
from composio_client import Composio
client = Composio(api_key="ak_...")
response = client.tool_router.session.with_raw_response.retrieve("sess_123")
print(response.status_code)
session = response.parse()
with client.tool_router.session.with_streaming_response.retrieve("sess_123") as response:
print(response.headers)
The async resource exposes the corresponding async response objects and context managers.
Handle API errors
The exception hierarchy matches the Stainless package. Existing except blocks keep working:
from composio_client import Composio, NotFoundError
client = Composio(api_key="ak_...")
try:
client.tool_router.session.retrieve("missing")
except NotFoundError as error:
print(error.status_code)
Migrate pre-release owned-client calls
Earlier owned-client builds accepted aggregate body, query, and headers values. Those calls
remain valid during the transition:
client.tool_router.session.create({"user_id": "user@example.com"})
client.tool_router.session.config_history("sess_123", query={"limit": 25})
Prefer the flat Stainless form in new code:
client.tool_router.session.create(user_id="user@example.com")
client.tool_router.session.config_history("sess_123", limit=25)
See the Python migration guide for compatibility details and the stricter credential transport rules.
Develop the Python package
Generate from the repository root:
pnpm generate:python
pnpm codegen:check
Run Python checks from python/:
uv run ruff check
uv run ruff format --check
uv run mypy src scripts
uv run pytest
uv run python scripts/check_stainless_compatibility.py
uv build
uv run python scripts/check_stainless_compatibility.py --wheel dist/*.whl
The normal compatibility check is offline. It reads the committed 1.43.0 fixture and does not
install or call the Stainless client.
Release files for composio-client 2.0.0rc3
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| composio_client-2.0.0rc3.tar.gz | 457.9 kB | Details |
Built distribution (wheel)
| File | Interpreter | ABI | Platform | Reset |
|---|---|---|---|---|
| composio_client-2.0.0rc3-py3-none-any.whl | Python 3 | none | any | Details |
Total release size: 782.5 kB
Release files / composio_client-2.0.0rc3.tar.gz
| Download URL | composio_client-2.0.0rc3.tar.gz |
|---|---|
| Size | 457.9 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
32001a810147e283bcf76f9b56afdecc03e35a0fc3ff9fc38c5ca60d3d2a1a66
|
|
BLAKE2b-256 checksum How to use checksums |
f61bb07c0579bd75d1628f383da847b590643258d8d43fdf3edd7328df05a8ff
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency logRelease files / composio_client-2.0.0rc3-py3-none-any.whl
| Download URL | composio_client-2.0.0rc3-py3-none-any.whl |
|---|---|
| Size | 324.6 kB |
| Tags | Python 3 |
|
SHA-256 checksum How to use checksums |
b4863b86cbd6b196e7b3e1c964818357e9bca068967d323944fe47fe2e1bba1a
|
|
BLAKE2b-256 checksum How to use checksums |
e10cb708f8a06ed7d230ed1fcdd481af1bc6ad333967704839fd3dc40909dfd7
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
Yes |
| Uploaded via |
twine/7.0.0 CPython/3.13.14
|
Provenance
Provenance describes where a file came from. On PyPI, provenance is shared via attestations, which provide a verifiable record of the build or publishing details. View details, limitations and caveats.
PyPI Publish Attestation
PyPI verified that this artifact, at this checksum, originated from the publisher listed below.
Signed by GitHub Actions, verified by PyPI on Aug 20, 2026.
Transparency log