Metadata-Version: 2.1
Name: indexify
Version: 0.0.4
Summary: Python Client for Indexify
Home-page: https://github.com/diptanu/indexify
License: Apache 2.0
Author: Diptanu Gon Choudhury
Author-email: diptanuc@gmail.com
Requires-Python: >=3.10.0,<4.0.0
Classifier: License :: Other/Proprietary License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Requires-Dist: httpx[http2] (>=0.24.1,<0.25.0)
Project-URL: Repository, https://github.com/diptanu/indexify
Description-Content-Type: text/markdown

# Indexify Python Client

## 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://getindexify.com/getting_started/) guide for examples of how to use the client.
Look at the [sdk-py/examples](examples) directory for more examples.

## Development

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/).


### Steps for restarting dev server after updating server code

```shell
./install_python_deps.sh
# use `-e`` if you're developing extractors
(cd extractors && pip install -e .)
# use `-e`` if you're developing sdk-py
(cd sdk-py && pip install -e .)

cargo build
make local-dev

# start the server
./target/debug/indexify start-server -d -c local_config.yaml
```

### 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/).

