This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| """ | |
| Convert CSV string to fixed width text table. Supports multi-line rows, column width limits, and creates a header row automatically | |
| @author Tony Landis | |
| @link http://www.tonylandis.com | |
| @license GPL | |
| """ | |
| from math import ceil | |
| class CsvToTxt(): |