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.)

Example

$ autoflake --in-place example.py
import math
import re
import os
import random
import multiprocessing

def foo():
    try:
        import abc
    except ImportError:
        import subprocess
        import sys
    return math.pi

results in

import math

def foo():
    try:
        pass
    except ImportError:
        pass
    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


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.2.tar.gz (4.8 kB view details)

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for autoflake-0.1.2.tar.gz
Algorithm Hash digest
SHA256 7d9d07a88e998f17e4cf7ff857a767a9684818cae96452c3008a9d9721376ba6
MD5 f062b287aa7e416e52cc18ff82b5486f
BLAKE2b-256 4a3a991461ccbbabda2332054d0b8e81e3665920aa2b307dac313fe5fdbcfd68

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