Skip to main content

A lightweight Python linter for checking unused docstrings.

Project description

pymport

GitHub tag PyPI CI versions codecov license Linter: ruff

About

A lightweight Python linter for checking unused imports in your Python files.

Features

  • 🧹 Detects unused or shadowed imports that linters like ruff may miss
  • 🚫 Use noqa comments to ignore imports you want to keep
  • ⚙️ Minimalist CLI interface for easy integration in CI/CD pipelines
  • 🐍 No external dependencies beyond the Python standard library
  • 100% test coverage with automated tests
  • 🔌 Provides pre‑commit hook integration for automated checks

[!IMPORTANT] False positives

This tool is not possible to assure a 100% false positive free result due to the possible collateral execution effects when importing a module. This is, importing a module can affect or enable some feature needed somewhere else, so not using anything from that imported package/module does not necessarily mean is not needed.

A minimal typical example could be:

import os.path

print(os.curdir)

📦 Installation

To install pymport using pip, run the following command:

pip install pymport --upgrade

⚡ Quick Start

To run the linter on the current directory, use the following command:

pymport .
  • This will check all Python files in the current directory and its subdirectories.

Command-Line Interface

Usage: pymport [FILE] [--help] [--quiet] [--ignore=DIR]

Argument / Option Description
[FILE] Files or directories to lint. (Need at least one file or dir to check.)
[--help] Show help message and exit.
[--quiet] Decrease verbosity.
[--ignore] Directory basename to ignore. Can be used multiple times.

[!TIP] Ignoring Unused Imports

Use a comment like # noqa: F401(or just # noqa) at the end of the import line to ignore specific unused imports.

Use same error code (F401) as Pyflakes, Ruff

Output

When unused imports are detected, they will be reported in the following format:

path/to/file.py:LINE-NUMBER: UNUSED-IMPORT-NAME

[!NOTE]

  • Exit code 0 means no unused imports were found; exit code 1 indicates that unused imports were detected.
  • When no unused imports are found, success message is printed, unless --quiet is used.

Pre‑commit Integration

The linter can be easily integrated into your pre‑commit workflow.

Update your .pre-commit-config.yaml to include the pymport hook:

repos:
  - repo: https://github.com/rmoralespp/pymport
    rev: 0.0.6  # Use the latest commit hash or tag
    hooks:
      - id: pymport
        args: [".", "--quiet" ]  # customize as needed
        pass_filenames: false  # needed if excluding files with --ignore

🛠️ Development

To contribute to the project, you can run the following commands for testing and documentation:

First, ensure you have the latest version of pip:

python -m pip install --upgrade pip

Running Tests

pip install --group=test --upgrade # Install test dependencies, skip if already installed
python -m pytest tests/ # Run all tests
python -m pytest tests/ --cov # Run tests with coverage

Running Linter

pip install --group=lint --upgrade  # Install lint dependencies, skip if already installed
ruff check . # Run linter

🗒️ License

This project is licensed under the MIT license.

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

pymport-0.0.6.tar.gz (8.3 kB view details)

Uploaded Source

Built Distribution

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

pymport-0.0.6-py3-none-any.whl (7.2 kB view details)

Uploaded Python 3

File details

Details for the file pymport-0.0.6.tar.gz.

File metadata

  • Download URL: pymport-0.0.6.tar.gz
  • Upload date:
  • Size: 8.3 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymport-0.0.6.tar.gz
Algorithm Hash digest
SHA256 86d2d411e0dd52ad19743463fb5c7ccbda228a4066e6b4be2ee2beacf8455b86
MD5 5911b5ea86c18acd21c43f8f27ca3d2f
BLAKE2b-256 edc3e8b6616500db2b9084610eff196cee0aa3e3190de83dc06a61b8ca05d393

See more details on using hashes here.

File details

Details for the file pymport-0.0.6-py3-none-any.whl.

File metadata

  • Download URL: pymport-0.0.6-py3-none-any.whl
  • Upload date:
  • Size: 7.2 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/6.1.0 CPython/3.13.7

File hashes

Hashes for pymport-0.0.6-py3-none-any.whl
Algorithm Hash digest
SHA256 4403febe1745b589d44d88b09aa6ccf9bbd7989d36f098720c8f4bd70330d74e
MD5 ba5a2a52557e7a2bed98e84ba1766ad5
BLAKE2b-256 7f08bfdf7cafed0095c67fba17fb8eb48f4bddb264a00b41e88a0622d73a926d

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