Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 5 years ago.
Improve this question
Looking for something like PyDoc that can generate a set of Wiki style pages vs the current HTML ones that export out of PyDoc. I would like to be able to export these in Google Code's Wiki as an extension to the current docs up there now.
Take a look at pydoc.TextDoc. If this contains too little markup, you can inherit from it and make it generate markup according to your wiki's syntax.
Have you taken a look at Sphinx?
Related
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
I am teaching art students the basics of Python and it would be very convenient to add some graphics (drawings, pictures, etc.) in the comments within the code instead of "just" code and text comments.
I have seen some friends using Mathematica and exchanging beautiful files that include graphics, comments, pictures, etc.
Does such a thing exists for Python?
Have you looked at the iPython-Notebook? It allows you to write/run code and use html for notes. If you know html it will be easy to add graphics in too. Not sure if that exactly answers your problem, but it is definitely a nice tool
Link: http://ipython.org/notebook.html
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 7 years ago.
Improve this question
In this official treebook tutorial they use the images module. I can't find it. Can someone give me a link or example how how to actually add things to the listbook? I want to eventually display the filesystem folders there.
I can't find any information or examples, so a small one would help a lot.
Thanks
I'm assuming you're talking about the Treebook example found here: http://wiki.wxpython.org/Treebook
The zip for the entire source of those examples (including images.py) is on the author's blog: http://www.blog.pythonlibrary.org/2009/12/03/the-book-controls-of-wxpython-part-1-of-2/3/
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I am looking for a good Python PDF library that would parse some format to pdf (I want to use it to programmatically create documents). I have dome some search, and PyPDF looks like an option. Is there any other libraries that I should be aware of?
Here are a few options: ReportLab, PyX, and pyfpdf.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 3 years ago.
Improve this question
can anyone recommend a resource that shows how the AST module works step-by-step? particularly the NodeVisitor and NodeTransformer...
Not step-by-step, but good: http://eli.thegreenplace.net/2009/11/28/python-internals-working-with-python-asts/
The Python AST module reference is available here
The entire documentation is available here. Also I recommend watching Pycon Video
As It gives a lot of insight to its working as well as the documentation.
Closed. This question does not meet Stack Overflow guidelines. It is not currently accepting answers.
We don’t allow questions seeking recommendations for books, tools, software libraries, and more. You can edit the question so it can be answered with facts and citations.
Closed 8 years ago.
Improve this question
I found the sample code cccwiki which is good, but I would like a wiki that keeps tracks of all revisions to the pages and lets users show diffs and revert to previous versions.
You can start with http://code.google.com/p/google-app-engine-samples/downloads/detail?name=cccwiki_20080409.tar.gz&can=2&q= which is exactly "A simple Google App Engine wiki application" for you to download, try, and modify as you want. You can also browse its sources online at http://code.google.com/p/google-app-engine-samples/source/browse/trunk/cccwiki/ .
Someone pointed me to pickywiki. I'll give it a try.