Skip to content
forked from hhatto/autopep8

This is tool, that automatic generated to pep8 checked code.

Notifications You must be signed in to change notification settings

dellis23/autopep8

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

autopep8

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)

Links

About

This is tool, that automatic generated to pep8 checked code.

Resources

Stars

Watchers

Forks

Packages

No packages published

Languages

  • Python 98.8%
  • Shell 1.2%