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

Merge pull request #122 from YunoHost/level_script

[enh] add a script to change the level of an app
This commit is contained in:
Maniack Crudelis 2017-01-20 21:30:26 +01:00 committed by GitHub
commit 920193c33d

27
change_level.py Executable file
View file

@ -0,0 +1,27 @@
#!/usr/bin/env python
import os
import sys
import json
if __name__ == '__main__':
if len(sys.argv[1:]) < 3:
print "Usage: ./change_level.py <official.json|community.json> <app_id> <level>"
sys.exit(1)
app_list_name, app_id, level = sys.argv[1:4]
if not os.path.exists(app_list_name):
print "Error: the file '%s' doesn't exist" % app_list_name
sys.exit(1)
app_list = json.load(open(app_list_name))
if app_id not in app_list:
print "Error: app '%s' is not present in %s" % (app_id, app_list_name)
sys.exit(1)
app_list[app_id]["level"] = level
open(app_list_name, "w").write("\n".join(json.dumps(app_list, indent=4, sort_keys=True).split(" \n")) + "\n")