tags:

views:

83

answers:

2

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?

+1  A: 

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.

David Zaslavsky
+1  A: 

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

pydoc MySQLdb

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

David Locke