Skip to content

Generate enriched representations for docstrings

License

Notifications You must be signed in to change notification settings

techtonik/docrepr

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

93 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

About

Docrepr is a library to render Python docstrings as html pages. It is based on the sphinxify module developed by Tim Dumol for the Sage Notebook and the utils.inspector one developed for Spyder.

Rationale

Video presentation @ SciPy 2015 by Carlos Cordoba:

Towards a Better Documentation System for Scientific Python | SciPy 2015 | Carlos Cordoba

Details

The module renders a dictionary as returned by IPython oinspect module and exports two functions: sphinxify which uses Sphinx to render docstrings, and rich_repr that generates full HTML page (with all assets) from IPython.core.oinspect output and returns a URL to it.

Example:

>>> import docrepr, IPython
>>> myset = set()
>>> oinfo = IPython.core.oinspect.Inspector().info(myset, oname='myset')
>>> docrepr.sphinxify.rich_repr(oinfo)
c:\users\user\appdata\local\temp\docrepr\tmpwvoj3s\rich_repr_output.html

docrepr can also show a window with rendered documentation of a docstring if you have PyQt4 or PySide installed:

from docrepr import webview
import numpy
webview(numpy.sin, oname='bar')

oname is a just a name for the object, because Python loses it when variable is passed to function.

webview example

License

Modified BSD License

About

Generate enriched representations for docstrings

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • Python 67.0%
  • JavaScript 14.1%
  • CSS 12.4%
  • HTML 6.5%