Skip to content
This repository has been archived by the owner on Aug 24, 2023. It is now read-only.
/ dycco Public archive

Another Python port of Docco, the literate-style documentation generator

License

Notifications You must be signed in to change notification settings

mccutchen/dycco

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

51 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

⚠️ 301 Moved Permanently ⚠️

This repository is no longer maintained. Please see rojalator/dycco for an up-to-date, actively maintained version of this project.

The original README follows below.

Dycco

Dycco is a(nother) Python port of Docco, the original quick-and-dirty, hundred-line-long, literate-programming-style documentation generator. For an example and more information, see its self-generated docs.

This port of Docco has fewer features than the pimary Python port, Pycco. For instance, Dycco can generate documentation for Python files and nothing else. It was written mostly as a reason to play with Python's AST.

You should probably use Pycco instead.

Installation

Use pip to install:

pip install dycco

Usage

Command Line Usage

Just pass dycco a list of files and it will generate documentation for each of them. By default, the generated documentation is put in a docs/ subdirectory:

$ dycco my_python_file.py

Dycco can generate docs for multiple files at once:

$ dycco my_package/*.py

And you can control the output location:

$ dycco --output-dir=/path/to/docs my_package/*.py

All command line options are given below:

$ dycco --help

Outputs:

usage: dycco [-h] [-o OUTPUT_DIR] source_file [source_file ...]

Literate-style documentation generator.

positional arguments:
  source_file           Source files to document

optional arguments:
  -h, --help            show this help message and exit
  -o OUTPUT_DIR, --output-dir OUTPUT_DIR
                        Output directory (will be created if necessary)

Library Usage

Dycco can also be used as a plain old Python library:

>>> import dycco
>>> dycco.document('my_python_file.py', 'my_output_dir')

Credits

Dycco is just a simple re-implementation of Docco, with some inspiration and template code from its primary Python port Pycco.