All Projects → myint → Autoflake

myint / Autoflake

Licence: mit
Removes unused imports and unused variables as reported by pyflakes

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to Autoflake

Psscriptanalyzer
Download ScriptAnalyzer from PowerShellGallery
Stars: ✭ 1,137 (+214.09%)
Mutual labels:  linter, formatter
Godot Gdscript Toolkit
Independent set of GDScript tools - parser, linter and formatter
Stars: ✭ 214 (-40.88%)
Mutual labels:  linter, formatter
Unimport
A linter, formatter for finding and removing unused import statements.
Stars: ✭ 96 (-73.48%)
Mutual labels:  linter, formatter
Verible
Verible is a suite of SystemVerilog developer tools, including a parser, style-linter, and formatter.
Stars: ✭ 384 (+6.08%)
Mutual labels:  linter, formatter
lancer
Turn your python code into a hideous mess. Ever heard of Black? This is the opposite.
Stars: ✭ 179 (-50.55%)
Mutual labels:  formatter, linter
Format Graphql
Formats GraphQL schema definition language (SDL) document.
Stars: ✭ 55 (-84.81%)
Mutual labels:  linter, formatter
Poetic
Automatically install and maintain ESLint, Prettier, EditorConfig and Airbnb rules for JavaScript, TypeScript and React.
Stars: ✭ 165 (-54.42%)
Mutual labels:  linter, formatter
Eryngii
[WIP] Erlang lint and formatter
Stars: ✭ 28 (-92.27%)
Mutual labels:  linter, formatter
li18nt
🌎 Lint your i18n translation files. Detect conflicting properties, duplicates and make it more readable and easier to maintain by formatting it!
Stars: ✭ 29 (-91.99%)
Mutual labels:  formatter, linter
Golite
Add essential language support for the Go language to Sublime Text 3.
Stars: ✭ 14 (-96.13%)
Mutual labels:  formatter, linter
Isort
A Python utility / library to sort imports.
Stars: ✭ 4,377 (+1109.12%)
Mutual labels:  linter, formatter
unimport
A linter, formatter for finding and removing unused import statements.
Stars: ✭ 119 (-67.13%)
Mutual labels:  formatter, linter
Drstring
DrString finds issues in your Swift docstrings and fixes them for you.
Stars: ✭ 133 (-63.26%)
Mutual labels:  linter, formatter
Best Of Python Dev
🏆 A ranked list of awesome python developer tools and libraries. Updated weekly.
Stars: ✭ 243 (-32.87%)
Mutual labels:  linter, formatter
dockerfile-utils
A library and command line interface for formatting and linting Dockerfiles.
Stars: ✭ 17 (-95.3%)
Mutual labels:  formatter, linter
Gts
☂️ TypeScript style guide, formatter, and linter.
Stars: ✭ 3,714 (+925.97%)
Mutual labels:  linter, formatter
Scale
🎏 Unit converter in Swift
Stars: ✭ 324 (-10.5%)
Mutual labels:  formatter
Detekt
Static code analysis for Kotlin
Stars: ✭ 4,169 (+1051.66%)
Mutual labels:  linter
Plpgsql check
plpgsql_check is linter tool for language PL/pgSQL (native language for PostgreSQL store procedures).
Stars: ✭ 322 (-11.05%)
Mutual labels:  linter
Reorder python imports
Rewrites source to reorder python imports
Stars: ✭ 320 (-11.6%)
Mutual labels:  linter

========= autoflake

.. image:: https://travis-ci.org/myint/autoflake.svg?branch=master :target: https://travis-ci.org/myint/autoflake :alt: Build status

Introduction

autoflake removes unused imports and unused variables from Python code. It makes use of pyflakes_ to do this.

By default, autoflake only removes unused imports for modules that are part of the standard library. (Other modules may have side effects that make them unsafe to remove automatically.) Removal of unused variables is also disabled by default.

autoflake also removes useless pass statements.

.. _pyflakes: http://pypi.python.org/pypi/pyflakes

Example

Running autoflake on the below example::

$ autoflake --in-place --remove-unused-variables example.py

.. code-block:: python

import math
import re
import os
import random
import multiprocessing
import grp, pwd, platform
import subprocess, sys


def foo():
    from abc import ABCMeta, WeakSet
    try:
        import multiprocessing
        print(multiprocessing.cpu_count())
    except ImportError as exception:
        print(sys.version)
    return math.pi

results in

.. code-block:: python

import math
import sys


def foo():
    try:
        import multiprocessing
        print(multiprocessing.cpu_count())
    except ImportError:
        print(sys.version)
    return math.pi

Installation

::

$ pip install --upgrade autoflake

Advanced usage

To allow autoflake to remove additional unused imports (other than than those from the standard library), use the --imports option. It accepts a comma-separated list of names::

$ autoflake --imports=django,requests,urllib3 <filename>

To remove all unused imports (whether or not they are from the standard library), use the --remove-all-unused-imports option.

To remove unused variables, use the --remove-unused-variables option.

Below is the full listing of options::

usage: autoflake [-h] [-i] [-r] [--exclude globs] [--imports IMPORTS]
                 [--expand-star-imports] [--remove-all-unused-imports]
                 [--remove-duplicate-keys] [--remove-unused-variables]
                 [--version]
                 files [files ...]

Removes unused imports and unused variables as reported by pyflakes.

positional arguments:
  files                 files to format

optional arguments:
  -h, --help            show this help message and exit
  -c, --check           return error code if changes are needed
  -i, --in-place        make changes to files instead of printing diffs
  -r, --recursive       drill down directories recursively
  --exclude globs       exclude file/directory names that match these comma-
                        separated globs
  --imports IMPORTS     by default, only unused standard library imports are
                        removed; specify a comma-separated list of additional
                        modules/packages
  --expand-star-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
  --remove-all-unused-imports
                        remove all unused imports (not just those from the
                        standard library)
  --ignore-init-module-imports
                        exclude __init__.py when removing unused imports
  --remove-duplicate-keys
                        remove all duplicate keys in objects
  --remove-unused-variables
                        remove unused variables
  --version             show program's version number and exit

Tests

To run the unit tests::

$ ./test_autoflake.py

There is also a fuzz test, which runs against any collection of given Python files. It tests autoflake against the files and checks how well it does by running pyflakes on the file before and after. The test fails if the pyflakes results change for the worse. (This is done in memory. The actual files are left untouched.)::

$ ./test_fuzz.py --verbose

Excluding specific lines

It might be the case that you have some imports for their side effects, even if you are not using them directly in that file.

That is common, for example, in Flask based applications. In where you import Python modules (files) that imported a main app, to have them included in the routes.

For example:

.. code-block:: python

from .endpoints import role, token, user, utils

As those imports are not being used directly, if you are using the option --remove-all-unused-imports, they would be removed.

To prevent that, without having to exclude the entire file, you can add a # noqa comment at the end of the line, like:

.. code-block:: python

from .endpoints import role, token, user, utils  # noqa

That line will instruct autoflake to let that specific line as is.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].