This commit is contained in:
ducklet 2022-08-14 20:41:58 +02:00
commit 01a96c14d4
18 changed files with 2108 additions and 0 deletions

16
run Executable file
View file

@ -0,0 +1,16 @@
#!/bin/sh -euf
here=$(dirname "$(realpath "$0")")
# cd "$here"
python_bin="$here"/.venv/bin/python
[ -z "${DEBUG:-}" ] || set -x
# time python -m cProfile -s tottime -m metadex -n scan ~ >profile-scan.txt
PYTHONPATH="$here" \
"$python_bin" -m metadex \
--db "$here/metadex.sqlite" \
--ignore-from "$here/metadex.ignore" \
"$@"