Convertir le fichier DTA dans CSV

import pandas as pd
data = pd.io.stata.read_stata('my_stata_file.dta')
data.to_csv('my_stata_file.csv')
D Goglia