Releases: derek73/python-nameparser
Releases · derek73/python-nameparser
v0.3.5
v0.3.4
v0.3.3
v0.3.2
v0.3.1
v0.3.0
Initial refactoring of the constants and configurations system to make it easier to modify (#1). You can now adjust the parser's configuration like so:
>>> from nameparser import HumanName
>>> from nameparser.config import CONSTANTS
>>> CONSTANTS.titles.add('dean', 'Chemistry')
>>> hn = HumanName("Assoc Dean of Chemistry Robert Johns")
>>> hn
<HumanName : [
Title: 'Assoc Dean of Chemistry'
First: 'Robert'
Middle: ''
Last: 'Johns'
Suffix: ''
Nickname: ''
]>
New instructions for customizing the parser are included in the new documentation.
Install:
pip install nameparser
v0.3-alpha
v0.3-alpha-2