python-nameparser
python-nameparser copied to clipboard
A simple Python module for parsing human names into their individual components
I do have a name like the following: ``` SIMS JEANNETTE MAXINE BISHOP ``` Last , First , Middle First: Jeannette Last: Sims Middle: Maxine Bishop Is there a way...
Ticket to discuss expanding the recognition, based on; https://github.com/derek73/python-nameparser/issues/121#issuecomment-1025228214 Suggestion is to add a family name with separate tussenvoegsels / family name affix/prefixes. To avoid introducing breaking changes I would...
I noticed the ability to add conjunctions that allows adding some names, suffixes etc but is it possible to select a different database for the F Names and L Names?...
The library does not handle Arabic names well, even the most common patterns. I'm no expert on the topic, but I'm Arabic and know the common patterns. **Compound Names** My...
I'm not sure if I am missing something, but if I run the parser on the string "de Mesnil", I am expecting it to give me either a first or...
The parser seems to parse incorrectly for Chinese names in English. (below uses Malaysia's Chinese name) Names without nickname. Current: ```python >>> name = HumanName('Tham Jun Hoe') >>> name ```...
- converted REGEXES from set() to list - added optional label/tag to regex tuples - created new self variable for nickname regexes - changed nickname processing logic - added tests...
Based on the documentation, I cannot tell one way or another whether customizations at the module-level are persistent over sessions/restarts etc. If so - how would I go about restoring...