Automatic generated to pep8 checked code.
Project description
About
autopep8 is automatic generated to pep8 checked code. This is old style tool, wrapped pep8 via subprocess module.
Install
from pip:
pip install --upgrade autopep8
from easy_install:
easy_install -ZU autopep8
Require
autopep8 is used pep8 (via subprocess).
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.1.3.tar.gz
(4.2 kB
view details)
File details
Details for the file autopep8-0.1.3.tar.gz.
File metadata
- Download URL: autopep8-0.1.3.tar.gz
- Upload date:
- Size: 4.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
b9e3fad744002d33132687cbb4ea00ceeac027d591b672e7fe0763cefd763575
|
|
| MD5 |
8c31efd2610086905e60b69eb42b3a49
|
|
| BLAKE2b-256 |
bf765940b44afeba712dfaaa3b34182f17ac233e5ac4faf058763db8c64eff5b
|