I am trying to learn doxygen by running following Python file.
A similar attempt with c++ file was successful, however i am not able to generate any content in main.html file generated. it is only showing “main page” and “file list” as two links in html page.
What am i doing wrong?
""" sample docstring"""
## @package stuff
# @author me
# Description
#
# Some more description
## A class that does whatever
class whatever:
## A method that does stuff
def dostuff(self):
print 'here'
def show():
print 'showing'
show()
Doxygen support for Python was added in version 1.4.4 (http://www.doxygen.nl/changelog_1.4.html). You’ll need to update to a more recent version in order to generate doxygen documentation from your Python code.