-
Notifications
You must be signed in to change notification settings - Fork 9
/
Copy pathrun.py
34 lines (24 loc) · 776 Bytes
/
run.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
import asyncio
import sys
from loguru import logger
from console import Console
from core.checker import IMAPChecker
from loader import file_operations
from utils import setup
async def run() -> None:
try:
await file_operations.setup_files()
while True:
module = Console().build()
if module == "checker":
await IMAPChecker().check_accounts()
input("\n\nAll accounts checked, press enter to continue...")
except KeyboardInterrupt:
pass
except Exception as e:
logger.error(f"Unhandled Error: {e}")
if __name__ == "__main__":
if sys.platform == "win32":
asyncio.set_event_loop_policy(asyncio.WindowsSelectorEventLoopPolicy())
setup()
asyncio.run(run())