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
Links
Release files for autopep8 0.6
For a detailed explanation of source distributions (sdists) and built distributions (wheels), please see the package formats documentation.
Source distribution (sdist)
| File | Size | Uploaded | |
|---|---|---|---|
| autopep8-0.6.tar.gz | 12.7 kB | Details |
Release files / autopep8-0.6.tar.gz
| Download URL | autopep8-0.6.tar.gz |
|---|---|
| Size | 12.7 kB |
| Tags | Source |
|
SHA-256 checksum How to use checksums |
5fac8242161b5cf991fda32872c2163918993e64d432414a801da9de28176992
|
|
BLAKE2b-256 checksum How to use checksums |
9c459a3958b69062662b71db460f8150b1b3b63c4ff01c735d99eca5dcac2f38
|
| Upload date | |
|
Uploaded using Trusted Publishing? What is trusted publishing? |
No |