Metadata-Version: 2.1
Name: apt_soso
Version: 1.0.3
Summary: Provides a couple of nice-to-have commands which are not available in the standard apt suite.
Author-email: Leon Dionne <ldionne@dridesign.sh.cn>
Description-Content-Type: text/markdown
Classifier: License :: OSI Approved :: GNU General Public License v3 or later (GPLv3+)
Classifier: Environment :: Console
Classifier: Operating System :: POSIX :: Linux
Classifier: Topic :: System :: Installation/Setup
Project-URL: Home, https://github.com/Zen-Master-SoSo/apt_soso

# apt_soso

Provides a couple of nice-to-have commands which are not available in the standard apt suite.

## Install

You must have **python-apt** installed on your system. It might already be
there, if you have a debian/ubuntu based system. If not, install it with:

```bash
$ sudo apt install python-apt
```

Install this package from pypi:

```bash
$ pip install apt_soso
```

## Help text:

```
usage: apt-soso [-h] [--installed-pkgs] [--essential-pkgs] [--important-pkgs]
                [--stand-alones] [--files] [--description] [--all-files]
                [--all-dirs] [--info-dir INFO_DIR]

options:
  -h, --help            show this help message and exit
  --installed-pkgs, -p  List all installed packages.
  --essential-pkgs, -e  List installed packages marked "essential".
  --important-pkgs, -i  List installed packages marked "important".
  --stand-alones, -s    List packages which no other packages are dependent
                        upon.
  --files, -f           Show installed files with packages.
  --description, -d     Show package descriptions with packages.
  --all-files, -F       List all files installed for all installed packages.
  --all-dirs, -D        List top-level directories where files are installed
                        for all installed packages.
  --info-dir INFO_DIR   Directory where package info is stored (default
                        /var/lib/dpkg/info).
```

