blob: 078a7807d9dd47126ba301322aa2b347acb6b552 (
plain)
1
2
3
4
5
6
7
8
|
import json
with open("/home/lxf/.config/vivaldi-snapshot/Default/Notes", 'r') as data_file:
data = json.load(data_file)
for d in data['children']:
if d['subject'] == 'lbh notes':
print(d['subject'])
|