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.)
autoflake also removes useless pass statements.
Example
Running autoflake on the below example:
$ autoflake --in-place example.py
import math
import re
import os
import random
import multiprocessing
import grp, pwd, platform
import subprocess, sys
def foo():
if True:
from abc import ABCMeta, WeakSet
else:
print(sys.version)
return math.pi
results in
import math
import sys
def foo():
if True:
pass
else:
print(sys.version)
return math.pi
Installation
$ pip install --upgrade autoflake
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.1.6.tar.gz
(5.4 kB
view hashes)