summaryrefslogtreecommitdiff
path: root/data/xml/process-xml.py
diff options
context:
space:
mode:
Diffstat (limited to 'data/xml/process-xml.py')
-rwxr-xr-xdata/xml/process-xml.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/data/xml/process-xml.py b/data/xml/process-xml.py
new file mode 100755
index 00000000..8d53e048
--- /dev/null
+++ b/data/xml/process-xml.py
@@ -0,0 +1,8 @@
+#!/usr/bin/env python3
+
+import sys
+import re
+
+with open(sys.argv[1], 'r') as f:
+ for data in f:
+ print(data.strip(), end='')