Metadata-Version: 2.4
Name: listbee
Version: 0.99.0
Summary: Official Python SDK for the ListBee API — one API call to sell and deliver digital content.
Project-URL: Homepage, https://listbee.so
Project-URL: Documentation, https://docs.listbee.so
Project-URL: Repository, https://github.com/listbee-dev/listbee-python
Project-URL: Changelog, https://github.com/listbee-dev/listbee-python/blob/main/CHANGELOG.md
Author-email: ListBee <damian@listbee.so>
License-Expression: Apache-2.0
License-File: LICENSE
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.10
Requires-Dist: httpx>=0.25.0
Requires-Dist: pydantic>=2.0.0
Provides-Extra: dev
Requires-Dist: pre-commit>=4.5; extra == 'dev'
Requires-Dist: pyright>=1.1; extra == 'dev'
Requires-Dist: pytest-asyncio>=0.24; extra == 'dev'
Requires-Dist: pytest-cov>=5.0; extra == 'dev'
Requires-Dist: pytest>=8.0; extra == 'dev'
Requires-Dist: respx>=0.21; extra == 'dev'
Requires-Dist: ruff>=0.8; extra == 'dev'
Description-Content-Type: text/markdown

# listbee (deprecated)

**This Python SDK is deprecated.** ListBee has pivoted to an agent-native architecture. The primary integration surface is now MCP + OpenAPI.

## What to use instead

### For agent integrations (recommended)
- **MCP HTTP:** `https://mcp.listbee.so` — use with ChatGPT Apps, Claude Connectors, or any MCP HTTP client
- **MCP stdio:** `npx listbee-mcp` — use with Claude Desktop, Cursor, Cline

### For direct HTTP
- **OpenAPI spec:** `https://listbee.so/openapi.json`
- **Docs:** `https://docs.listbee.so`
- Use `requests`, `httpx`, or any HTTP client against `https://api.listbee.so`

## Final version

This package is pinned to a final deprecation release. Installing or importing it will emit a `DeprecationWarning`.

```python
import listbee  # DeprecationWarning: ListBee Python SDK is deprecated — use MCP at mcp.listbee.so
```

## Why this change

ListBee is commerce infrastructure for AI agents. Agents consume MCP, not Python packages. Every engineering minute we'd have spent on this SDK is a minute not spent on making the agent experience better. See https://listbee.so for the positioning story.

## Reversibility

If you depend on a Python SDK and can share your use case, open an issue at the ListBee product site or email damian@listbee.so. A fresh SDK can be auto-generated via Fern OSS CLI in minutes if demand warrants.
