获取存储在 TinyDB 数据库中的所有用户名

我是 TinyDB 的新手,也是 Python 的新手。


我在 TinyDB 数据库中存储了各种用户名,它们还存储了其他信息(年龄、电子邮件地址等),但是,我只想返回所有用户名。


{"_default": {"1": {"Username": "John", "Age": "30"}, "2": {"Username": 

"Andrew", "Age":"40", "Email": "example@example.com"}}}

我的 GUI 会有“显示所有用户名”按钮。


我可以返回有关特定用户的信息,并且可以获取存储在数据库中的所有信息 (db.all()),但是我似乎无法从整个数据库中获取所有用户名。


有没有办法做到这一点?


或者我是否以错误的方式看待这个问题。


炎炎设计
浏览 156回答 2
2回答

繁花如伊

数据库本身是可迭代的,所以也许这会更优雅,并且可以避免直接打开 JSON 文件:db = TinyDB('database_name.json')usernames = [r['Username'] for r in db]给出:['John', 'Andrew']

烙印99

我找到了一个(稍微复杂的)解决方法。它涉及将文件作为 JSON 文件读取,然后循环遍历字典 ID,在出现键错误时停止循环。with open("database_name.json", "r") as read_file:data=json.load(read_file)try:&nbsp; &nbsp; current_number = 1&nbsp; &nbsp; while current_number <=100000000000:&nbsp; &nbsp; &nbsp; &nbsp; current_number = str(current_number)&nbsp; &nbsp; &nbsp; &nbsp; print(data['_default'][current_number]['Username'])&nbsp; &nbsp; &nbsp; &nbsp; current_number = int(current_number)&nbsp; &nbsp; &nbsp; &nbsp; current_number += 1except:&nbsp; &nbsp; KeyError
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

Python