PDA

View Full Version : Python documentation sidebar in firefox!



UbuWu
July 1st, 2005, 02:24 PM
Get the python sidebar for firefox:
http://projects.edgewall.com/python-sidebar/
It helped me very much with starting with python programming... :grin:

ow50
July 1st, 2005, 03:11 PM
Works in Epiphany as well.

Other resources:

Devhelp (http://developer.imendio.com/wiki/Devhelp) to view documentation installed on your hard drive (package python-doc). Usable also for other hard-drive installed documentation, for example PyGTK.

Search bookmarklet to search Python online documentation:

javascript:q = '' + (window.getSelection ? window.getSelection() : document.getSelection ? document.getSelection() : document.selection.createRange().text); if (!q) q = prompt('Search Python documentation for:', ''); if (q!=null) location='http://www.google.com/search?domains=docs.python.org&sitesearch=docs.python.org&sourceid=google-search&submit=submit&q=' + escape(q).replace(/ /g, '+'); void 0

Mike Buksas
July 15th, 2005, 10:16 PM
Those both look like very handy tools. Thanks for passing them on!

Mike