次のPythonファイルを実行してdoxygenを学習しようとしています。 同様の試みがC++ファイルで成功しましたが、生成されたmain.htmlファイルにコンテンツを生成することができません。 HTMLページ内の2つのリンクとして「メインページ」と「ファイルリスト」のみを表示しています。doxygenをPythonで実行できません
私は間違っていますか?
""" 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を使用しています。1.3.9.1 – Ani
doxygenによって読み込まれるpython用のフィルタがあります。 – Ani