-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathaws_parser.py
68 lines (65 loc) · 3.27 KB
/
aws_parser.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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
def spot_jsonptojson(jsonstr):
jsonstr = jsonstr[ jsonstr.index("(") + 1 : jsonstr.rindex(")") ]
jsonstr = jsonstr.replace('\\n', '').replace('\\r', '')
jsonstr = jsonstr.replace('vers:','"vers":')
jsonstr = jsonstr.replace('0.01,','"0.01",')
jsonstr = jsonstr.replace('name:"db.','size:"db.')
jsonstr = jsonstr.replace('"USD"','USD')
jsonstr = jsonstr.replace('USD','"USD"')
jsonstr = jsonstr.replace('tiers','"tiers"')
jsonstr = jsonstr.replace('types:','"types":')
jsonstr = jsonstr.replace('type:','"type":')
jsonstr = jsonstr.replace('ECU:','"ECU":')
jsonstr = jsonstr.replace('vCPU:','"vCPU":')
jsonstr = jsonstr.replace('memoryGiB:','"memoryGiB":')
jsonstr = jsonstr.replace('storageGB:','"storageGB":')
jsonstr = jsonstr.replace('tiers:','"tiers":')
jsonstr = jsonstr.replace('generation:','"generation":')
jsonstr = jsonstr.replace('yearTerm','yrTerm')
jsonstr = jsonstr.replace('multiAZ','Multi-AZ')
jsonstr = jsonstr.replace('us-west-2','us-wes2t')
jsonstr = jsonstr.replace('us-west-1','us-wes1t')
jsonstr = jsonstr.replace('us-west','us-west-1')
jsonstr = jsonstr.replace('us-wes1t','us-west-1')
jsonstr = jsonstr.replace('us-wes2t','us-west-2')
jsonstr = jsonstr.replace('us-east-1','us-east')
jsonstr = jsonstr.replace('us-east','us-east-1')
return(jsonstr)
def demand_jsonptojson(jsonstr):
jsonstr = jsonstr[ jsonstr.index("(") + 1 : jsonstr.rindex(")") ]
jsonstr = jsonstr.replace('\\n', '').replace('\\r', '')
jsonstr = jsonstr.replace('vers:','"vers":')
jsonstr = jsonstr.replace('0.01,','"0.01",')
jsonstr = jsonstr.replace('config','"config"')
jsonstr = jsonstr.replace('regions:','"regions":')
jsonstr = jsonstr.replace('region:','"region":')
jsonstr = jsonstr.replace('instanceTypes','"instanceTypes"')
jsonstr = jsonstr.replace('prices','"prices"')
jsonstr = jsonstr.replace('name:"db.','size:"db.')
jsonstr = jsonstr.replace('name','"name"')
jsonstr = jsonstr.replace('"USD"','USD')
jsonstr = jsonstr.replace('USD','"USD"')
jsonstr = jsonstr.replace('rate','"rate"')
jsonstr = jsonstr.replace('valueColumns','"valueColumns"')
jsonstr = jsonstr.replace('sizes:','"sizes":')
jsonstr = jsonstr.replace('size:','"size":')
jsonstr = jsonstr.replace('tiers','"tiers"')
jsonstr = jsonstr.replace('currencies','"currencies"')
jsonstr = jsonstr.replace('types:','"types":')
jsonstr = jsonstr.replace('type:','"type":')
jsonstr = jsonstr.replace('ECU:','"ECU":')
jsonstr = jsonstr.replace('vCPU:','"vCPU":')
jsonstr = jsonstr.replace('memoryGiB:','"memoryGiB":')
jsonstr = jsonstr.replace('storageGB:','"storageGB":')
jsonstr = jsonstr.replace('tiers:','"tiers":')
jsonstr = jsonstr.replace('generation:','"generation":')
jsonstr = jsonstr.replace('yearTerm','yrTerm')
jsonstr = jsonstr.replace('multiAZ','Multi-AZ')
jsonstr = jsonstr.replace('us-west-2','us-wes2t')
jsonstr = jsonstr.replace('us-west-1','us-wes1t')
jsonstr = jsonstr.replace('us-west','us-west-1')
jsonstr = jsonstr.replace('us-wes1t','us-west-1')
jsonstr = jsonstr.replace('us-wes2t','us-west-2')
jsonstr = jsonstr.replace('us-east-1','us-east')
jsonstr = jsonstr.replace('us-east','us-east-1')
return(jsonstr)