UPDATE 2024-11-21: The functionality in this repository has now been moved to rigour. See the documentation here: https://opensanctions.github.io/rigour/addresses/
This is a address formatter that can format addresses in multiple formats that are common in different countries.
For formatting the addresses the worldwide.yml from OpenCageData address-formatting repository is used to format the address according to customs in the country that is been encoded.
The complete project contains actually only one class:
Publicly accessible method prototypes are:
def __init__(self, config=None):
pass
def format(self, address, country=None):
pass
def one_line(self, address, country=None):
passInitialize the address formatter
config: (optional) override default config file to use for the address formatter, defaults to config file included in this package
Format an address in the default layout used in the specified country. Return value may contain line breaks.
address: Dictionary that contains the address parts, see below for recognized keyscountry: Country code of the formatting template to use
Recognized keys in address:
attentionhouseroadhouse_numberpostcodecitytownvillagecountystatecountrysuburbcity_districtstate_districtstate_codeneighbourhood
Works the same as format but returns a single line of text.