up vote 1 down vote favorite
share [g+] share [fb]

I would like to get Python's documentation for MySQLdb in Man -format such that I can read them in terminal.

Where are Man -pages for MySQLdb in Python?

link|improve this question

Please, create a tag for MySQLdb. – Masi Jul 21 '09 at 14:06
feedback

migrated from superuser.com Jul 21 '09 at 16:42

This question came from our site for computer enthusiasts and power users.

2 Answers

up vote 1 down vote accepted

Have you tried using pydoc? Try running the following command.

pydoc MySQLdb

That should give you something close to what you're looking for.

link|improve this answer
feedback

You may have to convert it yourself. MySQLdb doesn't come with man pages (as far as I know) but the documentation can be accessed e.g. from the project page. The user guide has a format reasonably similar to a man page so you could probably try to work with that.

Note that you can just download the user guide and use an HTML-aware pager like less to read it in the terminal.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.