Skip to main content

Person and company name normalization: strip titles, suffixes, legal forms, resolve nicknames to canonical forms

Project description

corp-names

Name normalization library for people and companies. Strips titles, suffixes, middle initials, and resolves nicknames to canonical forms. Includes 15,000+ person name entries and 1,000+ company legal suffixes across 200+ jurisdictions.

Installation

pip install corp-names

or with uv:

uv add corp-names

Usage

from corp_names import normalize_name

result = normalize_name("Dr. Bob Smith Jr.")
print(result.normalized)  # "robert smith"
print(result.first)       # "robert"
print(result.last)        # "smith"
print(result.prefix)      # "dr"
print(result.suffix)      # "jr"

Normalization levels

Control how aggressively nicknames are resolved with the level parameter:

# "common" (default) — only English nicknames (bob→robert, bill→william)
normalize_name("Bob Smith").first                        # "robert"
normalize_name("Guillaume Dupont").first                 # "guillaume" (unchanged)

# "international" — common + cross-language variants (guillaume→william, giuseppe→joseph)
normalize_name("Guillaume Dupont", level="international").first  # "william"
normalize_name("Elsa Schmidt", level="international").first      # "elsa" (unchanged)

# "all" — common + international + archaic (elsa→elizabeth, fanny→frances)
normalize_name("Elsa Schmidt", level="all").first  # "elizabeth"

Name lookup API

from corp_names import is_known_name, get_name_category

is_known_name("bob")          # True (nickname)
is_known_name("robert")       # True (canonical)
is_known_name("hiroshi")      # True (japanese)

get_name_category("bob")      # "common"
get_name_category("guillaume") # "international"
get_name_category("hiroshi")  # "japanese"

Company Name Normalization

from corp_names import normalize_company

result = normalize_company("Apple Inc.")
print(result.normalized)   # "apple"
print(result.suffix)       # "inc"
print(result.entity_type)  # "Corporation"

normalize_company("Siemens AG").normalized                  # "siemens"
normalize_company("Samsung Electronics Co., Ltd.").normalized  # "samsung electronics"
normalize_company("Société Générale SA").normalized         # "societe generale"
normalize_company("The Walt Disney Company").normalized     # "walt disney"
normalize_company("Johnson & Johnson").normalized           # "johnson and johnson"
normalize_company("Unilever N.V.").normalized               # "unilever"
normalize_company("Bayerische Motoren Werke GmbH").normalized  # "bayerische motoren werke"

CLI

Person names

corp-names normalize "Dr. Bob Smith Jr."
# Original:   Dr. Bob Smith Jr.
# Normalized: robert smith
# First:      robert
# Last:       smith
# Prefix:     dr
# Suffix:     jr
# Nickname:   resolved to canonical form

corp-names normalize "Sir William H. Gates III" --json

corp-names normalize "Guillaume Dupont" --level common        # unchanged
corp-names normalize "Guillaume Dupont" --level international # resolves to william

Company names

corp-names normalize-company "Apple Inc."
# Original:   Apple Inc.
# Normalized: apple
# Suffix:     inc
# Type:       Corporation

corp-names normalize-company "Samsung Electronics Co., Ltd." --json

Normalization Pipeline

  1. Unicode normalize (unidecode for accented characters)
  2. Strip punctuation (remove periods, commas; preserve hyphens)
  3. Tokenize by whitespace
  4. Strip prefixes (titles, honorifics)
  5. Strip suffixes (generational, credentials)
  6. Remove middle initials (single-letter tokens)
  7. Resolve nicknames to canonical forms
  8. Build normalized lowercase output

NormalizedName Model

class NormalizedName(BaseModel):
    original: str            # Original input
    normalized: str          # Full normalized lowercase name
    first: str               # First/given name (after nickname resolution)
    last: str                # Last/family name
    prefix: str              # Detected prefix(es), e.g. "dr"
    suffix: str              # Detected suffix(es), e.g. "jr"
    nickname_resolved: bool  # Whether first name was a nickname

NormalizedCompany Model

class NormalizedCompany(BaseModel):
    original: str            # Original input
    normalized: str          # Cleaned lowercase name without suffixes
    suffix: str              # Detected suffix, e.g. "inc"
    entity_type: str         # Deduced type, e.g. "Corporation"
    the_prefix_stripped: bool # Whether leading "The" was removed

Data

Company suffixes

1,000+ legal suffixes across 200+ jurisdictions, merged from cleanco (MIT) and GLEIF ELF Code List (ISO 20275). Entity types include Corporation, Limited, LLC, Partnership, Sole Proprietorship, Non-Profit, and more.

Person names

All name data is stored in nicknames.json with categorized entries:

  • Nickname mappings (~1,350): resolve informal/international names to canonical forms
    • common: English nicknames (bob→robert, liz→elizabeth)
    • international: cross-language variants (guillaume→william, giuseppe→joseph)
    • archaic: historical nicknames (elsa→elizabeth, fanny→frances)
  • Standalone canonical names (~13,800): known first names with no mapping needed
    • canonical: Western names (mark, laura, emma, scott)
    • cjk: Chinese names (li, wang, zhang)
    • japanese: Japanese names (hiroshi, takashi, akira)
    • korean: Korean names (kim, park, choi)
    • arabic: Arabic/Islamic names (ali, omar, mustafa)
    • french_compound: French compound names (jean-pierre, marie-claire)
  • Prefixes: ~150 titles and honorifics (military, religious, nobility, academic, political)
  • Suffixes: ~600 credentials, generational markers, and honors (PhD, Jr, III, OBE, CPA)

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

corp_names-0.3.3.tar.gz (98.4 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

corp_names-0.3.3-py3-none-any.whl (92.9 kB view details)

Uploaded Python 3

File details

Details for the file corp_names-0.3.3.tar.gz.

File metadata

  • Download URL: corp_names-0.3.3.tar.gz
  • Upload date:
  • Size: 98.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for corp_names-0.3.3.tar.gz
Algorithm Hash digest
SHA256 471ac286762200b648984810b735894e9cc79dadf047b7fe226911cc20991d3f
MD5 debce049bd77fc7441afeeaab7df8854
BLAKE2b-256 ea62b4ffb669cb3dc059a6c0a5f11299177e6cabd7c4d47c79ed4ddacd1c3260

See more details on using hashes here.

File details

Details for the file corp_names-0.3.3-py3-none-any.whl.

File metadata

  • Download URL: corp_names-0.3.3-py3-none-any.whl
  • Upload date:
  • Size: 92.9 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: uv/0.6.14

File hashes

Hashes for corp_names-0.3.3-py3-none-any.whl
Algorithm Hash digest
SHA256 4354774195d6dda6fe54cc42acae2f1324bbaba126ef476b4650b100e75a12a9
MD5 21e8859b7ce76795bbf7d413bb617d00
BLAKE2b-256 d7a933dc99a6f6fc5b779afafd2ee596ce6aafb8e5ae1756f5bc014fca2752ba

See more details on using hashes here.

Supported by

AWS Cloud computing and Security Sponsor Datadog Monitoring Depot Continuous Integration Fastly CDN Google Download Analytics Pingdom Monitoring Sentry Error logging StatusPage Status page