Metadata-Version: 2.4
Name: dryapi_client
Version: 0.32.0
Summary: DryAPI Python SDK
Home-page: https://github.com/magebase/dryapi-python-sdk
Author: magebase
Author-email: magebase <magebase@users.noreply.github.com>
License: MIT
Project-URL: Repository, https://github.com/magebase/dryapi-python-sdk
Keywords: OpenAPI,OpenAPI-Generator,DryAPI
Requires-Python: >=3.9
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: urllib3<3.0.0,>=2.1.0
Requires-Dist: python-dateutil>=2.8.2
Requires-Dist: pydantic>=2
Requires-Dist: typing-extensions>=4.7.1
Dynamic: author
Dynamic: home-page
Dynamic: license-file

# dryapi-client
One API key, one credit balance, 17 calibrated prediction APIs.

This Python package is automatically generated by the [OpenAPI Generator](https://openapi-generator.tech) project:

- API version: 0.32.0
- Package version: 0.32.0
- Generator version: 7.14.0
- Build package: org.openapitools.codegen.languages.PythonClientCodegen

## Requirements.

Python 3.9+

## Installation & Usage
### pip install

If the python package is hosted on a repository, you can install directly using:

```sh
pip install git+https://github.com/magebase/dryapi-python-sdk.git
```
(you may need to run `pip` with root permission: `sudo pip install git+https://github.com/magebase/dryapi-python-sdk.git`)

Then import the package:
```python
import dryapi_client
```

### Setuptools

Install via [Setuptools](http://pypi.python.org/pypi/setuptools).

```sh
python setup.py install --user
```
(or `sudo python setup.py install` to install the package for all users)

Then import the package:
```python
import dryapi_client
```

### Tests

Execute `pytest` to run the tests.

## Getting Started

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

```python

import dryapi_client
from dryapi_client.rest import ApiException
from pprint import pprint

# Defining the host is optional and defaults to https://api.dryapi.dev
# See configuration.py for a list of all supported configuration parameters.
configuration = dryapi_client.Configuration(
    host = "https://api.dryapi.dev"
)



# Enter a context with an instance of the API client
with dryapi_client.ApiClient(configuration) as api_client:
    # Create an instance of the API class
    api_instance = dryapi_client.DefaultApi(api_client)

    try:
        api_response = api_instance.health_get()
        print("The response of DefaultApi->health_get:\n")
        pprint(api_response)
    except ApiException as e:
        print("Exception when calling DefaultApi->health_get: %s\n" % e)

```

## Documentation for API Endpoints

All URIs are relative to *https://api.dryapi.dev*

Class | Method | HTTP request | Description
------------ | ------------- | ------------- | -------------
*DefaultApi* | [**health_get**](docs/DefaultApi.md#health_get) | **GET** /health | 
*DefaultApi* | [**models_get**](docs/DefaultApi.md#models_get) | **GET** /models | 
*DefaultApi* | [**models_id_get**](docs/DefaultApi.md#models_id_get) | **GET** /models/{id} | 
*DefaultApi* | [**predict_post**](docs/DefaultApi.md#predict_post) | **POST** /predict | 
*DefaultApi* | [**predictions_id_feedback_post**](docs/DefaultApi.md#predictions_id_feedback_post) | **POST** /predictions/{id}/feedback | 


## Documentation For Models

 - [HealthGet200Response](docs/HealthGet200Response.md)
 - [ModelsIdGet200Response](docs/ModelsIdGet200Response.md)
 - [PredictPost200Response](docs/PredictPost200Response.md)
 - [PredictPost200ResponseConfidence](docs/PredictPost200ResponseConfidence.md)
 - [PredictPost200ResponseConfidenceInterval](docs/PredictPost200ResponseConfidenceInterval.md)
 - [PredictPost200ResponseMetadata](docs/PredictPost200ResponseMetadata.md)
 - [PredictPost200ResponseTopFactorsInner](docs/PredictPost200ResponseTopFactorsInner.md)
 - [PredictPost400Response](docs/PredictPost400Response.md)
 - [PredictPostRequest](docs/PredictPostRequest.md)
 - [PredictionsIdFeedbackPost200Response](docs/PredictionsIdFeedbackPost200Response.md)
 - [PredictionsIdFeedbackPostRequest](docs/PredictionsIdFeedbackPostRequest.md)


<a id="documentation-for-authorization"></a>
## Documentation For Authorization

Endpoints do not require authorization.


## Author




