-2
votes
0answers
22 views

Documentation of Existing Code

I know it is very open question and I was not able to Fine proper solution from internet. I am analyzing existing code which have used multiple Algorithm and Business Logic.We do not have any document ...
1
vote
0answers
21 views

Generate test plan from test method names and docstrings

I have a set of tests written using nose and I want to automatically create something like a test plan readable by non-programmers using sphinx or perhaps some other tool. class TestUser(): ...
0
votes
1answer
21 views

google cloud endpoints discrepancy between documentation, and what works in my app

The documentation states you should load your api from javascript like this: var ROOT = 'https://your_app_id.appspot.com/_ah/api'; gapi.client.load('your_app_id', 'v1', function() { ...
2
votes
1answer
34 views

“Docstring processing tools” following PEP 257?

PEP 257 says: Docstring processing tools will strip a uniform amount of indentation from the second and further lines of the docstring, equal to the minimum indentation of all non-blank lines ...
1
vote
0answers
19 views

Manual to Quickly: application preferences?

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) ...
1
vote
1answer
39 views

How do I avoid “SEVERE: Duplicate ID” warnings for my autodoc'd modules in Sphinx?

I'm using rST/Sphinx to document my Python, however when building it's throwing warnings such as ...Code/doc/code.rst:3: SEVERE: Duplicate ID: "module-toast". My Python source files are documented ...
-1
votes
1answer
52 views

is there an ast python3 documentation? (At least for the Syntax) [closed]

Im trying to work with the ast class in python. I want to get all Function calls and their corresponding arguments. How can I Implement that? The official Documentation on python.org is really ...
2
votes
2answers
69 views

Python: Function Documentation

Is there a way to check what a function or a method does inside of python itself similar to the help function in Matlab. I want to get the definition of the function without having to Google it.
0
votes
1answer
41 views

Is there a cheat-sheet that maps python language features to 'special method names'?

Python has several 'special method names' for classes, like __eq__ or __init__. Inside each one's documentation, it is explained how to use it 'from python', ie. you use __add__ for customizing a+b, ...
0
votes
2answers
29 views

How do I make the python help system show dynamically created classes in my dynamically created module?

I am dynamically creating a python module with dynamically created classes within that module. However, when using the help function in python, the classes do not appear. Here is an example of the ...
1
vote
2answers
39 views

.. plot directive in restructured text

I was looking at this site. Specifically, the source. It appears to create a plot (complete with source code!) is extremely easy: .. plot: somefile.py But, when I try it, sphinx yells at me. ...
1
vote
1answer
38 views

Any Python api document websites with instant search like ruby-docs.com and jqapi.com?

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 ...
1
vote
2answers
58 views

How to document an exception using Sphinx

I can't seem to figure out how to document exceptions using Sphinx. I've tried the following: def some_funct(): """ :raises: ExceptionType: Some multi-line exception description. ...
0
votes
1answer
34 views

Any way to generate multiple different pdfs from single sphinx configuration

I have a nice sphinx documentation concerning a projects, and I would like to extend it to generate documents such as specs, and other. I would like to have spec-for-foo.rst that generates ...
0
votes
0answers
53 views

python error to consult modules

I am having a problem listing modules in python 2.7.3 I don't know if the error is because some library is not installed, or some are badly installed. The compiz is reloaded in the process, and here ...
0
votes
1answer
27 views

is there any way to jump to a specified function name using help() command in python

I always use help(object) command in python and I would like to know is there any way I can skip most of the text and kinda jump to the function that I want. For example: >>> import boto ...
0
votes
1answer
50 views

Generate DITA xml from docstring

I'm need to document my project using DITA and I'm wondering if I can use python's docstring conventions and reStructuredText to create DITA's XMLs. Any pointers?
0
votes
1answer
44 views

Get docstring from script by Sphinx

I have classical Python package structure: bin/ my_script docs/ my_package/ ... and I create docs with Sphinx. I would like to take docstring from my_script automatically. Is there any way ...
0
votes
0answers
71 views

How can I use tribes, building off of pinax-social-project?

As a sample question about how to use Pinax, I would like to use tribes. I would like to make a separate page from the homepage that lists existing tribes, a page that can be used to request that an ...
0
votes
1answer
39 views

use custom html writer in sphinx

How can I use a different HTMLTranslator than the one that ships with Sphinx in sphinx.writers.html? Specifically, I want to modify the method depart_desc_signature. I can't modify Sphinx itself ...
0
votes
2answers
59 views

Documenting class instance as a function

When using sphinx autodoc extension to create documentation how can I document a class instance (not the class itself) as if it was a function? Class has a __call__ method defined.
2
votes
0answers
81 views

sphinx change table of contents html

I'm working on theming my documentation, and I'm trying to get sphinx to add a class to the <ul> elements of the Table of Contents. Unfortunately, it looks like the HTML is generated just the ...
0
votes
0answers
65 views

Pythonic way of adding copyright disclaimer in code and documentation [closed]

I'd like to add copyright disclaimer at the top of my python code and ideally have it appear in the generated pydoc. But I'm not sure what the "Pythonic" way it would be... e.g., Should I use ...
0
votes
1answer
41 views

Need help interpreting Python documentation

In the documentation the following line is given to describe how to initiate a class object class xml.etree.ElementTree.Element(tag, attrib={}, **extra) Under that it there's a line that says ...
1
vote
2answers
75 views

Sphinx docs variable

I'm writting a doc for a new project using sphinx. But this project, because it's new, may change name and I don't want to replace all reference of "Project Name" in all my doc. So I want to know if ...
1
vote
2answers
98 views

How to convert a Python file docstring's to HTML

Is there a simple way to convert a .py to an HTML by displaying its function api's and docstring's? I read up on Sphinx - but thats for a real big project , I am just trying to find what is the ...
1
vote
0answers
50 views

Link functions/classes in source code to their definition

Analogous to normal text links I am a :py:func`link to my_function <my_function>` I want to link a function/class in an example source code to its definition. E.g., in print 'hello' + ...
4
votes
6answers
152 views

How to document structures in python?

If an argument to a function is expected to be a certain (or equivalent) structure, built using python's list, tuple and dict, how and where should it be documented? An example documentation: def ...
1
vote
1answer
60 views

Marking classes and/or methods as deprecated in Sphinx

Is there any way to mark a class and/or method as deprecated in Sphinx? I can only find a deprecated option for modules. Using a generic admonition would work, but wouldn't carry the semantic ...
3
votes
1answer
48 views

Resolving name conflicts in references in Sphinx with intersphinx

I am writing docs for my python library Using sphinx, I also added another sphinx documentation with intersphinx. And it works pretty nice, but a few my functions are named the same as in referenced ...
1
vote
1answer
69 views

matplotlib documentation in html format

I like the matplotlib documentation at this web address, http://matplotlib.org/index.html but I cannot access it when my laptop computer is offline (traveling, etc.) Can anyone recommend a way to ...
0
votes
1answer
55 views

Documentation Notation [duplicate]

Possible Duplicate: Understanding Python function arg notation like this: str.find(sub[, start[, end]]) I don't understand why the documentation of functions for python is listed this way. ...
1
vote
1answer
47 views

Confusion while Interpreting the Documentation - terminology <b>most</b> and <b>recent</b>

Answering a specific question, I stumbled upon while trying to interpret the Python Document Referring to the documentation for os.uname and os.unsetenv(varname) in os — Miscellaneous operating ...
2
votes
1answer
169 views

What tools are available to auto-produce documentation for a REST API written in Flask?

I'm looking for a quick way to auto produce REST API docs from a Flask REST API I've written. Does anyone know of tools that can do this and how I would markup the code?
0
votes
1answer
23 views

Are there any good tutorials on the Albow module?

Ok, so the Albow python module is not very well documented in my opinion, and I need some help trying to find a good tutorial on it that shows me how to render 3D objects. I just can't find any. ...
-4
votes
1answer
134 views

Is there Python official API documentation? [closed]

I am looking for a complete and official API documentation of Python, just like we can find in Java from its official site http://docs.oracle.com/javase/7/docs/api/ However, what I can find is just a ...
2
votes
0answers
56 views

Grouping non-parameters of a function as variables?

I'm using Doxygen to document my python code, and I've got a django function that just receives "request", but I'd like to document what's supposed to be in request.GET... How could I have doxygen ...
0
votes
2answers
76 views

What are the conditions of using a portion of the Python documentation? [closed]

I want to use a portion of Python's documentation in the documentation of my open source project. I've found the license for Python here and, as it was pointed out to me, it applies to the ...
0
votes
1answer
42 views

Flask Log In Validation + Possible Documentation Error

http://flask.pocoo.org/snippets/64/ I was reading the Flask docs. I was just wondering if there is an error in the docs or maybe there's something I don't understand. Shouldn't "if ...
0
votes
0answers
144 views

python pydocs showing imported modules from nltk, cannot remove them

I'm using pydoc in python 2.7.3 to generate documentation for a file called PreProcessingAPI.py which contains a class called PreProcessingAPI In PreProcessingAPI.py, I have the following imports in ...
0
votes
0answers
34 views

How to declare short and long arguments of a python script in sphinx documentation?

Suppose that you wrote a python script which accept arguments -t or --tofile which are synonyms. Thus if you write myscript -t or myscript --tofile you obtain the same result. I also wrote the ...
0
votes
1answer
54 views

Python: How can I define a class in a doctest?

I would like to use a doctest comment block to demonstrate the usage of a particular base class, but either this cannot be done with doctest or I am doing something wrong. Here is my simple demo code. ...
5
votes
2answers
4k views

OpenCV 2.4.3 and Python

Few days ago I went into searching for a good way to make a simple computer vision system. OpenCV library is something I need but it proved hard to learn with Python especially after OpenCV 2.4.3 ...
-1
votes
2answers
192 views

Documentation for poker-engine [closed]

I am interested in developing a poker game. For this purpose I found poker-engine. But with all googling and searching the projects sites I couldn't find any documentation on its API. Do you know any ...
6
votes
2answers
97 views

Access other attributes of the instance with __getattr__(self, name)

In Python's documentation, on the __getattr__ function it says: Note that if the attribute is found through the normal mechanism, __getattr__() is not called. (This is an intentional asymmetry ...
0
votes
0answers
97 views

Sphinx conditional include

I'm working with a Python module which includes a lot of unrelated stuff in the same module namespace. In the Sphinx documentation (with the autodoc extension), I'd like to separate them based on name ...
0
votes
1answer
218 views

Python: How I can define in sphinx which .rst files and directories should be used?

How I can define in sphinx which .rst files and directories should be used? I want to include an automatic documentation generator in my testing/building/documentation script. sphinx-quickstart was ...
2
votes
1answer
214 views

sphinx-apidoc usage - multiple source python directories

So I have my python source files in two different directories:- e.g. ~/work/myproject ~/.virtualenvs/myproject How do I use sphinx-apidoc to look in both directories recursively to generate my ...
0
votes
2answers
52 views

Line Length for Inline Python Documentation

When writing inline documentation, is there a standard method for line breaks when it comes longer lines of text (Obviously this shouldn't happen too frequently)? For example: "This modules does ...
3
votes
2answers
3k views

How do I create documentation with pydoc?

I'm trying to create a document out of my module, and what I did, was use pydoc from cmd.exe in windows 7 (python 3.2.3) as following: python "<path_to_pydoc_>\pydoc.py" -w myModule This led ...

1 2 3 4 5 6