Skip to main content

A Python license checker

Project description

pylic - Python license checker GitHub license PyPI version Codecov

Reads pylic configuration in pyproject.toml and checks licenses of installed packages recursively.

Principles:

  • Every license has to be allowed explicitly (case-insensitive comparison).
  • All installed packages without a license are considered unsafe and have to be listed as such.

Only installed packages are checked for licenses. Packages/dependencies listed in pyproject.toml are ignored.

Installation

pip install pylic

Configuration

pylic needs be run in the directory where your pyproject.toml file is located. You can configure

  • safe_licenses: All licenses you consider safe for usage. The string comparison is case-insensitive.
  • unsafe_packages: If you rely on a package that does not come with a license you have to explicitly list it as such.
  • ignore_packages: Packages that will not be reported as unsafe even if they use a license not listed as safe. This is useful in case an existing projects want to start integrating pylic, but are still using unsafe licenses. This enables first to ignore these packages temporarely, while they're being replaced, second to already validate newly added or updated packages against the safe license set and third to integrate pylic frictionless into CI/CD from the get go.
[tool.pylic]
safe_licenses = [
    "Apache Software License",
    "Apache License 2.0",
    "MIT License",
    "Python Software Foundation License",
    "Mozilla Public License 2.0 (MPL 2.0)",
]
unsafe_packages = [
    "unlicensedPackage",
]
ignore_packages = [
    "ignoredPackage",
]

Commands

pylic provides the following commands (also see pylic help):

  • check: Checks all installed licenses.
  • list: Lists all installed packages and their corresponding license.

Usage Example

Create a venv to start with a clean ground and activate it

python -m venv .venv
source .venv/bin/activate

Install pylic and create an empty pyproject.toml

pip install pylic
touch pyproject.toml

Install all your dependencies

pip install <packageA> <packageB>

Run pylic

pylic check

The output will be similar to

Found unsafe packages:
  pkg_resources (0.0.0)
Found unsafe licenses:
  pip (18.1): MIT License
  zipp (3.4.1): MIT License
  toml (0.10.2): MIT License
  pylic (1.2.0): MIT License
  setuptools (40.8.0): MIT License
  typing-extensions (3.7.4.3): Python Software Foundation License
  importlib-metadata (3.9.0): Apache Software License

The return code of pylic is in this case non-zero due to unsafe licenses. This allows usage of pylic in CI.

echo $? # prints 1

As these licenses and packages are all ok we can configure pylic accordingly

cat <<EOT >> pyproject.toml
[tool.pylic]
safe_licenses = ["Apache Software License", "MIT License", "Python Software Foundation License"]
unsafe_packages = ["pkg_resources"]
EOT

After rerunning pylic check the output now reveals a successful validation

 All licenses ok 

Also the return code now signals that all is good

echo $? # prints 0

Use pylic list to list all installed packages and their corresponding licenses.

Development

Required tools:

Run poetry install to install all necessary dependencies. Checkout the [tool.taskipy.tasks] (see taskipy) section in the pyproject.toml file for utility tasks. You can run these with poetry run task <task>.

Creating a new release is as simple as:

  • Update version in the pyproject.toml and the __version__.py file.
  • poetry run task release.

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

pylic-3.1.1.tar.gz (10.2 kB view details)

Uploaded Source

Built Distribution

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

pylic-3.1.1-py3-none-any.whl (11.4 kB view details)

Uploaded Python 3

File details

Details for the file pylic-3.1.1.tar.gz.

File metadata

  • Download URL: pylic-3.1.1.tar.gz
  • Upload date:
  • Size: 10.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.9.13 Linux/5.15.0-1014-azure

File hashes

Hashes for pylic-3.1.1.tar.gz
Algorithm Hash digest
SHA256 fe6cb0efffc0df34976f30aee6b2b70cda8b5fe5e9dec9373633bcbda06c6714
MD5 6a2c68c7a5c7256d29ff055410ceab30
BLAKE2b-256 3e78ef8e8796cb196938fb5a804400c61201e73827f1d7d578746553a4eec4a7

See more details on using hashes here.

File details

Details for the file pylic-3.1.1-py3-none-any.whl.

File metadata

  • Download URL: pylic-3.1.1-py3-none-any.whl
  • Upload date:
  • Size: 11.4 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: poetry/1.1.14 CPython/3.9.13 Linux/5.15.0-1014-azure

File hashes

Hashes for pylic-3.1.1-py3-none-any.whl
Algorithm Hash digest
SHA256 e5b43616ed8cc1e091bf0ee4e4ecb4e4764991595dbb70834b22e25ac27985dc
MD5 80c9f71c561b99ef2d5712e319922e33
BLAKE2b-256 546b31085c387560e6b861f021c7c8c311dd375bba3f2ca5e8f03037532d18c8

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