Mysql
 sql >> Base de données >  >> RDS >> Mysql

Comment puis-je construire une table sqlite à partir de ce fichier xml/txt en utilisant python ?

Redirigé à partir d'ici :

Comment créer des sous-listes à partir d'une liste basée sur des chaînes en python ?

import xml.etree.ElementTree as ET
import pandas as pd

strings = ['<text id="32a45" language="ENG" date="2017-01-01" time="11:00" timezone="Eastern">',
'<text id="32a47" language="ENG" date="2017-01-05" time="1:00" timezone="Central">',
'<text id="32a48" language="ENG" date="2017-01-07" time="3:00" timezone="Pacific">']

cols = ["id","language","date","time","timezone"]
data = [[ET.fromstring(string+"</text>").get(col) for col in cols] for string in strings]    
df = pd.DataFrame(data,columns=cols)