Skip to main content

A package for the matching of company names

Project description

name_matching

Name matching

Name matching is a Python package for the matching of company names. This package has been developed to match the names of companies from different databases together to allow them to be merged. The package has a number of options to determine how exact the matches should be and also for the selection of different name matching algorithms.

For a more in-depth discussion of the name matching package please see the company name matching medium post

Installation

The package can be installed via PiPy:

pip install name_matching

Alternatively you could install the package by downloading the repo, navigating to the folder and run the setup in pip locally

pip install .

Usage

To see example usage of the package you can use the notebook folder. An example of the usage is also given below

import pandas as pd
from name_matching.name_matcher import NameMatcher

# define a dataset with bank names
df_companies_a = pd.DataFrame({'Company name': [
        'Industrial and Commercial Bank of China Limited',
        'China Construction Bank',
        'Agricultural Bank of China',
        'Bank of China',
        'JPMorgan Chase',
        'Mitsubishi UFJ Financial Group',
        'Bank of America',
        'HSBC',
        'BNP Paribas',
        'Crédit Agricole']})

# alter each of the bank names a bit to test the matching
df_companies_b = pd.DataFrame({'name': [
        'Bank of China Limited',
        'Mitsubishi Financial Group',
        'Construction Bank China',
        'Agricultural Bank',
        'Bank of Amerika',
        'BNP Parisbas',
        'JP Morgan Chase',
        'HSCB',
        'Industrial and Commercial Bank of China',
        'Credite Agricole']})

# initialise the name matcher
matcher = NameMatcher(number_of_matches=1, 
                      legal_suffixes=True, 
                      common_words=False, 
                      top_n=50, 
                      verbose=True)

# adjust the distance metrics to use
matcher.set_distance_metrics(['bag', 'typo', 'refined_soundex'])

# load the data to which the names should be matched
matcher.load_and_process_master_data(column='Company name',
                                     df_matching_data=df_companies_a, 
                                     transform=True)

# perform the name matching on the data you want matched
matches = matcher.match_names(to_be_matched=df_companies_b, 
                              column_matching='name')

# combine the datasets based on the matches
combined = pd.merge(df_companies_a, matches, how='left', left_index=True, right_on='match_index')
combined = pd.merge(combined, df_companies_b, how='left', left_index=True, right_index=True)

Contributing

All contributions are welcome. For more substantial changes, please open an issue first to discuss what you would like to change.

License

The code is licensed under the MIT/X license an extended version of the licence: MIT

Thanks

Thanks to the work of implementing name matching algorithms done in the Abydos package. These form the basis of the name matching algorithms used in this package.

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

name_matching-0.8.12.tar.gz (68.8 kB view details)

Uploaded Source

Built Distribution

name_matching-0.8.12-py3-none-any.whl (112.8 kB view details)

Uploaded Python 3

File details

Details for the file name_matching-0.8.12.tar.gz.

File metadata

  • Download URL: name_matching-0.8.12.tar.gz
  • Upload date:
  • Size: 68.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.1.1 CPython/3.11.7

File hashes

Hashes for name_matching-0.8.12.tar.gz
Algorithm Hash digest
SHA256 ff551315eeb17410ca7f0d589d38aed395daf165fb1e17ea679381aa52225c40
MD5 a92624daf204c087cb82bb11c8612956
BLAKE2b-256 81bf4ca5edf95d65f229bb21b6622f11fd3ce56cf66e9a21b98de373be1b1c2a

See more details on using hashes here.

File details

Details for the file name_matching-0.8.12-py3-none-any.whl.

File metadata

File hashes

Hashes for name_matching-0.8.12-py3-none-any.whl
Algorithm Hash digest
SHA256 ac5d3ce690eea657c2187f1779c77978a94ccbcb073286978dc7cb9fe3f30ba8
MD5 0d9e236982a8e044f92c0ca4c99b5f8f
BLAKE2b-256 2d1f3685cbd4ecd055dd21aca3dabd483b210af64b2082fb61ed75900f93651c

See more details on using hashes here.

Supported by

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