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
I am interested in what the olefileio_pl could be able to do (specifically I am trying to write something to a windows 7 sticky note) so I have looked around online for documentation. It doesn't seem like there is any real, detailed docs online. Is there something better then the builtin python help --olefileio_pl or help(olefileio_pl)? It seems that there is no online documentation for the module, and the online docs are typically much better than the builtin ones.
The new version 0.40 (renamed olefile) has now experimental write features, that will be completed over time: http://www.decalage.info/python/olefileio
See also http://www.decalage.info/python/olewrite
Alternatively, if your code runs on Windows, you may use the Win32 API with pywin32 for this (look for pythoncom.StgOpenStorageEx).
I also reorganized and improved the documentation, you can find it here:
https://bitbucket.org/decalage/olefileio_pl/wiki
If you have specific questions, you can contact me using this form:
http://decalage.info/contact
Philippe.
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 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++.
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
Where can one find a manual to Quickly, where it is written about using (=programming, how to connect widgets in PreferencesDialogWindow with preferences, and how to use them in the application) application preferences? Official tutorial (both in "quickly tutorial" and here) tells nothing about it, although it is a very important aspect (they both are very short in general...).
(I mean the standard ubuntu-application template)
I tried to ask it on AskUbuntu, but didn't get an answer, so I hope to get a response here.
Maybe it would be easier for someone to just tell how it works, than point out a guide, in this case you are welcome!
I think Quickly's documentation should have what you're looking for. If not, maybe you'll find it in this tutorial.
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
Real-time api browser websites like ruby-docs.com and jqapi.com are very useful, it there any similar website for Python?
Updated:
By real-time I means instant search. docs.python.org is well-wriiten but a little hard for searching (comparing with ruby-docs.com and jqapi.co).
Not clear what you mean by real-time API in this respect, a Python API?.
The documentatation at http://docs.python.org is very useful and complete, supports multiple version of the Python language (starting with 2.6) and has search.
The search there is not as interactive e.g. the one on ruby-docs.com.
I use docs.python.org quite often and personally do not miss that interactivity, as my IDE for Python has a better interactive information than a website can provide.
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.
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 2 years ago.
Improve this question
Someone could point out sites/books where I can find introductory documentation about the architecture of the Python VM?
I'm interested in the C version, but if there are easy-to-follow references about other implementations it could be helpful too.
I'm trying to find any kind of resources of higher level than plain source code (however, UML diagrams or something like that would be nice) And also, information about the design decisions involved, including tradeoffs between the different factors (performance, stability, simplicity).
You should be able to find the information you need at https://github.com/python/cpython/blob/HEAD/Python/ceval.c
If that's too low level for you, try
http://www.python.org/dev/peps/pep-0339/
http://codespeak.net/pypy/dist/pypy/doc/interpreter.html
http://thermalnoise.wordpress.com/2007/12/30/exploring-python-bytecode/
https://docs.python.org/library/dis.html#python-bytecode-instructions
http://wiki.python.org/moin/ByteplayDoc
http://peak.telecommunity.com/DevCenter/BytecodeAssembler
http://nedbatchelder.com/blog/200804/wicked_hack_python_bytecode_tracing.html
https://jasonleaster.github.io/2016/02/21/architecture-of-python-virtual-machine/
Inside The Python Virtual Machine by Obi Ike-Nwosu.