summaryrefslogtreecommitdiff
path: root/hacks/metadata_from_problem
blob: a739d5fddb6030fc995ad301ffc23a1ad1be82e6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/usr/bin/python3

import sys

on = False
for line in sys.stdin:
    line = line.strip()
    if line == '<?xml version="1.0" encoding="UTF-8"?>' or on:
        print(line)
        on = True
    if line == '</Metadata>':
        on = False