A tool that automatically formats Python code to conform to the PEP 8 style guide
Project description
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
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.5.1.tar.gz
(9.8 kB
view details)
File details
Details for the file autopep8-0.5.1.tar.gz.
File metadata
- Download URL: autopep8-0.5.1.tar.gz
- Upload date:
- Size: 9.8 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
0a45bf872f45c521ebf0486bbbf0bedf7b4a8c4b14631c0d5b4d9a1d9e031329
|
|
| MD5 |
ac365688b4c7c92b864f8bd8e4923894
|
|
| BLAKE2b-256 |
5780764208a5e7caac5c7317ba354a5325d8bea8499d3d66e64f33a85ff303ee
|