Pyscii-BBS/test.py
2025-07-19 17:33:10 -06:00

11 lines
286 B
Python

import json
jstring = '{"users":[{"name": "J4YC33","description": "J4YC33\'s Just this person..."}]}'
with open('users.json') as userdb:
users = json.loads(userdb.read())
for user in users['users']:
if user['name'] == "J4YC33":
print(user['description'])