https://github.com/pycontribs/pia
PIA - Package Installer for Ansible with a KISS approach
https://github.com/pycontribs/pia
experimental
Last synced: about 1 year ago
JSON representation
PIA - Package Installer for Ansible with a KISS approach
- Host: GitHub
- URL: https://github.com/pycontribs/pia
- Owner: pycontribs
- License: mit
- Created: 2023-01-13T17:57:55.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2025-03-03T17:00:10.000Z (over 1 year ago)
- Last Synced: 2025-04-03T23:47:25.788Z (over 1 year ago)
- Topics: experimental
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 9
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# PIA - Package Installer for Ansible
> Like pip but for Ansible content, resilient content management that works
> fast, offline, with caching, compatible with multiple versions of ansible
> and a very friendly user interface.
This project aims to become an alternative to the current `ansible-galaxy`
command line tool, one that would address some shortcomings such as:
- Ability to run offline, especially when checking if current dependencies
are up to date.
- Use caching similar to how pip does, so network access would be needed only
if current data is not available locally.
- Be idempotent.
## Installation
```
pip3 install pia
```
## Usage
Please note that not all features are implemented yet.
```bash
# Install a collection
pia install namespace.collection_name
# should also accept aliases like `pip i ...`
# Install a collection archive from disk
pia install ./path/to/collection.tar.gz
# Uninstall a collection
pia uninstall namespace.collection_name
# List installed collections
pia list
```