Skip to main content

Removes unused imports.

Project description

Build status

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

def foo():
    if True:
        import abc
    else:
        import subprocess
        import sys
    return math.pi

results in

import math

def foo():
    if True:
        pass
    else:
        pass
    return math.pi

Installation

$ pip install --upgrade autoflake

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

autoflake-0.1.4.tar.gz (5.2 kB view details)

Uploaded Source

File details

Details for the file autoflake-0.1.4.tar.gz.

File metadata

  • Download URL: autoflake-0.1.4.tar.gz
  • Upload date:
  • Size: 5.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for autoflake-0.1.4.tar.gz
Algorithm Hash digest
SHA256 57798944d8e199f6897787dabd764aa369e59cbd9b1c95dc8a5917db2264157e
MD5 4684509e2847d0136eb0846c91326fb9
BLAKE2b-256 afb98480741d279a748ef7e83334c6fe4513e5cab37bff7b2ead3552fb5647c7

See more details on using hashes here.

Provenance

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page