Metadata-Version: 2.1
Name: ez-azml
Version: 0.1.2
Summary: Simplified yaml/jsonargparse driven framework for AzureML interactions
Author-Email: =?utf-8?q?Alejandro_Bar=C3=B3n?= <alejandrobarongarcia10@gmail.com>
License: MIT
Requires-Python: >=3.9
Requires-Dist: jsonargparse>=4.32.0
Requires-Dist: azure-ai-ml>=1.18.0
Requires-Dist: azure-identity>=1.17.1
Requires-Dist: loguru>=0.7.2
Requires-Dist: mldesigner>=0.1.0b18
Requires-Dist: setuptools>=72.1.0
Description-Content-Type: text/markdown

[![pdm-managed](https://img.shields.io/endpoint?url=https%3A%2F%2Fcdn.jsdelivr.net%2Fgh%2Fpdm-project%2F.github%2Fbadge.json)](https://pdm-project.org)
![Static Badge](https://img.shields.io/badge/jsonargparse-d?link=https%3A%2F%2Fgithub.com%2Fomni-us%2Fjsonargparse)


# Easy AzureML (Beta)

This project attempts to reduce the boilerplate code when launching simple azureml jobs from command line.

It aims to:

- Be object oriented to enable end users to extend the SDK for their custom workflows, trying to reuse AzureML SDK V2 native classes as much as possible
- Be config driven (thanks to [jsonargparse](https%3A%2F%2Fgithub.com%2Fomni-us%2Fjsonargparse)) to improve reusability of objects and code
- Be, as it name states, easy to use (hence focused in simple usecases)
- Unify through wrappers the different flows and runs in Azure through a common interface

# Installation

Simply run 
```bash
pip install ez-azml
```
# Quickstart
The main entrypoint is the CLI command. The following command will show you the help
```
ez-azml -h
```

You can run an example with (if you have cloned the repo)
## Command
```
ez-azml --config configs/command/main.yaml run
```
## PipelineRun
```
PYTHONPATH=$PYTHONPATH:. ez-azml --config configs/pipeline/main.yaml run
```
(`PYTHONPATH` to point to the examples dir. This is not needed if your pipeline is available in any package as an importable function)
