Package turbomail :: Module email_validator :: Class EmailHarvester
[hide private]
[frames] | no frames]

Class EmailHarvester

source code

   object --+            
            |            
BaseValidator --+        
                |        
  DomainValidator --+    
                    |    
       EmailValidator --+
                        |
                       EmailHarvester

Instance Methods [hide private]
 
__init__(self, *a, **k)
x.__init__(...) initializes x; see x.__class__.__doc__ for signature
source code
 
harvest(self, text)
Iterator that yields the e-mail addresses contained in *text*.
source code

Inherited from EmailValidator: validate, validate_email, validate_local_part

Inherited from DomainValidator: lookup_domain, validate_domain

Inherited from DomainValidator (private): _apply_common_rules

Inherited from BaseValidator: validate_or_raise

Inherited from object: __delattr__, __getattribute__, __hash__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __str__

Class Variables [hide private]

Inherited from DomainValidator: domain_pattern, domain_regex, false_positive_ips

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

__init__(self, *a, **k)
(Constructor)

source code 

x.__init__(...) initializes x; see x.__class__.__doc__ for signature

Overrides: object.__init__
(inherited documentation)