Ani
Ani

Reputation: 1018

Not able to run doxygen with python

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()

Upvotes: 0

Views: 499

Answers (2)

DRH
DRH

Reputation: 8366

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.

Upvotes: 2

burningcheerio
burningcheerio

Reputation: 23

you should try this: MyClass.E = variable that is, if I haven't got your meaning wrong.

Upvotes: 0

Related Questions