Files
appointment_request/link_validator_executor.py

16 lines
427 B
Python

import time
from workers.link_validator_with_provided_list import validate_all_links
# if __name__ == '__main__':
# # link_list = MONGO_STORE_MANAGER.get_links_to_validate()
# validate_with_FR_ip(segment_position=2)
if __name__ == '__main__':
# generate test data
while True:
print("call validate_all_links()")
validate_all_links()
print("wait for 30 seconds")
time.sleep(30)