E-Mail Addresses
Attribute | Value | Detail |
---|---|---|
name | email |
Used in schema definitions |
label | E-Mail Address | plural: E-Mail Addresses |
group | emails |
Used in search indexing to query all properties of a given type |
matchable | Suitable for use in entity matching | |
pivot | Suitable for use as a pivot point for connecting to other entities |
Python API
followthemoney.types.EmailType
Bases: PropertyType
Internet mail address (e.g. user@example.com). These are notoriously hard to validate, but we use an irresponsibly simple rule and hope for the best.
Source code in followthemoney/types/email.py
clean_text(text, fuzzy=False, format=None, proxy=None)
Parse and normalize an email address.
Returns None if this is not an email address.
Source code in followthemoney/types/email.py
validate(value, fuzzy=False, format=None)
Check to see if this is a valid email address.