Formats docstrings to follow PEP 257.
Project description
Formats docstrings to follow PEP 257.
Features
docformatter currently automatically formats docstrings to follow a subset of the PEP 257 conventions. Below are the relevant items quoted from PEP 257.
For consistency, always use triple double quotes around docstrings.
Triple quotes are used even though the string fits on one line.
Multi-line docstrings consist of a summary line just like a one-line docstring, followed by a blank line, followed by a more elaborate description.
The BDFL recommends inserting a blank line between the last paragraph in a multi-line docstring and its closing quotes, placing the closing quotes on a line by themselves.
Example
After running:
$ docformatter example.py
this code:
def launch_rocket(): """Launch the rocket. Go colonize space.""" def factorial(x): ''' Return x factorial. This uses math.factorial. ''' import math return 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. Go colonize space. """ def factorial(x): """Return x factorial. This uses math.factorial. """ import math return 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] [--wrap-long-summaries LENGTH] [--no-blank] [--pre-summary-newline] [--alternate-style] [--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 files instead of printing diffs --no-backup do not write backup files --wrap-long-summaries LENGTH wrap long summary lines at this length (default: 0) --no-blank do not add blank line after description --pre-summary-newline add a newline before the summary of a multi-line docstring --alternate-style enables --no-blank, --pre-summary-newline, and --wrap-long-summaries=79 --version show program's version number and exit
Issues
Bugs and patches can be reported on the GitHub page.
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
File details
Details for the file docformatter-0.2.2.tar.gz
.
File metadata
- Download URL: docformatter-0.2.2.tar.gz
- Upload date:
- Size: 4.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 98e8abdc7aab1c4d8f534fcf607047392d33a64b3314df204c36a322d1082ec3 |
|
MD5 | 048098631613d0a6d2aac486a89614ba |
|
BLAKE2b-256 | a76adcd2b06dd60cd871929faa53e30d0ddd0157fd87e55c6637644fe2d7fb51 |