Metadata-Version: 2.4
Name: spaider
Version: 0.0.1
Summary: Reserved placeholder — install spaider-client for the actual SDK
Author: Spaider Studio
License: Apache-2.0
Project-URL: Homepage, https://pypi.org/project/spaider-client/
Project-URL: Repository, https://github.com/Spaider-studio/spaider
Project-URL: Issues, https://github.com/Spaider-studio/spaider/issues
Keywords: spaider,placeholder,reserved
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.9
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3.14
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# spaider (placeholder)

This package is a **reserved placeholder** on PyPI. The actual Spaider Memory Infrastructure Python SDK is published as [`spaider-client`](https://pypi.org/project/spaider-client/).

Why this exists: PyPI doesn't reserve names by metadata alone, so we publish a 50-line stub here to prevent third-party squatters from grabbing the bare `spaider` name and shipping a malicious package that someone might `pip install` by mistake.

## Install the real SDK

```bash
pip install spaider-client
```

```python
from spaider import Spaider

sp = Spaider(api_key="sk-...", agent_id="my-agent")
result = sp.ingest("Max arbeitet bei Google.")
answer = sp.query("Wo arbeitet Max?")
```

`import spaider` from **this** placeholder will raise `RuntimeError` with a redirect message; that's intentional.

Links:
- Real SDK: <https://pypi.org/project/spaider-client/>
- Source: <https://github.com/Spaider-studio/spaider>
