Metadata-Version: 2.1
Name: indexify
Version: 0.0.34
Summary: Python Client for Indexify
Home-page: https://github.com/tensorlakeai/indexify
License: Apache 2.0
Author: Diptanu Gon Choudhury
Author-email: diptanuc@gmail.com
Requires-Python: >=3.9,<4.0
Classifier: License :: Other/Proprietary 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-Dist: httpx[http2] (>=0.26,<0.27)
Requires-Dist: pyyaml (>=6.0.1,<7.0.0)
Project-URL: Repository, https://github.com/tensorlakeai/indexify
Description-Content-Type: text/markdown

# Indexify Python Client


[![PyPI version](https://badge.fury.io/py/indexify.svg)](https://badge.fury.io/py/indexify)

## Installation

This is the Python client for interacting with the Indexify service.

To install it, simply run:

```shell
pip install indexify
```

## Usage

See the [getting started](https://docs.getindexify.com/getting_started/) guide for examples of how to use the client.
Look at the [examples](https://github.com/tensorlakeai/indexify/tree/main/examples) directory for more examples.

## Development

To install the client from this repository for development:

```shell
cd "path to this repository"
pip install -e .
```

Install and run the `poetry` package manager:

```shell
pip install poetry
poetry install
```

More information at [https://python-poetry.org/docs/](https://python-poetry.org/docs/).



### Environment Variables

IndexifyClient uses httpx under the hood, so there are many environment variables that can be used to configure the client. More information on supported environment variables can be found [here](https://www.python-httpx.org/environment_variables/).

