Metadata-Version: 2.4
Name: lvi-api-client
Version: 0.1.6
Summary: LogicVein API Client Library
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: requests
Provides-Extra: dev
Requires-Dist: pytest; extra == "dev"
Requires-Dist: pytest-cov; extra == "dev"
Dynamic: license-file

# LogicVein API Client

A Python client for interacting with the LogicVein API.

## Installation

From PyPI:

```bash
pip install lvi-api-client
```

From TestPyPI (pre-release / testing):

```bash
pip install \
  --index-url https://test.pypi.org/simple/ \
  --extra-index-url https://pypi.org/simple/ \
  lvi-api-client
```

See [PUBLISHING.md](PUBLISHING.md) for instructions on publishing new releases.

## Usage

```bash
from lvi_api_client import LogicVeinAPIClient

client = LogicVeinAPIClient(host="your-lvi-server", api_token="your-token")
devices = client.search_devices_in_network()
```
