Open the aws console in a browser, using CLI credentials
This package is available on pypi, you can use on of these commands to install (pipx is recommended)
pipx install aws-browser
pip install aws-browser
Or to install from source, you can use one of these commands:
pipx install git+https://github.com/WeAreCloudar/aws-browser.git
pipx install git+ssh://[email protected]:WeAreCloudar/aws-browser.git
We use poetry to manage this project
- Clone this repository
- Run
poetry install
- Activate the virtualenvironment with
poetry shell
(you can also usepoetry run $command
)
- Edit pyproject.toml to update the version number
- Commit the version number bump
- Tag the commit with the version number
git tag x.y.z
- Push to GitHub with
git push --tags
, this will create a new release in pypi and GitHub
If you want to use poetry in Visual Studio Code, it works best if the virtual environment is created
inside the project folder. Once the virtual environment is created, you can run the "Python: Select
interpreter" command in Visual Studio Code, and point to the .venv
folder.
poetry config virtualenvs.in-project true
If you already created the virtual environment, you have to recreate it
# from within the project folder
poetry env remove $(poetry env list)
poetry install