Skip to main content

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

Project description

Build status

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('hello' );


def func1(   foo  ):
    print( 'A'+ foo);

    return 0



def func11():
    a = (1,2, 3,"a");
    b = [100,200,300,9876543210,'This is my very long string that goes on and one and on']



    return (a, b)





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

def func3(bar):
    if bar : bar+=1;  bar=bar*bar   ; return bar
    else: raise ValueError, 'I am an error'

after:

import sys
import os


print('hello')


def func1(foo):
    print('A' + foo)

    return 0


def func11():
    a = (1, 2, 3, "a")
    b = [100, 200, 300, 9876543210,
        'This is my very long string that goes on and one and on']

    return (a, b)


def func2():
    pass


def func22():
    pass


def func3(bar):
    if bar:
        bar += 1
        bar = bar * bar
        return bar
    else:
        raise ValueError('I am an error')

options:

Usage: autopep8 [options] [filename [filename ...]]

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

Options:
  --version             show program's version number and exit
  -h, --help            show this help message and exit
  -v, --verbose         print verbose messages
  -d, --diff            print the diff for the fixed source
  -i, --in-place        make changes to files in place
  -p PEP8_PASSES, --pep8-passes=PEP8_PASSES
                        maximum number of additional pep8 passes (default:
                        100)
  --ignore=IGNORE       do not fix these errors/warnings (e.g. E4,W)
  --select=SELECT       select errors/warnings (e.g. E4,W)

Project details


Release history Release notifications | RSS feed

This version

0.6.4

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

Uploaded Source

File details

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

File metadata

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

File hashes

Hashes for autopep8-0.6.4.tar.gz
Algorithm Hash digest
SHA256 a21765e01995e1cfbde97055ddc82ca7472e19cf088317b4cdab5049f0f27c88
MD5 efbd65833febd6591da25e5a01e15ff9
BLAKE2b-256 1364d28039effe0a2b0aa86307bbab04a4504ab34c5ff2c41449eb55a8e12ac8

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