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 know this could be very tricky to implement right, but this case is very common in slavic names https://www.kmu.gov.ua/en/team ```In [64]: HumanName('Ivanov Ivan Ivanovich') Out[64]: In [65]: HumanName('Ivanov Ivan')...

enhancement

I had a suggestion for adding a few medical acronyms: bn, np, and rn which I added to my version as we sometimes deal with medical professionals.

Names such as > "Rick" Edmonds are parsed in such a way that "Edmonds" is treated as the first name rather than the last name.

bug

Apparently putting maiden or married names into parentheses directly following the last name is not uncommon. In 0.3.2, this is parsed into the nickname field even if it doesn't follow...

bug

This PR takes all "simple" unit tests, and puts them into a single JSON file to help clean things up. The result is `tests.py` reduced to 814 lines, and an...

enhancement

nameparser version 1.1.1 When I use HumanName with the string "John W. Ingram, V", it can't parse correctly but if I remove the comma, it works. Also, if I try...

bug

The following condition causes single letter conjunctions '&' to not behave the same as multi letter conjunctions in the default conjunctions list. This issue only happens when parsing a name...

Hello First of all, thank you for developing such a fantastic project. I'm using it to parse names in a mixed Arabic and English context, and it works great for...

Hi guys it seems that the parser does not work with vietnamese names where Nguyen would be the last name. `from nameparser import HumanName name = HumanName('Nguyễn Thị Minh Khai')...

Hi, maintainer 👋 I used Golang to package this awesome project into a standalone service, providing HTTP API and GRPC API to public use. repo: https://github.com/soulteary/go-nameparser Based on similar ideas,...