Metadata-Version: 2.5
Name: contextwall-sdk
Version: 0.2.0
Summary: DEPRECATED — the ContextWall SDK now ships inside `contextwall`. This package is a thin shim that installs the main package and re-exports from `context_firewall.sdk`. Migrate to `pip install "contextwall[all]"`.
Author-email: ContextWall <info@bytewise.ca>
License: Apache-2.0
Keywords: contextwall,deprecated,shim
Requires-Python: >=3.11
Requires-Dist: anthropic>=0.25
Requires-Dist: contextwall>=0.2.0
Requires-Dist: openai>=1.0
Provides-Extra: all
Requires-Dist: contextwall[all]>=0.2.0; extra == 'all'
Provides-Extra: anthropic
Requires-Dist: contextwall[anthropic]>=0.2.0; extra == 'anthropic'
Provides-Extra: openai
Requires-Dist: contextwall[openai]>=0.2.0; extra == 'openai'
Description-Content-Type: text/markdown

# contextwall-sdk (deprecated shim)

**As of ContextWall 0.2.0, the SDK ships inside the main [`contextwall`](https://pypi.org/project/contextwall/) package.**

This `contextwall-sdk` package is a thin deprecation shim that:

- Installs `contextwall>=0.2.0` (the main package)
- Re-exports everything from `context_firewall.sdk`
- Emits a `DeprecationWarning` on import so you know to migrate

The shim will be removed in v0.4.

## Migrate

```diff
- pip install contextwall-sdk[all]
+ pip install "contextwall[all]"
```

```diff
- from contextwall_sdk import SafeAnthropic
+ from context_firewall.sdk import SafeAnthropic
```

Nothing about the class or method contracts changed — only the import path.

## Full docs

See [contextwall on PyPI](https://pypi.org/project/contextwall/) or the
[GitHub repo](https://github.com/bytewise-ca/context-wall).
