Skip to content

google/licenseclassifier

Folders and files

NameName
Last commit message
Last commit date

Latest commit

b5d1a33 · Feb 13, 2025
Sep 16, 2022
Sep 16, 2022
Feb 13, 2025
Sep 16, 2022
Sep 16, 2022
Sep 16, 2022
Sep 16, 2022
Feb 13, 2025
Jul 22, 2021
Aug 11, 2017
Apr 10, 2017
Apr 10, 2017
Feb 13, 2025
Sep 26, 2019
Jan 8, 2020
Jul 22, 2021
Jun 5, 2018
Mar 21, 2022
Mar 21, 2022
Jan 8, 2025

License Classifier

Build status

Introduction

The license classifier is a library and set of tools that can analyze text to determine what type of license it contains. It searches for license texts in a file and compares them to an archive of known licenses. These files could be, e.g., LICENSE files with a single or multiple licenses in it, or source code files with the license text in a comment.

A "confidence level" is associated with each result indicating how close the match was. A confidence level of 1.0 indicates an exact match, while a confidence level of 0.0 indicates that no license was able to match the text.

Usage

One-time setup

Use the license_serializer tool to regenerate the licenses.db archive. The archive contains preprocessed license texts for quicker comparisons against unknown texts.

$ go run tools/license_serializer/license_serializer.go -output licenses

Identifying licenses

Use the identify_license command line tool to identify the license(s) within a file.

$ go run tools/identify_license/identify_license.go /path/to/LICENSE
LICENSE: GPL-2.0 (confidence: 1, offset: 0, extent: 14794)
LICENSE: LGPL-2.1 (confidence: 1, offset: 18366, extent: 23829)
LICENSE: MIT (confidence: 1, offset: 17255, extent: 1059)

Adding a new license

Adding a new license is straight-forward:

  1. Create a file in licenses/.

    • The filename should be the name of the license or its abbreviation. If the license is an Open Source license, use the appropriate identifier specified at https://spdx.org/licenses/.
    • If the license is the "header" version of the license, append the suffix ".header" to it. See licenses/README.md for more details.
  2. Add the license name to the list in license_type.go.

  3. Regenerate the licenses.db file by running the license serializer:

    $ license_serializer -output licenseclassifier/licenses
  4. Create and run appropriate tests to verify that the license is indeed present.


This is not an official Google product (experimental or otherwise), it is just code that happens to be owned by Google.