Metadata-Version: 2.1
Name: whylabs-toolkit
Version: 0.1.2
Summary: Whylabs Toolkit package.
License: Apache-2.0 license
Author: Murilo Mendonca
Author-email: murilommen@gmail.com
Requires-Python: >=3.8,<4.0
Classifier: License :: Other/Proprietary 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
Provides-Extra: diagnoser
Requires-Dist: isodate (>=0.6.1,<0.7.0); extra == "diagnoser"
Requires-Dist: jsonschema (>=4.17.3,<5.0.0)
Requires-Dist: numpy (>=1.24.1,<2.0.0); extra == "diagnoser"
Requires-Dist: pandas (>=2.0.3,<3.0.0); extra == "diagnoser"
Requires-Dist: pydantic (>=1.10.15,<2.0.0)
Requires-Dist: python-dateutil (>=2.8.2,<3.0.0); extra == "diagnoser"
Requires-Dist: tabulate (>=0.8.9,<0.9.0); extra == "diagnoser"
Requires-Dist: typing-extensions (>=4.11.0,<5.0.0)
Requires-Dist: urllib3 (>=2.0.2,<2.1)
Requires-Dist: whylabs-client (>=0.6.3,<0.7.0)
Requires-Dist: whylogs (>=1.1.26,<2.0.0)
Description-Content-Type: text/markdown

# WhyLabs Toolkit

The WhyLabs Toolkit package contains helper methods to help users interact with our internal APIs. Users will benefit from using it if they want to abstract some of WhyLabs' internal logic and also automate recurring API calls.


## Basic usage
To start using the `whylabs_toolkit` package, install it from PyPI with:
```bash
pip install whylabs_toolkit
``` 

## Packages

The available packages that we have enable different use-cases for the `whylabs_toolkit`. To get started, navigate to one of the following sections and find useful tutorials there.

| Package                                                                                                                   | Usage                                                                  |
|---------------------------------------------------------------------------------------------------------------------------|------------------------------------------------------------------------|
| [Monitor Manager](https://github.com/whylabs/whylabs-toolkit/blob/mainline/whylabs_toolkit/monitor/manager/README.md)     | Author and modify existing WhyLabs monitor with Python.                |
| [Monitor Diagnoser](https://github.com/whylabs/whylabs-toolkit/blob/mainline/whylabs_toolkit/monitor/diagnoser/README.md) | Diagnose problems with monitors.                                       |
| [WhyLabs Helpers](https://github.com/whylabs/whylabs-toolkit/blob/mainline/whylabs_toolkit/helpers/README.md)             | Interact with and modify your Datasets and ML Models specs in WhyLabs. |

## Development

To start contributing, you will manage dependencies with [Poetry](https://python-poetry.org/) and also a handful of `Makefile` commands. To install all necessary dependencies and activate the virtual environment, run:

```bash
make setup && poetry shell
```

## Get in touch
If you want to learn more how you can benefit from this package or if there is anything missing, please [contact our support](https://whylabs.ai/contact-us), we'll be more than happy to help you!
