feat: blacklist

This commit is contained in:
2026-06-16 00:24:40 +02:00
parent 3df8cfffc7
commit 015eebd6ed
6 changed files with 1315 additions and 25 deletions
+11 -8
View File
@@ -1,16 +1,15 @@
import logging
import sys
from cool_domain import PKG_NAME, PKG_VERSION
from cool_domain.cache import Cache
from cool_domain.constants import LANGS
from cool_domain.factory import Factory
from cool_domain.logs import setup_logs
from cool_domain.params import parse_parameters
from cool_domain.tld_list import TLDList
from cool_domain.word_list import WordList
from . import PKG_NAME, PKG_VERSION
from .cache import Cache
from .constants import LANGS
from .factory import Factory
from .logs import setup_logs
from .params import parse_parameters
from .tld_list import TLDList
def main() -> int:
params = parse_parameters(sys.argv[1:])
@@ -33,3 +32,7 @@ def main() -> int:
else:
logging.getLogger().info(factory.random_domain())
return 0
if __name__ == "__main__":
main()