def fetch_all_table():
tables = db.tables.find()
table_str_list = list()
for table in tables:
table_str_list.append(json.dumps(table, default=json_util.default))
save("all_tables.txt", table_str_list)
评论列表
文章目录