-
Notifications
You must be signed in to change notification settings - Fork 0
/
data.py
79 lines (74 loc) · 2.53 KB
/
data.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
#!/usr/bin/env python
readwise = {
'num_highlights': 2
}
book = {
'author': 'Jane Doe',
'category': 'books',
'date': '01-01-2021',
'full_title': 'Sed sit. Donec lacus. Morbi quis.',
'highlight_location_url': 'https://example.com/highlight_location_url',
'highlight_location': 'example.com',
'highlight_note': 'Nunc in ligula feugiat, ornare ligula nec, elementum dui.',
'highlight_tags': ['tag1', 'tag2'],
'highlight_text': 'Vivamus in.',
'image_url': 'https://example.com/image_url.png',
'source': 'kindle',
'title': 'Sed sit.',
'url': 'https://example.com/url',
'highlight_id': 75317236,
'highlight_location': 'Loc 1831',
'highlight_location_url': 'https://readwise.io/open/75317236'
}
article = {
'author': 'Jane Doe',
'category': 'articles',
'date': '01-01-2021',
'full_title': 'Sed sit. Donec lacus. Morbi quis.',
'highlight_location_url': 'https://example.com/highlight_location_url',
'highlight_location': 'example.com',
'highlight_note': 'Nunc in ligula feugiat, ornare ligula nec, elementum dui.',
'highlight_tags': ['tag1', 'tag2'],
'highlight_text': 'Vivamus in.',
'image_url': 'https://example.com/image_url.png',
'source': 'kindle',
'title': 'Sed sit.',
'url': 'https://example.com/url',
'highlight_id': 75317236,
'highlight_location': 'Loc 1831',
'highlight_location_url': 'https://readwise.io/open/75317236'
}
podcast = {
'author': 'Jane Doe',
'category': 'podcasts',
'date': '01-01-2021',
'full_title': 'Sed sit. Donec lacus. Morbi quis.',
'highlight_location_url': 'https://example.com/highlight_location_url',
'highlight_location': 'example.com',
'highlight_note': 'Nunc in ligula feugiat, ornare ligula nec, elementum dui.',
'highlight_tags': ['tag1', 'tag2'],
'highlight_text': 'Vivamus in.',
'image_url': 'https://example.com/image_url.png',
'source': 'kindle',
'title': 'Sed sit.',
'url': 'https://example.com/url',
'highlight_id': 75317236,
'highlight_location': 'Loc 1831',
'highlight_location_url': 'https://readwise.io/open/75317236'
}
tweet = {
'author': 'Jane Doe',
'category': 'tweets',
'date': '01-01-2021',
'full_title': 'Sed sit. Donec lacus. Morbi quis.',
'highlight_location_url': 'https://example.com/highlight_location_url',
'highlight_location': 'example.com',
'highlight_note': 'save thread',
'highlight_text': 'Vivamus in.',
'source': 'twitter',
'title': 'Sed sit.',
'url': 'https://example.com/url',
'highlight_id': 75317236,
'highlight_location': 'Loc 1831',
'highlight_location_url': 'https://readwise.io/open/75317236'
}