remove print
This commit is contained in:
parent
ebf379a716
commit
6c965151f9
@ -24,7 +24,7 @@ if __name__ == "__main__":
|
||||
print("Unable to load seller shop database!")
|
||||
sys.exit(-1)
|
||||
# print("Loaded seller shop database: " + str(database_lenght) + " listings")
|
||||
pbar = tqdm(total=database_length) # print progress ba
|
||||
pbar = tqdm(total=database_length) # print progress bar
|
||||
compare_start_timestamp = datetime.now() # set start time for comparing
|
||||
for shop_listing_url in seller_db.all():
|
||||
# print(shop_listing_url["epid"])
|
||||
@ -50,7 +50,7 @@ if __name__ == "__main__":
|
||||
sys.stdout.flush()
|
||||
cheaper_listings = list()
|
||||
for competitor_listing_url in competitor_listings:
|
||||
print(competitor_listing_url)
|
||||
# print(competitor_listing_url)
|
||||
# print(shop_listing_url["epid"])
|
||||
|
||||
if seller_db.search(Query().epid == competitor_listing_url):
|
||||
|
Loading…
Reference in New Issue
Block a user