Metadata-Version: 2.1
Name: py-az-cli
Version: 0.1.4
Summary: Pythonic wrapper for az cli
Home-page: https://github.com/py-az-cli/py-az-cli
Author: David P. Moore
Author-email: 9993122+bigdatamoore@users.noreply.github.com
License: MIT
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.9
Description-Content-Type: text/markdown
License-File: LICENSE

# py-az-cli
Pythonic wrapper for az cli

Requires Python 3

## Install 
Note: We recommend first creating a virtual env and activating it
```
pip install py-az-cli
```

## Usage
```
% python3
>>> import pyaz
>>> result = pyaz.version()
>>> print(result)
{'azure-cli': '2.28.1', 'azure-cli-core': '2.28.1', 'azure-cli-telemetry': '1.0.6', 'extensions': {}}
```


