Addresses
| Attribute | Value | Detail |
|---|---|---|
| name | address |
Used in schema definitions |
| label | Address | plural: Addresses |
| group | addresses |
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.AddressType
Bases: PropertyType
A geographic address used to describe a location of a residence or post box. There is no specified order for the sub-parts of an address (e.g. street, city, postal code), and we should consider introducing an Address schema type to retain fidelity in cases where address parts are specified.
Source code in followthemoney/types/address.py
clean_text(text, fuzzy=False, format=None, proxy=None)
Basic clean-up.
Source code in followthemoney/types/address.py
compare_sets(left, right, func=max)
Compare two sets of addresses. This can be done entirely in native code if the comparison function is max, otherwise we defer to the superclass.