Formats docstrings to follow PEP 257.
Project description
Formats docstrings to follow PEP 257.
Example
After running:
$ docformatter example.py
this:
def launch_rocket():
"""Launch
the
rocket."""
def factorial(x):
'''
Return x factorial.
This uses math.factorial.
'''
import math
math.factorial(x)
def print_factorial(x):
"""Print x factorial"""
print(factorial(x))
def main():
"""Main
function"""
print_factorial(5)
if factorial(10):
launch_rocket()
gets formatted into this:
def launch_rocket():
"""Launch the rocket."""
def factorial(x):
"""Return x factorial.
This uses math.factorial.
"""
import math
math.factorial(x)
def print_factorial(x):
"""Print x factorial."""
print(factorial(x))
def main():
"""Main function."""
print_factorial(5)
if factorial(10):
launch_rocket()
Options
Below is the help output:
usage: docformatter [-h] [--in-place] [--no-backup] [--version]
files [files ...]
Formats docstrings to follow PEP 257.
positional arguments:
files files to format
optional arguments:
-h, --help show this help message and exit
--in-place make changes to file instead of printing diff
--no-backup do not write backup files
--version show program's version number and exit
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
docformatter-0.1.2.tar.gz
(3.0 kB
view details)
File details
Details for the file docformatter-0.1.2.tar.gz.
File metadata
- Download URL: docformatter-0.1.2.tar.gz
- Upload date:
- Size: 3.0 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
4ce13b082e2c3eab9d902f3a8974d6ed61c963c629f8612edbc22974b5f7a06e
|
|
| MD5 |
0e906df390900bd555d9643e42030e99
|
|
| BLAKE2b-256 |
f34f94fd81dc49fc1d26a33d1d469d042e36c52e1102cf2ee8386929b9db0915
|