1. get all listings 2. get all detail jsons 3. get all images 4. get all floorplans 5. detecting floorplans Also updating dependencies for huggingface etc.
7 lines
165 B
Python
7 lines
165 B
Python
from data_access import Listing
|
|
from tqdm import tqdm
|
|
|
|
listings = Listing.get_all_listings()
|
|
|
|
for listing in tqdm(listings):
|
|
tqdm.write(listing.calculate_sqm())
|