mirror of
https://github.com/YunoHost/apps.git
synced 2024-09-03 20:06:07 +02:00
9 lines
263 B
Python
9 lines
263 B
Python
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=(',', ': ')))
|