Mercurial > hg > TextShaper
view textshaper/onelineit.py @ 52:8d8c1ac0e8e1
add a test text and wire some things up
| author | Jeff Hammel <k0scist@gmail.com> | 
|---|---|
| date | Sun, 17 May 2015 08:48:56 -0700 | 
| parents | 21b6a9569f21 | 
| children | 
line wrap: on
 line source
#!/usr/bin/env python """ make a string one line """ import sys from .decorator import lines @lines def onelineit(string): """make a string one line""" string = [ i.strip() or '\n' for i in string ] string = ' '.join(string) string = string.split('\n') string = [ i.strip() for i in string if i.strip() ] return '\n\n'.join(string).splitlines() def main(args=sys.argv[1:]): """CLI""" print (onelineit(sys.stdin.read())) if __name__ == '__main__': main()
