Metadata-Version: 2.4
Name: neura_sdk
Version: 0.2.1
Summary: Neura Control SDK for Python
Author-email: NEURA AI <engineering@neura-os.com>
License: Apache-2.0
Project-URL: Homepage, https://neura-os.com
Project-URL: Bug Tracker, https://github.com/neura-os/neura-sdk/issues
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: Apache Software License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests>=2.25.0
Dynamic: license-file

# Neura Control SDK for Python

The official Python SDK for integrating with the Neura OS Control Plane.

## Installation

```bash
pip install neura-sdk
```

## Usage

```python
from neura_sdk import NeuraClient

client = NeuraClient(api_key="your_api_key")
# Use the client to interact with Neura services
```

For more documentation, visit [neura-os.com/docs](https://neura-os.com/docs).
