json_database icon indicating copy to clipboard operation
json_database copied to clipboard

persistent and searchable python dicts

Results 2 json_database issues
Sort by recently updated
recently updated
newest added

``` db_path = "data/aww_reddit.db" print('add image process task',f) filename = os.path.basename(f).split('.')[0] videoid = b64e(filename) nowtime = time.time() update_time = int(nowtime) data = {"videoid": videoid, "status": 0, "update_time": update_time} # data...

improve support to load databases from file comments already supported, but it would be nice to also support the full Hjson spec, probably as a separate method https://github.com/hjson/hjson ```python db.load_from_json("some.json")...

enhancement
help wanted