pyproject-autoflake (pautoflake), a monkey patching wrapper to connect autoflake with pyproject.toml configuration.
Project description
pyproject-autoflake
pyproject-autoflake (pautoflake), a monkey patching wrapper to connect autoflake with pyproject.toml configuration.
Motivation
The original autoflake does not support configuration files such as pyproject.toml. This is slightly inconvenient for modern Python development.
pautoflake is a thin wrapper library that calls autoflake with a configuration read from pyproject.toml.
pyproject-autoflake is inspired by pyproject-flake8. Many thanks! 😉
Installation
pip
pip install pyproject-autoflake
poetry
poetry add -D pyproject-autoflake
Usage
At first, you add [tool.autoflake]
in your pyproject.toml.
# pyproject.toml
...
[tool.autoflake]
# return error code if changes are needed
check = false
# make changes to files instead of printing diffs
in-place = true
# drill down directories recursively
recursive = true
# exclude file/directory names that match these comma-separated globs
exclude = "<GLOBS>"
# by default, only unused standard library imports are removed; specify a comma-separated list of additional
# modules/packages
imports = "<IMPORTS>"
# expand wildcard star imports with undefined names; this only triggers if there is only one star import in
# the file; this is skipped if there are any uses of `__all__` or `del` in the file
expand-star-imports = true
# remove all unused imports (not just those from the standard library)
remove-all-unused-imports = true
# exclude __init__.py when removing unused imports
ignore-init-module-imports = true
# remove all duplicate keys in objects
remove-duplicate-keys = true
# remove unused variables
remove-unused-variables = true
# print more verbose logs (larger numbers are more verbose)
verbose = 0
...
Second, you call pautoflake.
pautoflake sample.py
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
Built Distribution
File details
Details for the file pyproject-autoflake-1.0.0.tar.gz
.
File metadata
- Download URL: pyproject-autoflake-1.0.0.tar.gz
- Upload date:
- Size: 4.3 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.6.15 Linux/5.11.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 521d12a745507201feaf66b1c2656c892a1d4e9589bb263ae3bebf59f9670862 |
|
MD5 | 384c0c42cdb986da114e2a3731d2bc7b |
|
BLAKE2b-256 | 2038fbda6adcb5baa41f5d4ca9b308c337f50b1614eccbd3ca3d2f35d429fe78 |
File details
Details for the file pyproject_autoflake-1.0.0-py3-none-any.whl
.
File metadata
- Download URL: pyproject_autoflake-1.0.0-py3-none-any.whl
- Upload date:
- Size: 4.5 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.1.12 CPython/3.6.15 Linux/5.11.0-1022-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 460dfc862ce3d44c3a360a95420e629841d2e8995f82ae3b187675b50be3f006 |
|
MD5 | bd0377c5287c4e1ef212fb7fb3505941 |
|
BLAKE2b-256 | ae9a986fe07450934f7e9790adb1341c1641d4ebbd48a5bc2d51ded6f867e830 |