Connection lost
Trying to reconnect…
Server didn't respond
Recovering…
Python application runtime
v0.1.2Inspect a Python deployment — interpreter + venv state, pip inventory + freeze, dependency conflicts, outdated packages, sys.path. Read-only. Most actions act on the venv at PY_VENV env var (default /opt/app/venv).
Install
emisar pack install
validates the pack and verifies its content hash before copying it into /etc/emisar/packs.
The --hash
below pins the
install to the exact bytes on this page — a tampered copy is rejected. After
install, reload the runner; it re-reads the catalog and advertises every action.
content hash: sha256:1aad5ac39f13cab6feda8bdc75b63156e93ade31f9ae3672c8b4e5671b180ded
sudo emisar pack install python-app \ --hash sha256:1aad5ac39f13cab6feda8bdc75b63156e93ade31f9ae3672c8b4e5671b180ded \ --dest /etc/emisar/packs # Reload so the runner re-reads the catalog: sudo systemctl reload emisar
Actions 10 total
View on GitHub-
$PY_VENV/bin/pip cache info
-
$PY_VENV/bin/pip check
-
$PY_VENV/bin/pip freeze
-
$PY_VENV/bin/pip list
-
$PY_VENV/bin/pip list --outdated
-
$PY_VENV/bin/pip show <pkg>
-
python3 --version (system)
-
du -sh site-packages/*
-
python -c 'import sys; print(sys.path)'
-
$PY_VENV/bin/python --version