1
0
mirror of https://github.com/muety/wakapi.git synced 2023-08-10 21:12:56 +03:00
wakapi/scripts/convert_colors.py
2023-02-19 20:14:22 +01:00

14 lines
327 B
Python

# convert colors from the format provided by https://raw.githubusercontent.com/ozh/github-colors/master/colors.json to what wakapi wants
import sys
import json
with open(sys.argv[1], 'r') as f:
colors = json.load(f)
result = {}
for k, v in colors.items():
result[k] = v['color']
print(json.dumps(result, indent=4))