Linting and formatting Python code in Google Colab.
Project description
colablinter
Overview
colablinter is an IPython magic command extension designed specifically for Jupyter and Google Colab notebooks.
It integrates the high-speed linter ruff to perform code quality checks and enforce standards directly within Jupyter/Colab cells.
It allows developers to lint and format code on a cell-by-cell basis or check the entire notebook with simple commands.
Magic cell Commands
| Command | Type | Description |
|---|---|---|
%%cfix |
Cell Magic | Fixes and Formats the current cell's code. |
%%creport |
Cell Magic | Displays a linting report for the current cell. |
%clautofix |
Line Magic | Activates or deactivates automatic code fixing and formatting before every cell execution. |
%clreport |
Line Magic | Displays a linting report for the entire saved notebook (requires Google Drive mount). |
After executing a cell magic command, the fixed/reported code is immediately executed (if applicable), maintaining the notebook workflow.
Installation
Requires Python 3.10 or newer.
pip install colablinter
Usage
The extension must be explicitly loaded in the notebook session before use. Once the extension is loaded, %clautofix is triggered automatically.
%load_ext colablinter
-
Fix and Format cell (
%%cfix)%%cfixcorrects code and runs the formatter. The cell executes the fixed code.%%cfix import math, sys; class Example( object ): def __init__ ( self, bar ): if bar : bar+=1; bar=bar* bar ; return bar else: some_string = "foo" return (sys.path, some_string)
Fixed Cell:
import math import sys class Example(object): def __init__(self, bar): if bar: bar += 1 bar = bar * bar return bar else: some_string = "foo" return (sys.path, some_string)
-
Check cell quality (
%%creport)Use
%%creportto see linting reports for the code below the command. After the report is displayed, the code in the cell executes as normal.%%creport def invalid_code(x): return x + y # 'y' is not defined
Output:
[ColabLinter:INFO] F821 Undefined name `y` --> notebook_cell.py:2:16 | 1 | def invalid_code(x): 2 | return x + y # 'y' is not defined | ^ | Found 1 error.
Note on F401: The linter is explicitly configured to ignore F401 errors (unused imports). This is to ensure compatibility with the stateful nature of Jupyter/Colab notebooks, where imports in one cell may be necessary for code execution in subsequent cells, preventing unintended breakage of the notebook's execution flow.
-
Activate/Deactivate Auto Fix (
%clautofix)The
%clautofixline magic allows you to automatically fix code before every code cell is executed.To Activate Auto Fixing:
%clautofix on # %clautofix off when you want to deactivate
-
Check entire notebook (
%clreport)Use line magic
%clreportto check across the entire saved notebook file (requires the notebook to be saved to Google Drive and mounted).%clreport /content/drive/MyDrive/Colab Notebooks/path/to/notebook.ipynb
Known Caveats & Troubleshooting
Magic Command Execution: When using magic or terminal commands with %clautofix on active, the autofix mechanism is temporarily suppressed during the final execution step to prevent infinite loops or dual checks. If you want to disable auto-fixing, use %clautofix off
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file colablinter-0.1.7.tar.gz.
File metadata
- Download URL: colablinter-0.1.7.tar.gz
- Upload date:
- Size: 6.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
71e04457fab349ad58878fe7c608a8af5b64ed7ab3268d4d033de0a144f437f8
|
|
| MD5 |
bbcb4d175ca4cbf8cfeb46a9ae26a3fe
|
|
| BLAKE2b-256 |
66ac6a6a2d3eb28a041eca215d92606b33f600f8be3f780b5af8ebd876b7fa75
|
File details
Details for the file colablinter-0.1.7-py3-none-any.whl.
File metadata
- Download URL: colablinter-0.1.7-py3-none-any.whl
- Upload date:
- Size: 7.0 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: uv/0.9.24 {"installer":{"name":"uv","version":"0.9.24","subcommand":["publish"]},"python":null,"implementation":{"name":null,"version":null},"distro":{"name":"Ubuntu","version":"24.04","id":"noble","libc":null},"system":{"name":null,"release":null},"cpu":null,"openssl_version":null,"setuptools_version":null,"rustc_version":null,"ci":true}
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
61301234c11fda2170a8e6bf3fd176c07606eb40a1a84bf55d1136672215a506
|
|
| MD5 |
60e44583cd6b07315e50ae481d331168
|
|
| BLAKE2b-256 |
72e33181a64a55a4fe2cc894ffb4d61668142fe2d77b0c05f948748f12212afe
|