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?
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?
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.
Have you tried using pydoc? Try running the following command.
pydoc MySQLdb
That should give you something close to what you're looking for.