Metadata-Version: 2.1
Name: mlflow-gcp-iap-plugin
Version: 0.0.1
Summary: Test plugin for MLflow.  Allows using URI which is behind IAP by setting environment variable of 'MLFLOW_IAP_CLIENT_ID' to the client id of the IAP.
Home-page: https://bitbucket.org/abridge-ai/mlflow-gcp-iap-plugin
Author: Nathan Price
Author-email: nathan@abridge.com
License: UNKNOWN
Project-URL: Bug Tracker, https://bitbucket.org/abridge-ai/mlflow-gcp-iap-plugin/issues
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.6
Description-Content-Type: text/markdown
License-File: LICENSE.txt

# MLFlow GCP IAP Plugin

This project will allow for using an MLFlow service endpoint which is protected with IAP by setting an environment variable: `MLFLOW_IAP_CLIENT_ID`.

## Installation

```bash
pip install mlflow-gcp-iap-plugin
```

## Use

```python
import mflow
import os

os.environ["MLFLOW_IAP_CLIENT_ID"] = <CLIENT_ID_VALUE>

# Use mlflow logging as desired...
```




