For *read xml python*, I’d say avoid reinventing the wheel. ET is solid, but if you’re lazy (like me), `pandas.read_xml()` is a thing now.
```python
import pandas as pd
df = pd.read_xml('file.xml')
```
Bam. XML to DataFrame. Magic.
```python
import pandas as pd
df = pd.read_xml('file.xml')
```
Bam. XML to DataFrame. Magic.
