pkraman06's picture
Create helpers.py
c18a5b8 verified
raw
history blame contribute delete
139 Bytes
import textwrap
class Helpers:
@staticmethod
def chunk_text(text, chunk_size=500):
return textwrap.wrap(text, chunk_size)