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

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


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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for autoflake-0.0.1.tar.gz
Algorithm Hash digest
SHA256 1a11d63b088281b02e57872f0e02d7581d9cec2e19488cd0d2136ab6d2404cc8
MD5 57158d0420807a2ff3427e4f42253abd
BLAKE2b-256 3e98de6d3a2e6c13abd129ea1b5e637037f1e40c939222d5e102e150bc9c0ddf

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