1
0
Fork 0
mirror of https://github.com/YunoHost-Apps/ghost_ynh.git synced 2024-09-03 19:16:02 +02:00
ghost_ynh/conf/user_getname.py
2014-03-24 17:22:26 +01:00

4 lines
No EOL
131 B
Python

import sys, json
for i in json.loads(sys.stdin.readlines()[0])["Users"]:
if i["Username"] == sys.argv[1]:
print i["Fullname"]