Metadata-Version: 2.1
Name: kdbai-client
Version: 1.4.0.dev5
Summary: KDB.AI Client for Python
License: http://www.apache.org/licenses/LICENSE-2.0
Author: KX AI Team
Author-email: ai@kx.com
Requires-Python: >=3.8,<4.0
Classifier: Environment :: Console
Classifier: Environment :: Other Environment
Classifier: Framework :: Flake8
Classifier: Framework :: Pytest
Classifier: Intended Audience :: Developers
Classifier: Intended Audience :: Financial and Insurance Industry
Classifier: Intended Audience :: Healthcare Industry
Classifier: Intended Audience :: Information Technology
Classifier: Intended Audience :: Manufacturing
Classifier: Intended Audience :: Other Audience
Classifier: Intended Audience :: Science/Research
Classifier: Intended Audience :: Telecommunications Industry
Classifier: License :: Other/Proprietary License
Classifier: Operating System :: MacOS
Classifier: Operating System :: Microsoft :: Windows
Classifier: Operating System :: POSIX :: Linux
Classifier: Programming Language :: C
Classifier: Programming Language :: Cython
Classifier: Programming Language :: Other
Classifier: Programming Language :: Other Scripting Engines
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
Classifier: Programming Language :: Python :: 3.13
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: Implementation :: CPython
Classifier: Typing :: Typed
Provides-Extra: lint
Provides-Extra: test
Requires-Dist: mypy ; extra == "lint"
Requires-Dist: mypy-gitlab-code-quality ; extra == "lint"
Requires-Dist: packaging
Requires-Dist: pandas (>=1.5.0)
Requires-Dist: pykx (>=2.1.1,<3.0.0)
Requires-Dist: pytest (>=7.3.2,<8.0.0) ; extra == "test"
Requires-Dist: pytest-cov (>=4.0.0,<5.0.0) ; extra == "test"
Requires-Dist: pytest-mock ; extra == "test"
Requires-Dist: requests
Description-Content-Type: text/markdown

# KDB.AI Client for Python

## Introduction

For full documentation and detailed examples, visit [KDB.AI website](https://code.kx.com/kdbai/).

### Installing kdbai-client using `pip`

Ensure you have a recent version of pip:

pip install --upgrade pip


Then install the latest version of kdbai-client with the following command:

```
pip install kdbai-client
```

To install a specific version of kdbai-client run the following command replacing <INSERT_VERSION> with a specific released semver version of the interface

```
pip install kdbai-client==<INSERT_VERSION>
```

For developers, it is suggested to install the library dynamically, so that local changes can be reflected immediately. Therefore please enter the repository directory and then run below:-

```
pip install -e .
```

**Warning:** Python packages should typically be installed in a virtual environment. [This can be done with the venv package from the standard library](https://docs.python.org/3/library/venv.html).

