From ec18b9bf6881ac97efd0617b68ff936033e6a6b7 Mon Sep 17 00:00:00 2001 From: PAN Lei Date: Sat, 8 Nov 2025 14:13:41 +0100 Subject: [PATCH] use ip royal proxy to validate links --- link_validator_executor.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/link_validator_executor.py b/link_validator_executor.py index fa3374c..8e1385c 100644 --- a/link_validator_executor.py +++ b/link_validator_executor.py @@ -3,10 +3,14 @@ import time from workers.link_validator_with_provided_list import validate_all_links -if __name__ == '__main__': +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()