dashboard
repositories
filestore
activity
search
login
main
/
trisurf-ng
Trisurf Monte Carlo simulator
summary
reflog
commits
tree
docs
forks
compare
blame
|
history
|
raw
Added base64 encoding to zipped data
Samo Penic
2016-02-16
f0bcead40eea062fb556e142f6f1f7a7240bc144
[trisurf-ng.git]
/
python
/
parse_vtu.py
1
2
3
4
5
6
7
8
#!/usr/bin/python3
import xml.etree.ElementTree as ET
tree = ET.parse('../src/timestep_000000.vtu')
root = tree.getroot()
trisurf=root.find('trisurf')
print(trisurf.items())