Skip to main content

SPDX License Matcher

A Python tool which takes the license text from the user, compares it with the SPDX License List using an algorithm which finds close matches and returns differences if the input license text is found to be a close match.

A Redis (or Valkey) server is used to store the license texts.

Requires Python 3.9+ and Java 11+ (for SPDX Java Tools).

Usage

spdx-license-matcher -f filename -t threshold
  • filename is the file with the license text (required)
  • threshold is a value up to which we will just won't consider a match (optional; default: 0.9)

Run spdx-license-matcher --help for more info.

(For the very first time it may take a while to build the license.)

Installation

pipx install license-matcher

Or with uv:

uv tool install license-matcher

The package bundles SPDX Java Tools. No separate jar download needed.

To use a different jar version, set the SPDX_TOOLS_JAR environment variable to its path before running.

Install Redis/Valkey

Redis/Valkey stores the pre-processed SPDX License List. Install it once, then keep it running while using the tool.

  • Linux

    sudo apt-get install redis-server
    
  • macOS

    brew install redis
    brew services start redis
    
  • Windows

    Download from microsoftarchive/redis and install.

Verify installation

Verify Redis is running: redis-cli ping should return PONG.

By default, the tool connects to Redis at localhost:6379. Set SPDX_REDIS_HOST to override the hostname.

Development Installation

  1. Clone the repository

    git clone https://github.com/spdx/spdx-license-matcher.git
    cd spdx-license-matcher
    
  2. Install in editable mode

    pip install -e .
    

Workflow

The workflow of the tool is as follows:

  1. Reads the license text as input from the user.

  2. Build a Redis/Valkey database with all the license text present on the SPDX License List.

  3. Compare the license text with the license text present in the database.

    • Normalizes the license text based on the SPDX Matching guidelines while ignore the replaceable text and only focusing on substantial text for matching purposes.
    • Tokenizes the normalized text into a list of bigrams. This is necessary for the token-based algorithm we are using for our use case.
    • Use a token based similarity metric algorithm namely Sørensen-Dice algorithm which is based on the logic to find the common tokens, and divide it by the total number of tokens present by combining both of the sets. This algorithm helps us to distinguish our close matches.
    • A threshold value is used where we just won't consider a match.
    • If the match is 100% then we say it's a perfect match.
    • If the match is between a threshold value and 100% then we apply the full matching algorithms and compares the closely matched license text to the license text of SPDX Standard License using a method present in the SPDX tools.
      • If there is a match then the given license text matches with the SPDX standard license.
      • If there is no match then we simply display the differences of the given license text with that of SPDX License List.

History

Download files

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

Source Distribution

license_matcher-2.11.1.tar.gz (55.6 MB view details)

Uploaded Source

Built Distribution

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

license_matcher-2.11.1-py3-none-any.whl (55.6 MB view details)

Uploaded Python 3

File details

Details for the file license_matcher-2.11.1.tar.gz.

File metadata

  • Download URL: license_matcher-2.11.1.tar.gz
  • Upload date:
  • Size: 55.6 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for license_matcher-2.11.1.tar.gz
Algorithm Hash digest
SHA256 76e970a1bb538d6ccdb98bf9d779970ff3d338d8a4188d7d3b1cb006d5f934b8
MD5 e059876b1fd4878bca47c4694bd8fd62
BLAKE2b-256 91b5ba5b5461a759426374497a6f2ebe654b69d036b0ce7984a81a865a5bf880

See more details on using hashes here.

Provenance

The following attestation bundles were made for license_matcher-2.11.1.tar.gz:

Publisher: pypi-publish.yml on spdx/spdx-license-matcher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file license_matcher-2.11.1-py3-none-any.whl.

File metadata

File hashes

Hashes for license_matcher-2.11.1-py3-none-any.whl
Algorithm Hash digest
SHA256 879730158dde1e52744eb4ac6830fdd7634d1fc048585ffeecd139dc65780fac
MD5 c9ece4e4481c83b21928d9a918e3388d
BLAKE2b-256 1bb1628b672db516aa8fffa800027e514d43cae7ca172cf2ba83134323f98b25

See more details on using hashes here.

Provenance

The following attestation bundles were made for license_matcher-2.11.1-py3-none-any.whl:

Publisher: pypi-publish.yml on spdx/spdx-license-matcher

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Supported by

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