Connection lost
Trying to reconnect…
Server didn't respond
Recovering…
Python application runtime
v0.1.4Inspect 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:f0f36636fe741560b2112bf5ec0003ec2a68a0bb5352eeb2b41f3406fa9f65f2
sudo emisar pack install python-app \ --hash sha256:f0f36636fe741560b2112bf5ec0003ec2a68a0bb5352eeb2b41f3406fa9f65f2 \ --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