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 4 years ago.
Improve this question
Is there a way to easily output html documentation based on python docstrings?
If there are, how to do this? I am familiar with HTML/CSS so theming the output is not important, but if there are existing themes, they would help.
I am hoping for a process that can be repeated everytime the code is updated.
Epydoc that seems to do what you need
Sphinx is another tool that can be used to create documentation for python, it also supports C and C++.
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 1 year ago.
Improve this question
I know there is a java class library with all the classes, methods and information on them but I do not know if there is a python one. I'm new to python so I think there must be one and I just haven't heard of it. If anyone could direct me to one, I would greatly appreciate it.
It sounds like you are looking for The Python Standard Library documentation.
It's not called the "Python class library", as unlike Java, not everything in Python has to be a class.
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 1 year ago.
Improve this question
Does anyone know of any good Python modules for handling excel specific formatting? For example color coding cells or changing font size, or perhaps even more complicated stuff like pre-generating a pivot table etc. Would be handy to know for generating reports.
There are several; xlsxwriter is a good one. That's what pandas uses. https://xlsxwriter.readthedocs.io/
Technically, this is not a good StackOverflow question and I should be scolded or answering it.
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
I'd really prefer to use python, but Unity only supports C#, UnityScript (similar to JavaScript) and Boo. Is there an official way to use python (ideally 3.x) instead, or an unofficial patch?
Yes, there is a way to use Python, although it is unofficial. See here.
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 6 years ago.
Improve this question
SVG is a huge standard, which is based on XML. I have parsed SVG as XML in the past. However, some things are hard.
For example, I would like to know the size of a group. As far as I can tell, this is only possible by recursively stepping through all the children in the group (noting all their transformations) and accumulating their sizes.
I would love to have a library that could do stuff like that for me. Does something like this exist?
In python you have pysvg:
import pysvg.parser
svg = pysvg.parser.parse(<filename>)
print svg.get_width(), svg.get_height()
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
I am intersted in building some text based GUIs, things that look like the terminal, but has functions like selecting rows and performing actions.
You know, things like htop and atop, ex:
Any resource on that?
You need Uwrid - a console user interface library for Python.
Documentation available on the website.
There is also Curses, which is in the Python standard library.
don't miss http://pythondialog.sourceforge.net/ also
Also, the library panwid offers a data table widget for Urwid, which does a lot of the heavy-lifting for an htop-like interface.