Reputation: 18311
I would like to understand how I can access and navigate Python and Django help.
python manage.py help
And I would like to get info on the commands. Here I have to type:
Type 'manage.py help ' for help on a specific subcommand.
But either combination did not work.
Thanks
L.
Upvotes: 0
Views: 125
Reputation: 88845
you have to do
python manage.py --help
Here is the django admin.py/manage.py doc http://docs.djangoproject.com/en/dev/ref/django-admin/
To getting help in general in python you can use builtin help
function e.g.
>>> help('help')
Welcome to Python 2.5! This is the online help utility.
....
Upvotes: 1