mirror of
https://github.com/ail-project/ail-framework.git
synced 2024-11-22 22:27:17 +00:00
First version of the DomainClassifier
This commit is contained in:
parent
3055b0deae
commit
246621f663
1 changed files with 5 additions and 2 deletions
|
@ -44,6 +44,9 @@ def main():
|
|||
subscriber_name = "DomainClassifier"
|
||||
subscriber_config_section = "PubSub_Global"
|
||||
|
||||
cc = cfg.get("PubSub_DomainClassifier", "cc")
|
||||
cc_tld = cfg.get("PubSub_DomainClassifier", "cc_tld")
|
||||
|
||||
sub = ZMQ_PubSub.ZMQSub(configfile, subscriber_config_section, channel, subscriber_name)
|
||||
|
||||
# FUNCTIONS #
|
||||
|
@ -71,10 +74,10 @@ def main():
|
|||
c.text(rawtext=paste)
|
||||
c.potentialdomain()
|
||||
c.validdomain(rtype=['A'],extended=True)
|
||||
localizeddomains = c.include(expression=r'\.lu$')
|
||||
localizeddomains = c.include(expression=cc_tld)
|
||||
if localizeddomains:
|
||||
print (localizeddomains)
|
||||
localizeddomains = c.localizedomain(cc='LU')
|
||||
localizeddomains = c.localizedomain(cc=cc)
|
||||
if localizeddomains:
|
||||
print (localizeddomains)
|
||||
except IOError:
|
||||
|
|
Loading…
Reference in a new issue