forked from fossasia/badgeyay
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy patheventyay_export_anonymizer.py
49 lines (41 loc) · 1.23 KB
/
eventyay_export_anonymizer.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
43
44
45
46
47
48
49
#!/usr/bin/python3
import sys
import json
import random
if len(sys.argv) <= 1:
print("Please pass the name of the file with th exported json as "
"the first argument. A file with \"anonymous\" will be created"
"next to it.")
exit(1)
file = sys.argv[1]
anonymous_file = file + "-anonymous.json"
with open(file, encoding="UTF-8") as f:
export = json.load(f)
def walk(e):
if isinstance(e, list):
for i, v in enumerate(e):
_walk(e, i, v)
elif isinstance(e, dict):
for k, v in e.items():
_walk(e, k, v)
def _walk(element, key, value):
if isinstance(value, str):
element[key] = scramble(value)
elif isinstance(value, int):
element[key] = random.randint(0, value * 2)
else:
walk(value)
def scramble(string):
result = []
for c in string:
if "A" <= c <= "Z":
c = chr(random.randint(ord("A"), ord("Z")))
if "a" <= c <= "z":
c = chr(random.randint(ord("a"), ord("z")))
if "0" <= c <= "9":
c = chr(random.randint(ord("0"), ord("9")))
result.append(c)
return "".join(result)
walk(export)
with open(anonymous_file, 'w', encoding="UTF-8") as f:
json.dump(export, f)