1
vote
2answers
27 views

Python merging doc files into 1 doc file

In Python on Linux I would like to merge several .doc files into 1 .doc file? (The .doc file will be open in Windows machines). I have searched on internet but I don't find useful information. I ...
-1
votes
1answer
25 views

Cherrypy website does not work, where to find documentation? [closed]

Today I found out that cherrypy documentation page does not work anymore. Does anyone know an alternative source of documentation?
0
votes
2answers
47 views

Suggest a documentation tool/method/framework (not a generator)

Are there any tools/frameworks to write documentation manually, preferably with ability to display syntax-highlighted code snippets? In short, I would like to achieve similar results to Sphinx ...
0
votes
1answer
59 views

Natural Docs comments can't have line breaks

I am using Natural Docs to generate docs from my python codes, my python comments are like this: Function: get_students Parameters: since_data: Returns: res: {'count': 'info': [ 'mobile': ...
0
votes
2answers
84 views

python doc for docstring

I want to have a tool which can generate documentation from the source code comments, I found a tool named pythondoc, it can generate HTML or XML from python source codes, but it doesn't support ...
0
votes
1answer
75 views

Documenting Python to MS Word readable format

I'm trying to produce a post-dev "interface control document" for a not particularly well documented, smallish Python codebase. To fit into an in-place document schema it needs to be delivered as a ...
1
vote
2answers
296 views

Number of pages of a word document with Python

Is there a way to get efficiently the number of pages of a word document (.doc, .docx) with Python ? And for an .odt file ? I want to use this for a web application based on Web2py on Linux. Thank ...
0
votes
2answers
355 views

Adding a header to docx file with python

I have several hundred word documents for which I need to add a specific header (as in a typical MS Word header/ footer). It is not that the header needs to be modified, these documents just don't ...
1
vote
2answers
605 views

Convert .pages to .doc or .pdf in Python

How does one convert a .pages file to a .doc or .pdf file using Python? My use case is basically: User uploads a .pages file to my service My service converts the .pages to a .pdf` The .pdf is ...
4
votes
6answers
973 views

How do I see the python doc on linux?

In Windows, the python has a chm type document, and it is very convenient to read. But in the linux, is there any document let me to read?
1
vote
1answer
313 views

How do I add a Table of Contents to every page in my Sphinx Documentation?

I'm trying to replicate how the ToC shows up in the sidebar on this page: http://matplotlib.sourceforge.net/sampledoc/extensions.html ...but I can't find any doc explaining how to or "Show Source" on ...
0
votes
3answers
539 views

Generating DOC (and DOCX) templates using Python or Java with absolute positioned boxes

For a web-to-print we need to generate a .doc (Microsoft Word 2003+) compatible templates/documents where we need to position some data inside the document (basically we need to auto-generated letter ...
0
votes
2answers
83 views

After matching a line, how do I read some more lines and record values, then start over? Python

I am wondering how to search a text document for the word POLYLINE, and then once I find it, how to keep searching the text document for more attributes for POLYLINE, like x coordinates and y ...
0
votes
1answer
727 views

doxygen, python and function parameters

Doxygen get me docs similarly to http://www.stack.nl/~dimitri/doxygen/examples/pyexample/html/classpyexample_1_1PyClass.html But I want to see Functions with parameters similarly to c/c++. Is there ...
3
votes
2answers
2k views

about python __doc__ docstring

i want to show docstring of my function, but if i use like this @cost_time def func(): "define ...." blabla print func.__doc__ it will not show the docstring,just because i use some meta ...