Skip to content
/ nedoc Public
forked from spirali/nedoc

Generator of API documentation for Python

License

Notifications You must be signed in to change notification settings

Kobzol/nedoc

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

8 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Nedoc (Non-Evaluating Documentation)

  • Nedoc is generator of API documentation for Python 3
  • Nedoc does not run the code of the application/library for which the documentation is generated; Nedoc scans its source codes. The application/library and its dependencies does not have to be installed.
  • Nedoc tracks what methods was overridden and shows it in the documentation.
  • Nedoc supports documentation inheritance of overridden methods.
  • Nedoc tracks what and where was reimported.
  • Nedoc creates static HTML files as the output.

Examples

Installation

$ pip3 install nedoc

Getting started

First, we need to generate nedoc.conf; PathToProject should lead to toplevel directory with Python source codes (i.e. directory containing toplevel __init__.py).

python3 -m nedoc init <ProjectName> <PathToProject>

This command creates nedoc.conf in the current working directory. You can edit it for more customized settings.

The documentation is built by the following command:

python3 -m nedoc build

By default, you can find the result in html directory.

About

Generator of API documentation for Python

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 64.9%
  • Mako 19.1%
  • CSS 16.0%