Metadata-Version: 2.4
Name: omniedge
Version: 0.2.2
Summary: The official Python library for the OmniEdge API
Author: edgefn
License: MIT
Project-URL: Homepage, https://github.com/edgefn/omniedge-python
Project-URL: Repository, https://github.com/edgefn/omniedge-python
Project-URL: Issues, https://github.com/edgefn/omniedge-python/issues
Classifier: Development Status :: 3 - Alpha
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.2
Description-Content-Type: text/markdown
License-File: LICENSE
Dynamic: license-file

# omniedge

The official Python library for the OmniEdge API

## Quick start

Install:

```bash
pip install omniedge
```

Or from source:

```bash
pip install -e .
```

### Configure Claude Code with OmniEdge

1. Get an OmniEdge API key and (optionally) set:

   ```bash
   export OMNIEDGE_API_KEY="your_api_key"
   export OMNIEDGE_BASE_URL="https://api.omniedge.ai"
   ```

2. Run the setup command and follow the prompts:

   ```bash
   omniedge set claude-code
   ```

   This updates `~/.claude/settings.json` and keeps a backup under `~/.omniedge/backup/claude-code/`.

3. To restore the previous config:

   ```bash
   omniedge reset claude-code
   ```

For advanced usage and development details, see `docs/cli-dev-guide.md`.
