python-nameparser icon indicating copy to clipboard operation
python-nameparser copied to clipboard

A simple Python module for parsing human names into their individual components

Results 40 python-nameparser issues
Sort by recently updated
recently updated
newest added

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...

enhancement

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...

enhancement

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 ```...

enhancement

- 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...

enhancement

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...