<?xml version="1.0" encoding="UTF-8" ?>
<rdf:RDF xmlns="http://usefulinc.com/ns/doap#" xmlns:foaf="http://xmlns.com/foaf/0.1/" xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#"><Project><name>columnize</name>
<shortdesc>Format a simple (i.e. not nested) list into aligned columns.</shortdesc>
<description>Return a list of strings as a compact set of columns arranged 
horizontally or vertically.

For example, for a line width of 4 characters (arranged vertically):
    ['1', '2,', '3', '4'] =&gt; '1  3\n2  4\n'
   
or arranged horizontally:
    ['1', '2,', '3', '4'] =&gt; '1  2\n3  4\n'
        
Each column is only as wide as necessary.  By default, columns are
separated by two spaces - one was not legible enough. Set "colsep"
to adjust the string separate columns. Set `displaywidth' to set
the line width. 

Normally, consecutive items go down from the top to bottom from
the left-most column to the right-most. If +arrange_vertical+ is
set false, consecutive items will go across, left to right, top to
bottom.

Adapted from the routine of the same name inside cmd.py</description>
<homepage rdf:resource="http://code.google.com/p/pycolumnize" />
<maintainer><foaf:Person><foaf:name>Rocky Bernstein</foaf:name>
<foaf:mbox_sha1sum>f142cce552f268e5553f8ce24770de77138c2b49</foaf:mbox_sha1sum></foaf:Person></maintainer>
<release><Version><revision>0.3.2</revision></Version></release>
</Project></rdf:RDF>