I need to parse docstring from several python files and I need to do this with Javascript.

I couldn't find any reference for this, any ideas?

EDIT: I'm working with Titanium SDK and jquery. PyDoc is not the solution that I'm looking for because I don't want to include some process on the middle of the javascript and the python source code.

EDIT 2: SOLVED - Titanium can use python and javascript at the same time, so I can use python to parse the docstring from the python files.

link|improve this question

60% accept rate
1  
What sort of environment are you using? Why can't you use a small python programme to create the data you need, and read that into your javascript environment? – Marcin Feb 17 at 14:25
I have to do something in javascript, an interface, to read python scripts and display them with their parameters and documentation. – estemendoza Feb 17 at 14:59
Right, but does your deployment platform not have python? Could you use a server to process the python? Can you at least reveal what javascript environment you will be using? – Marcin Feb 17 at 15:10
The ideal scenario is not to use something between javascript and python source code. I'm working with Titanium SDK with jquery. The idea is to create an interface that reads python files and shows the documentation, methods and parameters. does that make sense? – estemendoza Feb 17 at 15:12
Please update your question. Also, do you realise that titanium claims to support python. Why not do the extraction in python? – Marcin Feb 17 at 15:19
show 1 more comment
feedback

2 Answers

Check out how the lexer of SyntaxHighlighter works. That should give you some idea on how to proceed. There are some other syntax highlighters to study as well in case this doesn't fit your purposes.

link|improve this answer
feedback

There is no "hard" enforced docstring format, but as with most of Python, only a "best practice" document. See the following PEP for the specification of how to use Docstrings and what they are, along with many Links for followup reading: http://www.python.org/dev/peps/pep-0257/

You can also try looking at PyDoc, which is used internally by Python to display Docstrings. It can output HTML, but even if that is not sufficient, you should be able to transfer the Python source into JavaScript to write your own parser.

link|improve this answer
Yes, I knew about PyDoc, but I don't want to use a tool between javascript and python source code, but thanks for the info. – estemendoza Feb 17 at 15:07
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.