File size: 139 Bytes
c18a5b8
 
 
 
 
 
 
1
2
3
4
5
6
7
import textwrap


class Helpers:
    @staticmethod
    def chunk_text(text, chunk_size=500):
        return textwrap.wrap(text, chunk_size)