Releases: MarkWarneke/Az.Cli
Releases · MarkWarneke/Az.Cli
Move cli creation into function
Move the cli creation into the function so that potentially multiple CLIs with different configurations can be executed at the same time.
- hope it fixes #10
python3 -m venv env
pip install 'az.cli==0.5'
python3
>>> from az.cli import az
>>> import os
>>> exit_code, result_dict, logs = az("group list")
>>> print (result_dict)
[{'id': '/subscriptions/...', 'location': 'westeurope', 'name': 'test1']
>>> os.environ['AZURE_CONFIG_DIR'] = '/Users/mark/.azure_mw'
>>> exit_code, result_dict, logs = az("group list")
>>> print (result_dict)
[{'id': '/subscriptions/...', 'location': 'westeurope', 'name': 'test2']
requirements release
- Remove requirements to be loosely coupled see issue #5
Login Release
- adds
az('login')
capability
Tested Release
Tested Release for Az.Cli 0.2 publish to https://pypi.org/project/az.cli/
- Adds
pytest
andflake8
- Add Github Actions
First Release
Initial Release for Az.Cli
0.1 published https://pypi.org/project/az.cli/
from az.cli import az
az("<command>")
Changelog:
- Adds basic functionality
az('<COMMAND>')
can be executed to run Azure CLI commands in python3 - Adds Dockerfile to build and test
- Adds Makefile to build and run the app
- Adds the initial README explaining the idea, concept and how to use it
Initial Release
Initial Release for Az.Cli
Changelog:
- Adds basic functionality
az('<COMMAND>')
can be executed to run Azure CLI commands in python3 - Adds Dockerfile to build and test
- Adds Makefile to build and run the app
- Adds the initial README explaining the idea, concept and how to use it