Go to file
2014-10-30 14:30:22 -04:00
.gitignore Initial commit 2014-10-30 13:41:49 -04:00
coverage_report.txt stringify, and such 2014-10-30 14:30:22 -04:00
glue.py stringify, and such 2014-10-30 14:30:22 -04:00
IRC.md update irc log 2014-10-30 13:53:49 -04:00
LICENSE Initial commit 2014-10-30 13:41:49 -04:00
README.md stringify, and such 2014-10-30 14:30:22 -04:00
requirements.txt coverage reports 2014-10-30 14:21:43 -04:00
tests.py stringify, and such 2014-10-30 14:30:22 -04:00

#How to use Glue

>>> from glue import glue
>>> print glue("any","number","of","things","together")
any number of things together

>>> print glue("any","number","of","things","together",where="anywhere")
any number of things together anywhere

>>> print glue("any","number","of","things","together", "even",["nested","lists"]])
any number of things together even nested lists

#Protip You should probably just use str.join as this is satire.

Coverage

Name    Stmts   Miss  Cover   Missing
-------------------------------------
glue       14      0   100%   
tests      24      0   100%   
-------------------------------------
TOTAL      38      0   100%