Popular Python recipes tagged "tools"http://code.activestate.com/recipes/langs/python/tags/tools/2012-05-18T14:34:13-07:00ActiveState Code Recipesgprof2dot.py (Python) 2012-05-18T14:34:13-07:00Stephen Chappellhttp://code.activestate.com/recipes/users/2608421/http://code.activestate.com/recipes/578138-gprof2dotpy/ <p style="color: grey"> Python recipe 578138 by <a href="/recipes/users/2608421/">Stephen Chappell</a> (<a href="/recipes/tags/profiling/">profiling</a>, <a href="/recipes/tags/tools/">tools</a>, <a href="/recipes/tags/visualization/">visualization</a>). </p> <p>This is the <code>gprof2dot.py</code> program converted for use with the latest version of Python (3.2). It generates a dot graph from the output of several profilers. Please observe the original License embedded by the author, Jose Fonseca. His website for this program can be found on <a href="http://code.google.com/p/jrfonseca/wiki/Gprof2Dot">Google Code</a>.</p> Easy property creation and control (Python) 2010-12-01T17:22:49-08:00Kevin L. Sitzehttp://code.activestate.com/recipes/users/4173535/http://code.activestate.com/recipes/577482-easy-property-creation-and-control/ <p style="color: grey"> Python recipe 577482 by <a href="/recipes/users/4173535/">Kevin L. Sitze</a> (<a href="/recipes/tags/class/">class</a>, <a href="/recipes/tags/property/">property</a>, <a href="/recipes/tags/property_creation/">property_creation</a>, <a href="/recipes/tags/tools/">tools</a>, <a href="/recipes/tags/unittests/">unittests</a>). </p> <p>The Property class provides basic functionality that allows class level control over how a particular attribute is managed. In its simplest form a Property attribute works exactly like a regular attribute on an instance while providing documentation details about the attribute accessible via the declaring class.</p> SPOJ backup script (Python) 2010-02-09T08:50:44-08:00Shashwat Anandhttp://code.activestate.com/recipes/users/4172995/http://code.activestate.com/recipes/577036-spoj-backup-script/ <p style="color: grey"> Python recipe 577036 by <a href="/recipes/users/4172995/">Shashwat Anand</a> (<a href="/recipes/tags/algorithm/">algorithm</a>, <a href="/recipes/tags/algorithms/">algorithms</a>, <a href="/recipes/tags/spoj/">spoj</a>, <a href="/recipes/tags/tools/">tools</a>). Revision 3. </p> <h4>Introduction</h4> <p>At Sphere Online Judge (<a href="http://www.spoj.pl" rel="nofollow">http://www.spoj.pl</a>) you are given the capability of trying out the challenging problems given. It also gives you the capability of viewing and downloading your own solution.</p> <p>The tool spojbackup tends to automatically backup all your Accepted submissions and save them on the desired location of your computer. The basic idea is to automate the process which can be used as a backup and an offline reference tool of your own codes.</p> <h4>Features</h4> <ul> <li><p>Resume downloads. spojbackup currently supports resuming of the solutions if internet connection is disrupted</p></li> <li><p>Incremental backup facility it'll not download the code already present on your machine. Only newer code added in your signedlist will be downloaded</p></li> <li><p>User-defined destination all codes are saved at user-defined destination if no option is given by user it saves in the folder from where command is run</p></li> <li><p>Proxy support Proxy support is provided as SPOJ users are generally university students and they are generally behind a proxy and university firewall.</p></li> </ul> <h4>Bugs</h4> <p>In case of finding a bug please drop a mail to the authors. We will try to sort out the problems.</p>