tools to aid in browsing/following (large) python projects' source code - Stack Overflow most recent 30 from stackoverflow.com2009-12-22T21:31:42Zhttp://stackoverflow.com/feeds/question/1077273http://www.creativecommons.org/licenses/by-nc/2.5/rdfhttp://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code5 tools to aid in browsing/following (large) python projects' source codejd2009-07-02T23:57:09Z2009-08-25T22:27:35Z
<p>A specific example: becoming familiar with django's project source code (core, contrib, utils, etc.). Example of a useful tool: ctags - it allows you to "jump" to the file+location where a function/method is defined. Wondering about other tools that developers use (example: is there a tool that given a function x(), lists the functions that call x() and that are called by x()?). Thanks.</p>
<p><strong>Edit</strong>: added an answer with an aggregate of tools mentioned so far in other answers</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077343#10773431Answer by João for tools to aid in browsing/following (large) python projects' source codeJoão2009-07-03T00:26:57Z2009-07-03T00:26:57Z<p>You can maybe try cscope! Wikipedia says that</p>
<blockquote>
<p>cscope is often used to search content within C or C++ files, but it can be used to search for content in other languages such as Java, Python, PHP and Perl.[citation needed]</p>
</blockquote>
<p>And you can also dig in <a href="http://pypi.python.org/pypi/pycscope/0.2" rel="nofollow">this project</a>.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077360#10773600Answer by Unknown for tools to aid in browsing/following (large) python projects' source codeUnknown2009-07-03T00:32:13Z2009-07-03T00:32:13Z<p>I think <a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">Komodo Edit</a> and <a href="http://pydev.sourceforge.net/" rel="nofollow">PyDev</a> allows you to jump to python function defs.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077377#10773770Answer by Patrick Gryciuk for tools to aid in browsing/following (large) python projects' source codePatrick Gryciuk2009-07-03T00:42:34Z2009-07-03T00:42:34Z<p>This is subjective so I think it should probably be a community wiki. That said, the best thing you can probably do to make browsing large projects is to be familiar with hotkeys provided in your favourite IDE. Using the keyboard to browse through large source code is much easier than manually scrolling through text, highlighting text and fumbling through an IDE with a mouse. </p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077398#10773980Answer by ironfroggy for tools to aid in browsing/following (large) python projects' source codeironfroggy2009-07-03T00:57:53Z2009-07-03T00:57:53Z<p>Document it as you go. Leave trails, improve the structure, and keep notes. By the time you've found you way around the enter codebase, you'll have a good map.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1077854#10778540Answer by Eric for tools to aid in browsing/following (large) python projects' source codeEric2009-07-03T05:13:05Z2009-07-03T05:13:05Z<p>I like <a href="http://www.eclipse.org/" rel="nofollow">Eclipse</a> and the <a href="http://pydev.sourceforge.net/" rel="nofollow">PyDev</a> plugin. This combination has been very useful to me.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1078006#10780060Answer by Lennart Regebro for tools to aid in browsing/following (large) python projects' source codeLennart Regebro2009-07-03T06:33:59Z2009-07-03T06:33:59Z<p>Many (or even most, I should say) IDE's help you in this by enabling you do go to variable and function definitions, often by just Ctrl+click, or showing you class overviews where you can see all methods and attributes a class has including those inherited, and letting you go to their definition, etc, etc, etc. I can't recommend such a tool highly enough, it's very time-saving for development.</p>
<p>I personally use WingIDE, which is excellent and has all these features, but you should also check out KomodoEdit and Eclipse+PyDev. There maybe more that I don't know of, and it's fully possible that vim and emacs have some sort of plugins for this.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1079071#10790712Answer by jd for tools to aid in browsing/following (large) python projects' source codejd2009-07-03T12:04:58Z2009-08-25T22:27:35Z<p>The following is an aggregate of tools mentioned in other answers...</p>
<h2>cscope </h2>
<p><a href="http://cscope.sourceforge.net/" rel="nofollow">http://cscope.sourceforge.net/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Cscope" rel="nofollow">http://en.wikipedia.org/wiki/Cscope</a></p>
<p>cscope is a console mode or text-based graphical interface ... It is often used on very large projects to find source code, functions, declarations, definitions and regular expressions given a text string.</p>
<h2>pyscope </h2>
<p><a href="http://pypi.python.org/pypi/pycscope/" rel="nofollow">http://pypi.python.org/pypi/pycscope/</a></p>
<p>generates a cscope index of Python source trees</p>
<h2>ctags and exuberant ctags</h2>
<p><a href="http://ctags.sourceforge.net/" rel="nofollow">http://ctags.sourceforge.net/</a></p>
<p><a href="http://ctags.sourceforge.net/ctags.html" rel="nofollow">http://ctags.sourceforge.net/ctags.html</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Ctags" rel="nofollow">http://en.wikipedia.org/wiki/Ctags</a></p>
<p>Ctags is a program that generates an index (or tag) file of names found in source and header files of various programming languages. Depending on the language, functions, variables, class members, macros and so on may be indexed. These tags allow definitions to be quickly and easily located by a text editor or other utility. </p>
<h2>Eclipse: </h2>
<p><a href="http://www.eclipse.org/" rel="nofollow">http://www.eclipse.org/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/Eclipse%5F%28software%29" rel="nofollow">http://en.wikipedia.org/wiki/Eclipse_%28software%29</a></p>
<p>Eclipse is a multi-language software development platform comprising an IDE and a plug-in system to extend it. It is written primarily in Java and can be used to develop applications in Java and, by means of the various plug-ins, in other languages as well, including C, C++, COBOL, Python, Perl, PHP, and others.</p>
<h2>PyDev</h2>
<p><a href="http://pydev.sourceforge.net/" rel="nofollow">http://pydev.sourceforge.net/</a></p>
<p>"Pydev is a plugin that enables users to use Eclipse for Python and Jython development -- making Eclipse a first class Python IDE"</p>
<h2>Komodo Edit</h2>
<p><a href="http://www.activestate.com/komodo%5Fedit/" rel="nofollow">http://www.activestate.com/komodo_edit/</a></p>
<p>wikipedia entry: <a href="http://en.wikipedia.org/wiki/ActiveState%5FKomodo" rel="nofollow">http://en.wikipedia.org/wiki/ActiveState_Komodo</a></p>
<p>Komodo Edit is a free text editor for dynamic programming languages introduced in January 2007. With the release of version 4.3, Komodo Edit is built on top of the Open Komodo project.</p>
<p>It was developed for programmers who need a multi-language editor with broad functionality, but not the features of an IDE, like debugging, DOM viewer, interactive shells, and source code control integration.</p>
<h2>Prashanth's call graph (visualization) tool</h2>
<p><a href="http://blog.prashanthellina.com/2007/11/14/generating-call-graphs-for-understanding-and-refactoring-python-code/" rel="nofollow">http://blog.prashanthellina.com/2007/11/14/generating-call-graphs-for-understanding-and-refactoring-python-code/</a></p>
<p>Just thought I'd share a link to an interesting small fun script I've found long time ago, that draws a graph of function calls. It works only for simple cases, so "as is" it's more fun than useful.</p>
<h2>rope/ropemacs</h2>
<p><a href="http://rope.sourceforge.net/ropemacs.html" rel="nofollow">http://rope.sourceforge.net/ropemacs.html</a></p>
<p>Ropemacs is a plugin for performing python refactorings in emacs. It uses <a href="http://rope.sourceforge.net/" rel="nofollow">rope</a> library and pymacs.</p>
<p><a href="http://www.enigmacurry.com/2008/05/09/emacs-as-a-powerful-python-ide/" rel="nofollow">http://www.enigmacurry.com/2008/05/09/emacs-as-a-powerful-python-ide/</a></p>
<h2>WingIDE</h2>
<p><a href="http://www.wingware.com/" rel="nofollow">http://www.wingware.com/</a></p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1079101#10791011Answer by drdaeman for tools to aid in browsing/following (large) python projects' source codedrdaeman2009-07-03T12:13:10Z2009-07-03T12:13:10Z<blockquote>
<p>is there a tool that given a function x(), lists the functions that call x() and that are called by x()?</p>
</blockquote>
<p>Just thought I'd share a link to an interesting small fun script I've found long time ago, that <a href="http://blog.prashanthellina.com/2007/11/14/generating-call-graphs-for-understanding-and-refactoring-python-code/" rel="nofollow">draws a graph of function calls</a>. It works only for simple cases, so "as is" it's more fun than useful.</p>
<p>For normal Python development personally I use <a href="http://www.enigmacurry.com/2008/05/09/emacs-as-a-powerful-python-ide/" rel="nofollow">GNU Emacs with rope/ropemacs</a> (found a <a href="http://www.youtube.com/watch?v=OMi-uN-6O1Q" rel="nofollow">video</a> showing the features) and sometimes <a href="http://wiki.python.org/moin/EclipsePythonIntegration" rel="nofollow">Eclipse with PyDev</a>.</p>
http://stackoverflow.com/questions/1077273/tools-to-aid-in-browsing-following-large-python-projects-source-code/1108063#11080630Answer by cmdev for tools to aid in browsing/following (large) python projects' source codecmdev2009-07-10T06:52:14Z2009-07-10T06:52:14Z<p>You should notice that cscope targets only the UNIX, Linux OSs.</p>