刘凡 9ff4d1d109 add S3,archive,truncate | há 2 anos atrás | |
---|---|---|
.. | ||
.github | há 2 anos atrás | |
src | há 2 anos atrás | |
tests | há 2 anos atrás | |
.editorconfig | há 2 anos atrás | |
.flake8 | há 2 anos atrás | |
.gitignore | há 2 anos atrás | |
CHANGELOG.md | há 2 anos atrás | |
CONTRIBUTING.md | há 2 anos atrás | |
LICENSE | há 2 anos atrás | |
README.md | há 2 anos atrás | |
requirements-dev.txt | há 2 anos atrás | |
setup.py | há 2 anos atrás | |
tox.ini | há 2 anos atrás |
A very simple text truncating function.
pip install elide-text
from elidetext import elide_text
text = elide_text("A brand new tool devoted to complex neuron models", 25)
print(text) #=> A brand new tool devoted…
text = elide_text("🍺📰📚🍮🌵📴🎯🌿👂👓👌", 6)
print(text) #=> 🍺📰📚🍮🌵…
Contributions are always welcome.
See Contributing.
The MIT License (MIT)