Metadata-Version: 2.1
Name: vectorize-client
Version: 0.0.7
Summary: Python client for the Vectorize API
Home-page: https://vectorize.io
License: MIT
Keywords: vectorize,vectorize.io,generative-ai,embeddings,rag
Author: Vectorize
Author-email: contact@vectorize.io
Requires-Python: >=3.8,<4.0
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.8
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-Dist: pydantic (>=2)
Requires-Dist: python-dateutil (>=2.8.2)
Requires-Dist: typing-extensions (>=4.7.1)
Requires-Dist: urllib3 (>=1.25.3,<3.0.0)
Project-URL: Repository, https://github.com/vectorize-io/vectorize-clients
Description-Content-Type: text/markdown

# Vectorize Client
Python Api Client for Vectorize
For more information, please visit [https://vectorize.io](https://vectorize.io)

## Requirements.

Python 3.8+

## Installation & Usage
```sh
pip install vectorize-client
```

Then import the package:
```python
import vectorize_client
```

## Getting Started

Please follow the [installation procedure](#installation--usage) and then run the following:

```python

import vectorize_client
from vectorize_client.rest import ApiException

with vectorize_client.ApiClient() as api:
    pipelines = vectorize_client.PipelinesApi(api)
    organization = '<your-org-id>'

    response = pipelines.get_pipelines(organization)
    print("Found" + str(len(response.data)) + " pipelines")
```

## Documentation for API Endpoints

All URIs are relative to *https://api.vectorize.io/v1*

See the full [reference](https://vectorize.readme.io/reference) for more information.

