.gitignore | ||
coverage_report.txt | ||
glue.py | ||
IRC.md | ||
LICENSE | ||
README.md | ||
requirements.txt | ||
tests.py |
#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%