This commit is contained in:
2026-04-17 00:44:41 +02:00
parent fa1d01527d
commit 89f14463c5
42 changed files with 2452 additions and 314 deletions

8
run.py
View File

@@ -1,6 +1,14 @@
import sys
import warnings
import GramAddict
warnings.filterwarnings("ignore", category=UserWarning, module="urllib3")
try:
from urllib3.exceptions import NotOpenSSLWarning
warnings.filterwarnings("ignore", category=NotOpenSSLWarning)
except ImportError:
pass
if __name__ == "__main__":
try:
GramAddict.run()