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 (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.2.tar.gz
(4.5 kB
view details)
File details
Details for the file autopep8-0.2.tar.gz
.
File metadata
- Download URL: autopep8-0.2.tar.gz
- Upload date:
- Size: 4.5 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 9702cec613d3e16af064646a17f029e544339b17ec9d040542948e12c934b79f |
|
MD5 | f2f448a472cb7c7585b5eda2e71cb93c |
|
BLAKE2b-256 | 795b1ecd62cb06d1c15d65f2886f60e37dd282ff2d8a3a57496fd8d07ad0ab7d |