Skip to content

Instantly share code, notes, and snippets.

@justinabrahms
Forked from ask/djpydoc
Created June 25, 2009 11:45
Show Gist options
  • Save justinabrahms/135808 to your computer and use it in GitHub Desktop.
Save justinabrahms/135808 to your computer and use it in GitHub Desktop.
# A pydoc that can read modules using Django.
#!/usr/bin/env python
from django.conf import settings
if not settings.configured:
settings.configure()
import pydoc
if __name__ == "__main__":
pydoc.cli()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment