A tiny terminal toy: prints the NULLSEC ASCII art with one of DNR, OPSEC,
NULLSEC or EBK picked at random underneath it, in a random color.
$ nullsec
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@*+++++==*@@@@@@@@@@
@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@#:.......+@@@@@@@@@@@
...
NULLSEC
pip install nullsec # PyPI
pipx install nullsec # isolated, recommended for a CLI
yay -S nullsec # Arch Linux (AUR)nullsec # random tag, random color
nullsec --tag EBK # pin the tag
nullsec --color never # no ANSI codes
nullsec --seed 42 # reproducible output
nullsec --version
python -m nullsec # same thing, without the entry pointColor is on when stdout is a TTY and off when piped. NO_COLOR and
FORCE_COLOR are both honored, and --color always|never overrides everything.
from nullsec import render
print(render("OPSEC", color=False))python -m pip install -e .
python -m pytestMIT