Reading BOM-Included TSV Files with Python

Python
2018-07-04 06:08 (7 years ago)
Reading BOM-Included TSV Files with Python

When you download a CSV from Amazon, it might sometimes be a TSV with a BOM.

import csv
reader = csv.DictReader(
open(file_path, encoding='utf-8-sig'), delimiter='\t')
Currently unrated
The author runs the application development company Cyberneura.
We look forward to discussing your development needs.

Categories

Archive