ET is fine, but if docs are frying your brain, try BeautifulSoup. Yeah, it’s for HTML, but it works for XML too!
```python
from bs4 import BeautifulSoup
with open('file.xml') as f:
soup = BeautifulSoup(f, 'xml')
```
Super readable syntax. Plus, the docs are actually friendly.
```python
from bs4 import BeautifulSoup
with open('file.xml') as f:
soup = BeautifulSoup(f, 'xml')
```
Super readable syntax. Plus, the docs are actually friendly.
