Skip to main content

Library for parsing unstructured FR addresses strings into address components

Project description

fraddress-parser

fraddress is a python library for parsing unstructured FR addresses strings into address components using a custom NLP model that learns from patterns. This library relies on the parserator library.

How to use fraddress

Install fraddress with pip.

pip install fraddress

Then parse some address with parse or tag.

>>> import fraddress
>>> fraddress.parse('51 rue Nationale Paris 75006')
[('51', 'AddressNumber'), ('rue', 'StreetType'), ('Nationale', 'StreetName'), ('Paris', 'City'), ('75006', 'Zipcode')]

>>> fraddress.tag('51 rue Nationale Paris 75006')
OrderedDict([('AddressNumber', '51'), ('StreetType', 'rue'), ('StreetName', 'Nationale'), ('City', 'Paris'), ('Zipcode', '75006')])

Check trained patterns

Go to the training directory and check the file trained_pattern.txt to see which pattern is already known by the model.

How to train a new parser

All you need is some training data to teach your parser about its domain, and then follow the instructions of the U.S version.

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

fraddress-0.0.4.tar.gz (15.3 kB view hashes)

Uploaded Source

Built Distribution

fraddress-0.0.4-py3-none-any.whl (15.1 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page