Removes unused imports.
Project description
Introduction
autoflake removes unused imports from Python code. It makes use of pyflakes to do this.
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.)
Example
$ autoflake --in-place example.py
import math
import re
def foo():
import abc
return math.pi
results in
import math
def foo():
return math.pi
Limitations
autoflake currently only removes simple import statements. It will not remove more complex statements such as from os import path, sep`.
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
autoflake-0.0.1.tar.gz
(4.1 kB
view hashes)