Popular recipes by Drew Gulino http://code.activestate.com/recipes/users/4119417/2011-07-29T13:22:54-07:00ActiveState Code RecipesPyliner - Script to run arbitrary Python code on the command line (Python)
2011-07-29T13:22:54-07:00Drew Gulinohttp://code.activestate.com/recipes/users/4119417/http://code.activestate.com/recipes/577075-pyliner-script-to-run-arbitrary-python-code-on-the/
<p style="color: grey">
Python
recipe 577075
by <a href="/recipes/users/4119417/">Drew Gulino</a>
(<a href="/recipes/tags/awk/">awk</a>, <a href="/recipes/tags/oneliner/">oneliner</a>, <a href="/recipes/tags/perl/">perl</a>, <a href="/recipes/tags/pipe/">pipe</a>, <a href="/recipes/tags/python/">python</a>, <a href="/recipes/tags/sed/">sed</a>, <a href="/recipes/tags/sysadmin/">sysadmin</a>).
</p>
<p>A Python script that runs arbitrary Python scripts in an input loop. This allows one-liner Python scripts similarly to how Perl runs them (-l,-a,-n,-F, BEGIN, END)</p>
<p>It provides additional syntax that allows multiline Python scripts to be run on a single line</p>
tgraph - Simple ASCII graphing utility (Python)
2011-07-28T21:13:23-07:00Drew Gulinohttp://code.activestate.com/recipes/users/4119417/http://code.activestate.com/recipes/577077-tgraph-simple-ascii-graphing-utility/
<p style="color: grey">
Python
recipe 577077
by <a href="/recipes/users/4119417/">Drew Gulino</a>
(<a href="/recipes/tags/ascii/">ascii</a>, <a href="/recipes/tags/graph/">graph</a>, <a href="/recipes/tags/log/">log</a>, <a href="/recipes/tags/sysadmin/">sysadmin</a>, <a href="/recipes/tags/tail/">tail</a>, <a href="/recipes/tags/unix/">unix</a>).
</p>
<p>Takes a stream of numbers and outputs simple ASCII graphs of those numbers</p>
Unprettify XML: Strip irrelevant spaces and newlines from XML (Python)
2011-04-21T17:31:01-07:00Drew Gulinohttp://code.activestate.com/recipes/users/4119417/http://code.activestate.com/recipes/551778-unprettify-xml-strip-irrelevant-spaces-and-newline/
<p style="color: grey">
Python
recipe 551778
by <a href="/recipes/users/4119417/">Drew Gulino</a>
(<a href="/recipes/tags/xml/">xml</a>).
</p>
<p>This is a way to 'unprettify' xml, making it hard to read, but reducing the size.</p>