autopep8 0.5
A tool that automatically formats Python code to conform to the PEP 8 style guide
Latest Version: 0.6
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
| File | Type | Py Version | Uploaded on | Size | # downloads |
|---|---|---|---|---|---|
| autopep8-0.5.tar.gz (md5) | Source | 2012-01-09 | 8KB | 330 | |
- Author: Hideo Hattori
- Home Page: https://github.com/hhatto/autopep8
- Keywords: automation pep8
- License: Expat License
- Categories
- Package Index Owner: hhatto
- DOAP record: autopep8-0.5.xml
