https://github.com/mycroftai/pako
The universal package manager library
https://github.com/mycroftai/pako
hacktoberfest library package-manager
Last synced: 5 months ago
JSON representation
The universal package manager library
- Host: GitHub
- URL: https://github.com/mycroftai/pako
- Owner: MycroftAI
- License: apache-2.0
- Created: 2019-02-11T08:53:18.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2021-05-17T06:08:35.000Z (almost 4 years ago)
- Last Synced: 2024-11-09T09:07:06.018Z (5 months ago)
- Topics: hacktoberfest, library, package-manager
- Language: Python
- Homepage:
- Size: 35.2 KB
- Stars: 4
- Watchers: 10
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Pako
*The universal package manager library*
Often, scripts need to install system dependencies using the native package manager of the user's
OS. Typically, this is solved by having some bash script that runs `apt-get`, assuming the user
is on Ubuntu. Smarter scripts use hand crafted code to detect the user's platform and aggregate
a set of dependencies on a few of the more popular platforms. Our approach is different:
```bash
pako install libgdbm-devel sdl2-dev
```On Ubuntu, this command will run:
```bash
sudo apt-get install -y libgdbm-dev libsdl2-dev
```However, on Solus, this will run:
```bash
sudo eopkg install -y gdbm-devel sdl2-devel
```It works as follows:
- Parse package format (devel/debug/normal library or executable)
- Look up package managers that exist in PATH
- Format parsed package with common package convention of package manager## Installation
```bash
pip3 install pako
```## Usage
Command line:
```
pako (install|update) [package] [-t, --type format]
```Python bindings:
```python
from pako import PakoManager, PackageFormatmanager = PakoManager()
manager.update()
manager.install(['gdbm-dev', 'sdl2-dev'])
manager.install(['ssl-dev'], overrides={'eopkg': ['openssl-devel']})
```### Non-interactive mode
A `no-confirm` flag can be added to calls. This will be translated to the equivalent command line flag such as `apt install -y`.
```python
from pako import PakoManager, PackageFormatmanager = PakoManager()
manager.install(['example-package'], flags=['no-confirm'])
```## Help Wanted
This tool can improve to fit a lot of use cases. Feel free to create an issue or pull request for
new features and improvements. For instance, we need to figure out the best way to handle cases
where a simple package format won't find the appropriate package.### Add Your Package Manager
Add your package manager by adding another data block to the dict object in
`pako/package_manager_data.py`.