cli arguments + optimization

test
This commit is contained in:
2025-12-27 19:03:00 +03:00
parent 5cb4fa1cf8
commit 17f2f34f87
8 changed files with 65 additions and 25 deletions

View File

@@ -1,4 +1,12 @@
VENV=source ./.venv/bin/activate;
.PHONY: run
.PHONY: run run_full run_stocks run_orgs run_contractors
run:
$(VENV) python run.py
$(VENV) python run.py
run_full:
$(VENV) python run.py --mode full
run_stocks:
$(VENV) python run.py --mode stocks
run_orgs:
$(VENV) python run.py --mode orgs
run_contractors:
$(VENV) python run.py --mode contractors