PureBilingual / dump_igbo.py
github-actions[bot]
Automated deployment to Hugging Face
83379ae
Raw
History Blame Contribute Delete
189 Bytes
import pandas as pd
import codecs
df = pd.read_csv('hf://datasets/toecm/IEDID/Asụsụ Igbo.csv')
with codecs.open('igbo_out_utf8.txt', 'w', 'utf-8') as f:
f.write(str(df.to_dict()))