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?
| ||||
feedback
|
This question came from our site for computer enthusiasts and power users.
|
Have you tried using pydoc? Try running the following command.
That should give you something close to what you're looking for. | |||
|
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 | |||
|
feedback
|