chg: [module] debug
Some checks failed
CI / ail_test (3.10) (push) Has been cancelled
CI / ail_test (3.7) (push) Has been cancelled
CI / ail_test (3.8) (push) Has been cancelled
CI / ail_test (3.9) (push) Has been cancelled

This commit is contained in:
terrtia 2024-10-11 14:55:04 +02:00
parent 44d1860b87
commit e55aeab11c
No known key found for this signature in database
GPG key ID: 1E1B1F50D84613D0

View file

@ -71,7 +71,6 @@ class CEDetector(AbstractModule):
words = set(words)
for word in words:
print(word)
if word in self.csam_words:
is_csam = True
if word in self.child_worlds:
@ -111,7 +110,18 @@ def test_detection():
is_detected = True
if not is_detected:
not_detected.add(domain)
print(not_detected)
print()
print()
print()
print()
for domain in not_detected:
dom = Domain(domain)
print('-----------', domain)
for h in dom.get_correlation('title').get('title', []):
print(Title(h[1:]).get_content().lower())
print()
print()
if __name__ == "__main__":