Reputation: 1332
Trying to use autdoc extension of sphinx but its not working. i kept "docs" folder in djano project folder. its not generating docs for my module. Also i am not sure how does auto-todo works.
Upvotes: 0
Views: 1065
Reputation: 43932
Without seeing your index.rst
file we can only guess, and my guess would be missing something like this:
.. automodule:: myproject.myapp
:members:
Where of course you replace myproject
and myapp
with your apps.
You can also try using this very new project http://pypi.python.org/pypi/django-sphinx-autodoc/0.0 which is so new it's at version 0.0!
Here are some blog posts discussing how to use autodoc:
http://yml-blog.blogspot.com/2009/06/sphinx-autodoc-and-django-app.html
Upvotes: 1