1
0
Fork 0
mirror of https://github.com/YunoHost/apps.git synced 2024-09-03 20:06:07 +02:00

Add script to merge official and community (to be used at the moment we decide to switch to apps.json only)

This commit is contained in:
Alexandre Aubin 2019-03-21 02:10:44 +01:00 committed by Alexandre Aubin
parent 4c96810559
commit 00caac4bf0
2 changed files with 1998 additions and 0 deletions

1989
apps.json Normal file

File diff suppressed because it is too large Load diff

View file

@ -0,0 +1,9 @@
import json
community = json.loads(open("community.json").read())
official = json.loads(open("official.json").read())
merged = community
merged.update(official)
open("apps.json", "w").write(json.dumps(merged, sort_keys=True, indent=4, separators=(',', ': ')))