Knowledge-graphs / utils.py
khaerens's picture
limit
6b2498f
raw
history blame
No virus
79 Bytes
def clip_text(t, lenght = 5):
return ".".join(t.split(".")[:lenght]) + "."