nameparser parses human names into seven fields — title, given, middle, family, suffix, nickname, maiden. Results are immutable, configuration is composable, and locale packs are opt-in.
📣 nameparser 2.0 is out. Existing HumanName code keeps working through 2.x, and most 1.x code needs no changes. The migration guide has the field-by-field map. Please open an issue for anything that parses wrong.
2.1 adds East Asian name support. Chinese, Japanese and Korean names written in their own scripts are read family-first, unspaced Korean names are split against the census surname list, and CJK honorifics are recognized. See East Asian names.
Installation
pip install nameparser
Requires Python 3.11+.
Quick Start Example
>>> from nameparser import parse
>>> name = parse("Dr. Juan Q. Xavier de la Vega III (Doc Vega)")
>>> name
<ParsedName: [
title: 'Dr.'
given: 'Juan'
middle: 'Q. Xavier'
family: 'de la Vega'
suffix: 'III'
nickname: 'Doc Vega'
]>
>>> name.family_base, name.family_particles
('Vega', 'de la')
>>> name.render("{family}, {given}")
'de la Vega, Juan'
>>> parse("김민준").family # Korean: unspaced, split on the census list
'김'
>>> parse("高橋 みなみ").family # Japanese: kanji with kana, family first
'高橋'
>>> parse("김민준씨").suffix # an honorific written against the name
'씨'
>>> parse("г-н Иван Петров").title # Cyrillic title
'г-н'
>>> parse("محمد بن سلمان").family # Arabic: بن chains onto the family name
'بن سلمان'
>>> from nameparser import locales, parser_for
>>> chinese = parser_for(locales.ZH) # Han text does not say which language
>>> chinese.parse("毛泽东").family # so splitting it is opt-in
'毛'
>>> russian = parser_for(locales.RU)
>>> russian.parse("Сидоров Иван Петрович").family
'Сидоров'
>>> locales.available()
('ja', 'ru', 'tr_az', 'zh')
Learn more
Using the parser — the full tour: input shapes, aggregates, rendering, comparison, ambiguities, tokens
Customizing the parser — vocabulary, behavior, and presentation
Locale packs — opt-in bundles for East Slavic patronymics, Turkic markers, and more
There’s also a CLI: python -m nameparser --json "Doe, John"
Coming from 1.x
HumanName and CONSTANTS keep working in 2.0 — same imports, same attributes, same mutation API. What 2.0 removes is the batch of deprecations 1.3 and 1.4 announced, so if your test suite runs clean on 1.4 under python -W error::DeprecationWarning, you are nearly done. Two things that check will not catch: four removals 1.4 never warned about (three raise on contact, the fourth only warns), and one that changes results silently — name == "John Smith" is now False. Migrating from HumanName covers both, and translates a v1 customization into the new API whenever that’s convenient for you.
See the release log for the full list of changes in the 2.0 series.
License
LGPL licensed. See LICENSE for details.
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file nameparser-2.1.0.tar.gz.
File metadata
- Download URL: nameparser-2.1.0.tar.gz
- Upload date:
- Size: 380.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
ab4286a9ee9bb7ca489e95a543b81ac3ff748ec48acce76d5c4ae49b4fe2f2cc
|
|
| MD5 |
dbaf8b077f1298c998b8d6e8b736a3bd
|
|
| BLAKE2b-256 |
8d33ec1bce5af260629677576313c15c2b3f47ecdd8c5c6735a06b7243faa8c2
|
Provenance
The following attestation bundles were made for nameparser-2.1.0.tar.gz:
Publisher:
python-publish.yml on derek73/python-nameparser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nameparser-2.1.0.tar.gz -
Subject digest:
ab4286a9ee9bb7ca489e95a543b81ac3ff748ec48acce76d5c4ae49b4fe2f2cc - Sigstore transparency entry: 2366615495
- Sigstore integration time:
-
Permalink:
derek73/python-nameparser@49c381d5a039aee6655cff5149c9177aec19663c -
Branch / Tag:
refs/tags/v2.1.0 - Owner: https://github.com/derek73
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@49c381d5a039aee6655cff5149c9177aec19663c -
Trigger Event:
release
-
Statement type:
File details
Details for the file nameparser-2.1.0-py3-none-any.whl.
File metadata
- Download URL: nameparser-2.1.0-py3-none-any.whl
- Upload date:
- Size: 174.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? Yes
- Uploaded via: twine/7.0.0 CPython/3.13.14
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b3f14bce947c65610023a2eca1f723806bf599221f0a5aa7e13711be4f3fa2d5
|
|
| MD5 |
7dbb22805c2729233de87dfa2dfc1049
|
|
| BLAKE2b-256 |
d15a85036a594ce3d26b2717736e19047c0d6cb8f3027139c4a514a39f83d272
|
Provenance
The following attestation bundles were made for nameparser-2.1.0-py3-none-any.whl:
Publisher:
python-publish.yml on derek73/python-nameparser
-
Statement:
-
Statement type:
https://in-toto.io/Statement/v1 -
Predicate type:
https://docs.pypi.org/attestations/publish/v1 -
Subject name:
nameparser-2.1.0-py3-none-any.whl -
Subject digest:
b3f14bce947c65610023a2eca1f723806bf599221f0a5aa7e13711be4f3fa2d5 - Sigstore transparency entry: 2366615564
- Sigstore integration time:
-
Permalink:
derek73/python-nameparser@49c381d5a039aee6655cff5149c9177aec19663c -
Branch / Tag:
refs/tags/v2.1.0 - Owner: https://github.com/derek73
-
Access:
public
-
Token Issuer:
https://token.actions.githubusercontent.com -
Runner Environment:
github-hosted -
Publication workflow:
python-publish.yml@49c381d5a039aee6655cff5149c9177aec19663c -
Trigger Event:
release
-
Statement type: