Removed asyncio + threading mix. Used requests to send telegram messages
This commit is contained in:
@@ -464,7 +464,7 @@ def main()->None:
|
||||
SEARCH_THREADS_LIST.append((product, p))
|
||||
logging.info(f"{count} products finally loaded")
|
||||
|
||||
p = threading.Thread(target=account_checker.account_checker, args=(3600, ))
|
||||
p = threading.Thread(target=account_checker.work, args=(3600, ))
|
||||
p.start()
|
||||
|
||||
p = threading.Thread(target=count_threads)
|
||||
|
||||
Reference in New Issue
Block a user