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.9.tar.gz (68.3 kB view details)

Uploaded Source

Built Distribution

name_matching-0.8.9-py3-none-any.whl (114.4 kB view details)

Uploaded Python 3

File details

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

File metadata

  • Download URL: name_matching-0.8.9.tar.gz
  • Upload date:
  • Size: 68.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for name_matching-0.8.9.tar.gz
Algorithm Hash digest
SHA256 12fd6160741df332a26aac549c4de21e280f62588868bead2778aa63f683021d
MD5 908b74006726846c31cae1a1c3035bbf
BLAKE2b-256 84781289f7344792e234d07beb932b2252a51ce4b9529f2da9cb6140ea12195c

See more details on using hashes here.

File details

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

File metadata

  • Download URL: name_matching-0.8.9-py3-none-any.whl
  • Upload date:
  • Size: 114.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.2 CPython/3.10.4

File hashes

Hashes for name_matching-0.8.9-py3-none-any.whl
Algorithm Hash digest
SHA256 eda367253a579a8b14fd59f138229006d171d22140d12c7286e3ca5920d1c450
MD5 a1b05061409aaba2d172236124663636
BLAKE2b-256 29c7ae9b97452606821d0300391794e39bff3a7d4bc21f0784644edc98b08dd9

See more details on using hashes here.

Supported by

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