-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathdup.py
executable file
·42 lines (31 loc) · 958 Bytes
/
dup.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
#!/usr/bin/env python3
import glob
import json
from dedup import apply_delta
def get_version(path: str) -> str:
return path.split('go')[1][:-5].removesuffix('_delta')
def main() -> None:
filenames = sorted(
glob.glob('deduped/*.json'),
key=lambda s: [
int(num)
for num in get_version(s).split('.')
],
)
base, rest = filenames[0], filenames[1:]
print(base, rest)
with open(base) as fd:
definitions = json.load(fd)
version = get_version(base)
with open(f'results/go{version}.json', 'w') as fd:
json.dump(definitions, fd)
for path in rest:
with open(path) as fd:
delta = json.load(fd)
apply_delta(definitions, delta)
version = get_version(path)
with open(f'results/go{version}.json', 'w') as fd:
json.dump(definitions, fd)
print(f'{version} done')
if __name__ == '__main__':
main()