Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
13 changes: 12 additions & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,15 +20,26 @@ Run a single test file or test:

You can also pass a name string to see how it will be parsed:

$ python -m nameparser "Secretary of State Hillary Rodham-Clinton"
$ python -m nameparser "secretary of state hillary rodham-clinton"
<HumanName : [
title: 'secretary of state'
first: 'hillary'
middle: ''
last: 'rodham-clinton'
suffix: ''
nickname: ''
maiden: ''
]>
<HumanName : [
title: 'Secretary of State'
first: 'Hillary'
middle: ''
last: 'Rodham-Clinton'
suffix: ''
nickname: ''
maiden: ''
]>
Initials: H. R.

CI runs tests against Python 3.10–3.14 via GitHub Actions on every push and pull request.

Expand Down
1 change: 1 addition & 0 deletions docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@ components.
* hn.last
* hn.suffix
* hn.nickname
* hn.maiden

Supports 3 different comma placement variations in the input string.

Expand Down
Loading