add runall script, update parameters to 4 bed etc and allow incremental updating
This commit is contained in:
parent
dbf72e42e3
commit
4b6b8628c2
3 changed files with 20 additions and 3 deletions
|
|
@ -4,10 +4,16 @@ from tqdm import tqdm
|
|||
|
||||
from data_access import Listing
|
||||
|
||||
incremental = True
|
||||
|
||||
|
||||
listings = Listing.get_all_listings()
|
||||
filtered_listings = []
|
||||
for listing in listings:
|
||||
if not listing.path_detail_json().exists():
|
||||
if not incremental and not listing.isRemoved:
|
||||
filtered_listings.append(listing)
|
||||
|
||||
if incremental and not listing.path_detail_json().exists():
|
||||
filtered_listings.append(listing)
|
||||
|
||||
for listing in tqdm(filtered_listings):
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue