VIEWVIEWVIEW commited on
Commit
f6dddf0
·
verified ·
1 Parent(s): 30280f0

Add dataset README with schema and row examples

Browse files
Files changed (1) hide show
  1. README.md +91 -0
README.md ADDED
@@ -0,0 +1,91 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ pretty_name: pr0gramm user comments (sanitized, vacuumed)
3
+ license: other
4
+ language:
5
+ - de
6
+ - en
7
+ task_categories:
8
+ - other
9
+ ---
10
+
11
+ # pr0gramm-usercomments
12
+
13
+ This dataset contains a sanitized SQLite export of pr0gramm item metadata and comments.
14
+
15
+ Main file:
16
+
17
+ - `pr0gramm-copy-vacuumed.sqlite3`
18
+
19
+ Sanitization applied:
20
+
21
+ - Removed crawler-specific timing fields (`comments.crawl_time`, `items.crawl_time`, `items.detail_crawl_time`)
22
+ - Removed crawler state/failure tables (`crawl_state`, `item_detail_failures`)
23
+
24
+ ## Tables
25
+
26
+ The database contains:
27
+
28
+ - `comments`
29
+ - `items`
30
+
31
+ ### comments schema
32
+
33
+ - `comment_id` INTEGER PRIMARY KEY
34
+ - `item_id` INTEGER NOT NULL
35
+ - `parent_comment_id` INTEGER
36
+ - `comment_time` INTEGER
37
+ - `score` INTEGER
38
+ - `upvotes` INTEGER
39
+ - `downvotes` INTEGER
40
+ - `user_name` TEXT
41
+ - `user_id` INTEGER
42
+ - `user_profile_url` TEXT
43
+ - `body` TEXT
44
+ - `raw_json` TEXT NOT NULL
45
+
46
+ ### items schema
47
+
48
+ - `item_id` INTEGER PRIMARY KEY
49
+ - `promoted` INTEGER
50
+ - `flags` INTEGER
51
+ - `created_at` INTEGER
52
+ - `user_name` TEXT
53
+ - `source_feed` TEXT NOT NULL
54
+ - `raw_json` TEXT NOT NULL
55
+
56
+ ## Example rows
57
+
58
+ Example row from `comments`:
59
+
60
+ ```sql
61
+ comment_id: 83842203
62
+ item_id: 480055
63
+ parent_comment_id: 0
64
+ comment_time: 1776609541
65
+ score: 1
66
+ upvotes: 1
67
+ downvotes: 0
68
+ user_name: "1111111101"
69
+ user_id: NULL
70
+ user_profile_url: "https://pr0gramm.com/user/1111111101"
71
+ body: "Damals war OC noch gut"
72
+ raw_json (truncated): {"id":83842203,"parent":0,"content":"Damals war OC noch gut","created":1776609541,"up":1,"down":0,"confidence":0.206543,"name":"1111111101","mark":10}
73
+ ```
74
+
75
+ Example row from `items`:
76
+
77
+ ```sql
78
+ item_id: 6986879
79
+ promoted: 0
80
+ flags: 1
81
+ created_at: 1776453456
82
+ user_name: "Ometen"
83
+ source_feed: "new"
84
+ raw_json (truncated): {"id":6986879,"promoted":0,"userId":132720,"up":1,"down":0,"created":1776453456,"image":"2026/04/17/8804ec2d7b3e5297-h264-ultra_hd.mp4","thumb":"2026/04/17/8804ec2d7b3e5297.jpg",...}
85
+ ```
86
+
87
+ ## Notes
88
+
89
+ - Timestamps are stored as Unix seconds.
90
+ - `raw_json` contains API payload snapshots and may include fields not normalized into separate columns.
91
+