刘凡 9ff4d1d109 add S3,archive,truncate | há 2 anos atrás | |
---|---|---|
.. | ||
.gitignore | há 2 anos atrás | |
LICENSE | há 2 anos atrás | |
MANIFEST | há 2 anos atrás | |
README.md | há 2 anos atrás | |
setup.py | há 2 anos atrás | |
test.py | há 2 anos atrás | |
truncate.py | há 2 anos atrás |
truncate string in python
##Code
import sys
def truncate(str, limit, ellipsis='...'):
return str[:limit] + ellipsis if len(str) > limit else str
sys.modules[__name__] = truncate
##Install
$ pip install trunkate
##Usage
import truncate
truncate('Hello world!', 4)
# Hell...
truncate('Hello world!', 100)
# Hello world!