17 lines
349 B
Python
17 lines
349 B
Python
import time
|
|
|
|
from workers.link_validator_with_provided_list import validate_all_links
|
|
|
|
|
|
def start_link_validation():
|
|
# generate test data
|
|
while True:
|
|
print("call validate_all_links()")
|
|
validate_all_links([])
|
|
print("wait for 30 seconds")
|
|
time.sleep(10)
|
|
|
|
|
|
if __name__ == '__main__':
|
|
start_link_validation()
|