Format, in a console-friendly and human-readable way, a document specified through its structure
Project description
DO NOT USE THIS LIBRARY: it was written to support InteractiveCommandLine, and the click library is vastly better. I will not fix anything in this library and I’m migrating my own projects to click.
RecursiveDocument is a Python (2.7+ and 3.3+) library formating, in a console-friendly and human-readable way, a document specified through its structure (sections, sub-sections, paragraphs, etc.). It is especially well suited for printing help messages for command-line executables.
It’s licensed under the MIT license. It’s available on the Python package index, its documentation is hosted by Python and its source code is on GitHub.
Quick start
Install from PyPI:
$ pip install RecursiveDocument
Import:
>>> from RecursiveDocument import *
Create a document:
>>> doc = Document().add( ... Section("Introduction") ... .add("This is the first paragraph of a very interesting story. It begins with this paragraph.") ... .add("After the first paragraph comes the second paragraph. As incredible as it may sound, it can go on and on and on...") ... )
And print it:
>>> print doc.format() Introduction This is the first paragraph of a very interesting story. It begins with this paragraph. <BLANKLINE> After the first paragraph comes the second paragraph. As incredible as it may sound, it can go on and on and on...
Project details
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 RecursiveDocument-0.5.2.tar.gz
.
File metadata
- Download URL: RecursiveDocument-0.5.2.tar.gz
- Upload date:
- Size: 7.7 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/1.11.0 pkginfo/1.4.2 requests/2.19.1 setuptools/40.2.0 requests-toolbelt/0.8.0 tqdm/4.25.0 CPython/2.7.14
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 52bbb1500fd2ee3ecfb3d9515b0c8ba71c5b156dda1b1d52f59deef5bc01cb1e |
|
MD5 | a59abc4d094002d714cac2e806e5d3d8 |
|
BLAKE2b-256 | 55a53c31d255d6bc4f5201de846b1788e6d6281aeaca75790eb98dcf5e3beb5a |