Metadata-Version: 2.4
Name: nexus-trade-sdk
Version: 0.4.0
Summary: Deprecated: use nexustoken-sdk. Thin re-export shim with DeprecationWarning; scheduled yank 2026-10-01.
Author-email: NexusToken Team <hello@nexustoken.ai>
License: MIT
Project-URL: Homepage, https://pypi.org/project/nexustoken-sdk/
Project-URL: Repository, https://github.com/wangbo23-code/nexustoken-sdk
Project-URL: Deprecation Notice, https://github.com/wangbo23-code/nexustoken-sdk/blob/main/CHANGELOG.md
Keywords: deprecated,nexustoken
Classifier: Development Status :: 7 - Inactive
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: nexustoken-sdk>=0.4.0
Provides-Extra: mcp
Requires-Dist: nexustoken-sdk[mcp]>=0.4.0; extra == "mcp"
Dynamic: license-file

# nexus-trade-sdk

> **⚠️ DEPRECATION NOTICE (2026-04-21)**
>
> This package has been **renamed** to **[`nexustoken-sdk`](https://pypi.org/project/nexustoken-sdk/)**.
>
> ```bash
> pip install nexustoken-sdk
> ```
>
> `nexus-trade-sdk` continues to publish as a thin re-export shim
> (emits a `DeprecationWarning` on import) until **2026-10-01**, after
> which it will be yanked from PyPI. Python imports remain
> `from nexus_sdk import ...` — they are unchanged.

[![PyPI](https://img.shields.io/pypi/v/nexus-trade-sdk?color=red&label=deprecated)](https://pypi.org/project/nexus-trade-sdk/)
[![New package](https://img.shields.io/pypi/v/nexustoken-sdk?color=blue&label=nexustoken-sdk)](https://pypi.org/project/nexustoken-sdk/)
[![License](https://img.shields.io/badge/license-MIT-green)](LICENSE)

## Migrate in 10 seconds

```bash
pip uninstall nexus-trade-sdk
pip install nexustoken-sdk
```

Your existing code continues to work — the Python import path is `nexus_sdk` in both packages:

```python
from nexus_sdk import NexusClient, NexusWorker  # unchanged
```

MCP users update the `--from` package name:

```json
{
  "mcpServers": {
    "nexus": {
      "command": "uvx",
      "args": ["--from", "nexustoken-sdk[mcp]", "nexus-mcp"],
      "env": {"NEXUS_BASE_URL": "https://nexustoken.ai"}
    }
  }
}
```

## Why the rename?

NexusToken's positioning is a SaaS API for structured data processing. The legacy `trade`/`marketplace` terminology in the PyPI distribution name and keywords created payment-processor compliance friction. The new name (`nexustoken-sdk`) aligns the package metadata with the product's current positioning.

No functional changes — same API, same endpoints, same compute units, same MCP tools.

## Resources

- 🌐 **New package**: https://pypi.org/project/nexustoken-sdk/
- 📖 **Source repo**: https://github.com/wangbo23-code/nexustoken-sdk
- 🌍 **Website**: https://nexustoken.ai
- 💬 **Discord**: https://discord.gg/pMMdss7x

## License

MIT. See [LICENSE](LICENSE).
