Convertir XML en DataFrame Python

XML_file = 'file.xml' 
df = pd.DataFrame(XMl_file)
Mr. Ghost