Skip to main content

A tool that automatically formats Python code to conform to the PEP 8 style guide

Project description

https://secure.travis-ci.org/hhatto/autopep8.png?branch=master

About

autopep8 formats Python code based on the output of the pep8 utility.

Installation

from pip:

pip install --upgrade autopep8

from easy_install:

easy_install -ZU autopep8

Requirements

autopep8 requires pep8.

Usage

execute tool:

$ autopep8 TARGET.py

before:

import sys, os


print 1


def func1():
    print "A"

    return 0



def func11():
    a = (1,2, 3,"a")
    b = [1, 2, 3,"b"]
    return 1





def func2():
    pass
def func22():
    pass

def func3():
    pass

after:

import sys
import os


print 1


def func1():
    print "A"

    return 0


def func11():
    a = (1, 2, 3, "a")
    b = [1, 2, 3, "b"]
    return 1


def func2():
    pass


def func22():
    pass


def func3():
    pass

Project details


Release history Release notifications | RSS feed

This version

0.6

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

autopep8-0.6.tar.gz (12.7 kB view details)

Uploaded Source

File details

Details for the file autopep8-0.6.tar.gz.

File metadata

  • Download URL: autopep8-0.6.tar.gz
  • Upload date:
  • Size: 12.7 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for autopep8-0.6.tar.gz
Algorithm Hash digest
SHA256 5fac8242161b5cf991fda32872c2163918993e64d432414a801da9de28176992
MD5 9da420b330e034ca36e1838698f8f79b
BLAKE2b-256 9c459a3958b69062662b71db460f8150b1b3b63c4ff01c735d99eca5dcac2f38

See more details on using hashes here.

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