mirror of
https://github.com/YunoHost-Apps/agendav_ynh.git
synced 2024-09-03 20:36:12 +02:00
3 lines
No EOL
124 B
Python
3 lines
No EOL
124 B
Python
import sys, json
|
|
apps=json.loads(sys.stdin.readlines()[0])["Apps"]
|
|
print("\n".join(i["ID"] for i in apps if i["Installed"])) |