Metadata-Version: 2.4
Name: norman-ml
Version: 0.1.0
Summary: Norman SDK
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: norman-objects>=0.1.0
Requires-Dist: norman-utils-external>=0.1.0
Requires-Dist: aiofiles==24.1.0
Requires-Dist: httpx==0.28.1
Requires-Dist: pydantic==2.11.7
Requires-Dist: pytest==8.4.1
Requires-Dist: pytest-asyncio==1.1.0
Requires-Dist: xxhash==3.5.0
Dynamic: license-file

# Norman Core SDK

A Python Low Level SDK for Norman, providing access to the entire Norman Api.

## Package Structure

- `norman_sdk/accounts/` – Account and authentication logic
- `norman_sdk/models/` – Model registration and retrieval
- `norman_sdk/invoke/` – Model invocation
- `norman_sdk/services/` – Low-level SDK, with services for each Norman API endpoint
- `norman_sdk/utils/` – Utility functions (I/O, hashing, etc.)
## Installation

```bash
pip install .
```

## Usage
...

## Test
```
# low level test:
pytest # -v = verbose, -s = show prints 
```
