Metadata-Version: 2.4
Name: vdms
Version: 0.0.22
Summary: VDMS Client Module
Home-page: https://github.com/IntelLabs/vdms
Author: Chaunté W. Lacewell
Author-email: chaunte.w.lacewell@intel.com
License: MIT
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=2.6, !=3.0.*, !=3.1.*, !=3.2.*, <4
Description-Content-Type: text/markdown
Requires-Dist: protobuf==5.29.5
Dynamic: author
Dynamic: author-email
Dynamic: classifier
Dynamic: description
Dynamic: description-content-type
Dynamic: home-page
Dynamic: license
Dynamic: requires-dist
Dynamic: requires-python
Dynamic: summary

# VDMS Client Python Module

This is the client module for Intel Lab's Visual Data Management System (VDMS).
It provides utilities for interacting with the VDMS server.

## Installing
To install this client, run the following:
```bash
pip install vdms
```

## Connect to VDMS Server
To connect to a VDMS server, you must provide the `HOST` and `PORT` where the VDMS server is deployed.
By default, the `HOST` and `PORT` are `localhost` and `55555`, respectively.
```python
import vdms
db = vdms.vdms()
db.connect()
```
or you can specify other values for `HOST` and `PORT`:
```python
import vdms
db = vdms.vdms()
db.connect(HOST, PORT)
```

For more information, visit [VDMS Documentation](https://intellabs.github.io/vdms/).
