mirror of
https://github.com/YunoHost-Apps/phpmyadmin_ynh.git
synced 2024-09-03 19:56:46 +02:00
3 lines
135 B
Python
3 lines
135 B
Python
import sys, json
|
|
userlist=json.loads(sys.stdin.readlines()[0])["Users"]
|
|
print "{0}".format("\n".join(i["Username"] for i in userlist))
|