Skip to content

Releases: MarkWarneke/Az.Cli

Move cli creation into function

14 Mar 00:52
7e89ca8
Compare
Choose a tag to compare

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

01 Apr 08:04
80c3802
Compare
Choose a tag to compare
  • Remove requirements to be loosely coupled see issue #5

Login Release

16 Mar 20:07
4d7d5b0
Compare
Choose a tag to compare
  • adds az('login') capability

Tested Release

13 Mar 23:55
f99082d
Compare
Choose a tag to compare

Tested Release for Az.Cli 0.2 publish to https://pypi.org/project/az.cli/

  • Adds pytest and flake8
  • Add Github Actions

First Release

13 Mar 15:46
Compare
Choose a tag to compare

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

13 Mar 13:59
Compare
Choose a tag to compare
Initial Release Pre-release
Pre-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