add runall script, update parameters to 4 bed etc and allow incremental updating

This commit is contained in:
Kadir 2024-11-23 22:57:22 +00:00
parent dbf72e42e3
commit 4b6b8628c2
3 changed files with 20 additions and 3 deletions

10
crawler/runall.sh Executable file
View file

@ -0,0 +1,10 @@
#!/usr/bin/env bash
set -euxo pipefail
mkdir -p /tmp/re/
python 1_dump_listings.py | tee -a /tmp/re/1.log | tee -a /tmp/re/log.log
python 2_dump_detail.py | tee -a /tmp/re/2.log | tee -a /tmp/re/log.log
python 3_dump_images.py | tee -a /tmp/re/3.log | tee -a /tmp/re/log.log
python 4_detect_floorplan.py | tee -a /tmp/re/4.log | tee -a /tmp/re/log.log
python 5_routing.py | tee -a /tmp/re/5.log | tee -a /tmp/re/log.log