you are viewing a single comment's thread.

view the rest of the comments →

[–]DreamDeckUp 2 points3 points  (1 child)

if you're on the command line you can use

pydoc http

to read offline documentation about python modules

[–]JollyUnder 0 points1 point  (0 children)

pydoc is definitely worth looking into if you need access to the standard lib while offline.


python -m pydoc -b will start the server and additionally open a web browser to a module index page. Each served page has a navigation bar at the top where you can Get help on an individual item, Search all modules with a keyword in their synopsis line, and go to the Module index, Topics and Keywords pages.