logiover commited on
Commit
2fc03f6
·
verified ·
1 Parent(s): bc8c7f8

Publish sample dataset for stack-exchange-questions-scraper

Browse files
Files changed (3) hide show
  1. README.md +100 -0
  2. sample.json +1018 -0
  3. sample.parquet +3 -0
README.md ADDED
@@ -0,0 +1,100 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: cc-by-4.0
3
+ pretty_name: "Stack Exchange Questions Scraper"
4
+ tags: [other, web-scraping, apify, developer-tools, automation, scraper]
5
+ size_categories:
6
+ - n<1K
7
+ ---
8
+
9
+ # Stack Exchange Questions Scraper
10
+
11
+ Scrape questions from Stack Overflow and any Stack Exchange site by tag: title, tags, score, views, answers, author and dates. Monitor questions about your product, tech or competitors on a schedule.
12
+
13
+ ## What the actor scrapes
14
+
15
+ # ❓ Stack Exchange Questions Scraper — Stack Overflow Q&A Data by Tag to JSON & CSV Scrape **questions from Stack Overflow and any [Stack Exchange](https://stackexchange.com) site** using the official Stack Exchange API. This Stack Overflow scraper pulls questions by tag — with title, score, view count, answer count, author, reputation and dates — fully paginated, with **no login, no API key and no blocking**. Export Stack Exchange Q&A data to JSON, CSV or Excel. Built for **scheduled, recurring
16
+
17
+ ## Who this is for
18
+
19
+ This sample is useful for anyone working in **other, developer tools, automation** who wants a quick look at the shape of the data before running the live actor at scale. Treat it as a static snapshot — counts, prices and timestamps reflect the moment the sample was captured and will drift over time.
20
+
21
+ ## Source
22
+
23
+ **Live source:** This dataset is a static sample. For fresh, customizable extractions, run the live Apify actor: [logiover/stack-exchange-questions-scraper](https://apify.com/logiover/stack-exchange-questions-scraper)
24
+
25
+ ## Fields
26
+
27
+ - **`questionId`** — identifier
28
+ - **`title`** — item or page title
29
+ - **`link`** — field captured by the actor
30
+ - **`tags`** — associated tags
31
+ - **`author`** — author or creator handle
32
+ - **`authorReputation`** — field captured by the actor
33
+ - **`score`** — engagement / popularity score
34
+ - **`viewCount`** — numeric count
35
+ - **`answerCount`** — numeric count
36
+ - **`isAnswered`** — boolean flag
37
+ - **`hasAcceptedAnswer`** — boolean flag
38
+ - **`createdAt`** — creation timestamp
39
+ - **`lastActivityAt`** — timestamp
40
+ - **`scrapedAt`** — timestamp the row was scraped
41
+
42
+ ## Sample preview
43
+
44
+ ```json
45
+ [
46
+ {
47
+ "questionId": 79941418,
48
+ "title": "FFmpeg/React video editor renders successfully but ignores object recolor and color grading",
49
+ "link": "https://stackoverflow.com/questions/79941418/ffmpeg-react-video-editor-renders-successfully-but-ignores-object-recolor-and-co",
50
+ "tags": [
51
+ "javascript",
52
+ "python",
53
+ "node.js",
54
+ "artificial-intelligence"
55
+ ],
56
+ "author": "Dwayne Wayne",
57
+ "authorReputation": 1,
58
+ "score": 0,
59
+ "viewCount": 9,
60
+ "answerCount": 0,
61
+ "isAnswered": false,
62
+ "hasAcceptedAnswer": false,
63
+ "createdAt": "2026-05-14T20:22:19.000Z",
64
+ "lastActivityAt": "2026-05-14T20:22:19.000Z",
65
+ "scrapedAt": "2026-05-14T20:35:50.973Z"
66
+ },
67
+ {
68
+ "questionId": 77667175,
69
+ "title": "How to add features from earlier stages of Neural Network to latter stages of Neural Network?",
70
+ "link": "https://stackoverflow.com/questions/77667175/how-to-add-features-from-earlier-stages-of-neural-network-to-latter-stages-of-ne",
71
+ "tags": [
72
+ "python",
73
+ "machine-learning",
74
+ "neural-network",
75
+ "tf.keras"
76
+ ],
77
+ "author": "Jovan Krunic",
78
+ "authorReputation": 9,
79
+ "score": 0,
80
+ "viewCount": 21,
81
+ "answerCount": 0,
82
+ "isAnswered": false,
83
+ "hasAcceptedAnswer": false,
84
+ "createdAt": "2023-12-15T15:10:29.000Z",
85
+ "lastActivityAt": "2026-05-14T20:13:25.000Z",
86
+ "scrapedAt": "2026-05-14T20:35:51.058Z"
87
+ }
88
+ ]
89
+ ```
90
+
91
+ ## Snapshot stats
92
+
93
+ - Row count in this sample: **50**
94
+ - Data quality flag at capture time: `EXISTING_USED`
95
+
96
+ ## License & Attribution
97
+
98
+ Released under **Creative Commons Attribution 4.0 (CC BY 4.0)**. If you use this data, please credit the source actor and link back to its Apify Store page: [logiover/stack-exchange-questions-scraper](https://apify.com/logiover/stack-exchange-questions-scraper).
99
+
100
+ The sample is provided as-is for evaluation and research. Source websites retain their own terms of service — downstream users are responsible for complying with them when running the live actor or redistributing scraped content.
sample.json ADDED
@@ -0,0 +1,1018 @@
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ [
2
+ {
3
+ "questionId": 79941418,
4
+ "title": "FFmpeg/React video editor renders successfully but ignores object recolor and color grading",
5
+ "link": "https://stackoverflow.com/questions/79941418/ffmpeg-react-video-editor-renders-successfully-but-ignores-object-recolor-and-co",
6
+ "tags": [
7
+ "javascript",
8
+ "python",
9
+ "node.js",
10
+ "artificial-intelligence"
11
+ ],
12
+ "author": "Dwayne Wayne",
13
+ "authorReputation": 1,
14
+ "score": 0,
15
+ "viewCount": 9,
16
+ "answerCount": 0,
17
+ "isAnswered": false,
18
+ "hasAcceptedAnswer": false,
19
+ "createdAt": "2026-05-14T20:22:19.000Z",
20
+ "lastActivityAt": "2026-05-14T20:22:19.000Z",
21
+ "scrapedAt": "2026-05-14T20:35:50.973Z"
22
+ },
23
+ {
24
+ "questionId": 77667175,
25
+ "title": "How to add features from earlier stages of Neural Network to latter stages of Neural Network?",
26
+ "link": "https://stackoverflow.com/questions/77667175/how-to-add-features-from-earlier-stages-of-neural-network-to-latter-stages-of-ne",
27
+ "tags": [
28
+ "python",
29
+ "machine-learning",
30
+ "neural-network",
31
+ "tf.keras"
32
+ ],
33
+ "author": "Jovan Krunic",
34
+ "authorReputation": 9,
35
+ "score": 0,
36
+ "viewCount": 21,
37
+ "answerCount": 0,
38
+ "isAnswered": false,
39
+ "hasAcceptedAnswer": false,
40
+ "createdAt": "2023-12-15T15:10:29.000Z",
41
+ "lastActivityAt": "2026-05-14T20:13:25.000Z",
42
+ "scrapedAt": "2026-05-14T20:35:51.058Z"
43
+ },
44
+ {
45
+ "questionId": 57235659,
46
+ "title": "MoviePY lum_contrast",
47
+ "link": "https://stackoverflow.com/questions/57235659/moviepy-lum-contrast",
48
+ "tags": [
49
+ "python",
50
+ "moviepy"
51
+ ],
52
+ "author": "Adam",
53
+ "authorReputation": 3,
54
+ "score": 0,
55
+ "viewCount": 1123,
56
+ "answerCount": 2,
57
+ "isAnswered": true,
58
+ "hasAcceptedAnswer": true,
59
+ "createdAt": "2019-07-27T20:05:03.000Z",
60
+ "lastActivityAt": "2026-05-14T19:47:51.000Z",
61
+ "scrapedAt": "2026-05-14T20:35:51.084Z"
62
+ },
63
+ {
64
+ "questionId": 79941388,
65
+ "title": "Why does importing package module #2 from package module #1 import all attributes of module #2 in the namespace?",
66
+ "link": "https://stackoverflow.com/questions/79941388/why-does-importing-package-module-2-from-package-module-1-import-all-attribute",
67
+ "tags": [
68
+ "python",
69
+ "module",
70
+ "package"
71
+ ],
72
+ "author": "Ben",
73
+ "authorReputation": 669,
74
+ "score": 0,
75
+ "viewCount": 22,
76
+ "answerCount": 0,
77
+ "isAnswered": false,
78
+ "hasAcceptedAnswer": false,
79
+ "createdAt": "2026-05-14T19:34:27.000Z",
80
+ "lastActivityAt": "2026-05-14T19:34:27.000Z",
81
+ "scrapedAt": "2026-05-14T20:35:51.119Z"
82
+ },
83
+ {
84
+ "questionId": 79941314,
85
+ "title": "Generating Sphinx documentation for dataclasses with Annotated[] fields",
86
+ "link": "https://stackoverflow.com/questions/79941314/generating-sphinx-documentation-for-dataclasses-with-annotated-fields",
87
+ "tags": [
88
+ "python",
89
+ "python-sphinx",
90
+ "python-dataclasses",
91
+ "autodoc"
92
+ ],
93
+ "author": "mostsquares",
94
+ "authorReputation": 938,
95
+ "score": 0,
96
+ "viewCount": 28,
97
+ "answerCount": 0,
98
+ "isAnswered": false,
99
+ "hasAcceptedAnswer": false,
100
+ "createdAt": "2026-05-14T17:38:29.000Z",
101
+ "lastActivityAt": "2026-05-14T19:28:49.000Z",
102
+ "scrapedAt": "2026-05-14T20:35:51.168Z"
103
+ },
104
+ {
105
+ "questionId": 71033972,
106
+ "title": "Running Python file on Windows CMD vs VS Code",
107
+ "link": "https://stackoverflow.com/questions/71033972/running-python-file-on-windows-cmd-vs-vs-code",
108
+ "tags": [
109
+ "python",
110
+ "visual-studio",
111
+ "windows-10"
112
+ ],
113
+ "author": "Geonho Han",
114
+ "authorReputation": 67,
115
+ "score": 1,
116
+ "viewCount": 92,
117
+ "answerCount": 1,
118
+ "isAnswered": true,
119
+ "hasAcceptedAnswer": true,
120
+ "createdAt": "2022-02-08T12:32:34.000Z",
121
+ "lastActivityAt": "2026-05-14T19:06:55.000Z",
122
+ "scrapedAt": "2026-05-14T20:35:51.205Z"
123
+ },
124
+ {
125
+ "questionId": 79940950,
126
+ "title": "I want to sell/forward unused inventory/request from the publisher for a admanager",
127
+ "link": "https://stackoverflow.com/questions/79940950/i-want-to-sell-forward-unused-inventory-request-from-the-publisher-for-a-admanag",
128
+ "tags": [
129
+ "python",
130
+ "go",
131
+ "architecture",
132
+ "system",
133
+ "ads"
134
+ ],
135
+ "author": "Mehraz Hossain Rumman",
136
+ "authorReputation": 25,
137
+ "score": 0,
138
+ "viewCount": 46,
139
+ "answerCount": 0,
140
+ "isAnswered": false,
141
+ "hasAcceptedAnswer": false,
142
+ "createdAt": "2026-05-14T08:10:07.000Z",
143
+ "lastActivityAt": "2026-05-14T19:05:12.000Z",
144
+ "scrapedAt": "2026-05-14T20:35:51.250Z"
145
+ },
146
+ {
147
+ "questionId": 8148608,
148
+ "title": "Network traffic monitor with pcapy in python",
149
+ "link": "https://stackoverflow.com/questions/8148608/network-traffic-monitor-with-pcapy-in-python",
150
+ "tags": [
151
+ "python",
152
+ "network-programming",
153
+ "pcap"
154
+ ],
155
+ "author": "Jan Kowalik",
156
+ "authorReputation": 89,
157
+ "score": 3,
158
+ "viewCount": 9181,
159
+ "answerCount": 1,
160
+ "isAnswered": false,
161
+ "hasAcceptedAnswer": false,
162
+ "createdAt": "2011-11-16T08:21:46.000Z",
163
+ "lastActivityAt": "2026-05-14T19:03:45.000Z",
164
+ "scrapedAt": "2026-05-14T20:35:51.283Z"
165
+ },
166
+ {
167
+ "questionId": 78969286,
168
+ "title": "How can I improve this approach for natural background extension in an image using OpenCV?",
169
+ "link": "https://stackoverflow.com/questions/78969286/how-can-i-improve-this-approach-for-natural-background-extension-in-an-image-usi",
170
+ "tags": [
171
+ "python",
172
+ "opencv",
173
+ "machine-learning",
174
+ "image-processing",
175
+ "stable-diffusion"
176
+ ],
177
+ "author": "Ammar Ahmed",
178
+ "authorReputation": 69,
179
+ "score": 1,
180
+ "viewCount": 117,
181
+ "answerCount": 2,
182
+ "isAnswered": false,
183
+ "hasAcceptedAnswer": false,
184
+ "createdAt": "2024-09-10T11:32:09.000Z",
185
+ "lastActivityAt": "2026-05-14T18:30:05.000Z",
186
+ "scrapedAt": "2026-05-14T20:35:51.311Z"
187
+ },
188
+ {
189
+ "questionId": 79899547,
190
+ "title": "Flatten multindex column in a pipe in pandas",
191
+ "link": "https://stackoverflow.com/questions/79899547/flatten-multindex-column-in-a-pipe-in-pandas",
192
+ "tags": [
193
+ "python",
194
+ "pandas",
195
+ "dataframe"
196
+ ],
197
+ "author": "robertspierre",
198
+ "authorReputation": 6199,
199
+ "score": 5,
200
+ "viewCount": 247,
201
+ "answerCount": 5,
202
+ "isAnswered": true,
203
+ "hasAcceptedAnswer": false,
204
+ "createdAt": "2026-03-02T16:16:44.000Z",
205
+ "lastActivityAt": "2026-05-14T18:19:49.000Z",
206
+ "scrapedAt": "2026-05-14T20:35:51.344Z"
207
+ },
208
+ {
209
+ "questionId": 79940746,
210
+ "title": "How can we make a request in python to do a google search?",
211
+ "link": "https://stackoverflow.com/questions/79940746/how-can-we-make-a-request-in-python-to-do-a-google-search",
212
+ "tags": [
213
+ "python",
214
+ "selenium-webdriver"
215
+ ],
216
+ "author": "Vedika Gupta",
217
+ "authorReputation": 1,
218
+ "score": 0,
219
+ "viewCount": 121,
220
+ "answerCount": 8,
221
+ "isAnswered": true,
222
+ "hasAcceptedAnswer": false,
223
+ "createdAt": "2026-05-13T19:02:11.000Z",
224
+ "lastActivityAt": "2026-05-14T18:13:51.000Z",
225
+ "scrapedAt": "2026-05-14T20:35:51.398Z"
226
+ },
227
+ {
228
+ "questionId": 79941323,
229
+ "title": "AI/ML student with projects but weak fundamentals because of heavy LLM usage — how should I realistically improve for internships?",
230
+ "link": "https://stackoverflow.com/questions/79941323/ai-ml-student-with-projects-but-weak-fundamentals-because-of-heavy-llm-usage-h",
231
+ "tags": [
232
+ "python",
233
+ "machine-learning",
234
+ "architecture",
235
+ "artificial-intelligence"
236
+ ],
237
+ "author": "Alok Singh",
238
+ "authorReputation": 1,
239
+ "score": 1,
240
+ "viewCount": 62,
241
+ "answerCount": 2,
242
+ "isAnswered": true,
243
+ "hasAcceptedAnswer": false,
244
+ "createdAt": "2026-05-14T17:45:30.000Z",
245
+ "lastActivityAt": "2026-05-14T17:55:16.000Z",
246
+ "scrapedAt": "2026-05-14T20:35:51.429Z"
247
+ },
248
+ {
249
+ "questionId": 45965084,
250
+ "title": "Python MatplotLib not working",
251
+ "link": "https://stackoverflow.com/questions/45965084/python-matplotlib-not-working",
252
+ "tags": [
253
+ "python",
254
+ "python-3.x",
255
+ "matplotlib",
256
+ "data-science"
257
+ ],
258
+ "author": "bbartling",
259
+ "authorReputation": 3562,
260
+ "score": 1,
261
+ "viewCount": 208,
262
+ "answerCount": 1,
263
+ "isAnswered": false,
264
+ "hasAcceptedAnswer": false,
265
+ "createdAt": "2017-08-30T16:04:47.000Z",
266
+ "lastActivityAt": "2026-05-14T16:45:52.000Z",
267
+ "scrapedAt": "2026-05-14T20:35:51.461Z"
268
+ },
269
+ {
270
+ "questionId": 79941278,
271
+ "title": "How do I get away with &quot;the kernel is dead&quot;?",
272
+ "link": "https://stackoverflow.com/questions/79941278/how-do-i-get-away-with-the-kernel-is-dead",
273
+ "tags": [
274
+ "python",
275
+ "kernel",
276
+ "spyder"
277
+ ],
278
+ "author": "黃威齊",
279
+ "authorReputation": 11,
280
+ "score": 1,
281
+ "viewCount": 47,
282
+ "answerCount": 0,
283
+ "isAnswered": false,
284
+ "hasAcceptedAnswer": false,
285
+ "createdAt": "2026-05-14T16:35:04.000Z",
286
+ "lastActivityAt": "2026-05-14T16:45:19.000Z",
287
+ "scrapedAt": "2026-05-14T20:35:51.491Z"
288
+ },
289
+ {
290
+ "questionId": 79941055,
291
+ "title": "How to know if a variable is either a class or a type in Python 3",
292
+ "link": "https://stackoverflow.com/questions/79941055/how-to-know-if-a-variable-is-either-a-class-or-a-type-in-python-3",
293
+ "tags": [
294
+ "python"
295
+ ],
296
+ "author": "Francisco Javier Rojas",
297
+ "authorReputation": 410,
298
+ "score": 0,
299
+ "viewCount": 100,
300
+ "answerCount": 6,
301
+ "isAnswered": true,
302
+ "hasAcceptedAnswer": false,
303
+ "createdAt": "2026-05-14T11:40:38.000Z",
304
+ "lastActivityAt": "2026-05-14T16:27:54.000Z",
305
+ "scrapedAt": "2026-05-14T20:35:51.532Z"
306
+ },
307
+ {
308
+ "questionId": 79941257,
309
+ "title": "Unexpected Python logging behavior",
310
+ "link": "https://stackoverflow.com/questions/79941257/unexpected-python-logging-behavior",
311
+ "tags": [
312
+ "python",
313
+ "python-logging"
314
+ ],
315
+ "author": "John Nickell",
316
+ "authorReputation": 1,
317
+ "score": -2,
318
+ "viewCount": 53,
319
+ "answerCount": 0,
320
+ "isAnswered": false,
321
+ "hasAcceptedAnswer": false,
322
+ "createdAt": "2026-05-14T16:04:24.000Z",
323
+ "lastActivityAt": "2026-05-14T16:26:09.000Z",
324
+ "scrapedAt": "2026-05-14T20:35:51.566Z"
325
+ },
326
+ {
327
+ "questionId": 50527685,
328
+ "title": "Python print first row of list",
329
+ "link": "https://stackoverflow.com/questions/50527685/python-print-first-row-of-list",
330
+ "tags": [
331
+ "python",
332
+ "list",
333
+ "row"
334
+ ],
335
+ "author": "user2262031",
336
+ "authorReputation": 55,
337
+ "score": 1,
338
+ "viewCount": 13282,
339
+ "answerCount": 2,
340
+ "isAnswered": false,
341
+ "hasAcceptedAnswer": false,
342
+ "createdAt": "2018-05-25T11:00:48.000Z",
343
+ "lastActivityAt": "2026-05-14T16:04:00.000Z",
344
+ "scrapedAt": "2026-05-14T20:35:51.616Z"
345
+ },
346
+ {
347
+ "questionId": 51925384,
348
+ "title": "Unable to get local issuer certificate when using &#39;Requests&#39;",
349
+ "link": "https://stackoverflow.com/questions/51925384/unable-to-get-local-issuer-certificate-when-using-requests",
350
+ "tags": [
351
+ "python",
352
+ "python-requests"
353
+ ],
354
+ "author": "yuan",
355
+ "authorReputation": 2230,
356
+ "score": 142,
357
+ "viewCount": 485724,
358
+ "answerCount": 17,
359
+ "isAnswered": true,
360
+ "hasAcceptedAnswer": true,
361
+ "createdAt": "2018-08-20T06:49:28.000Z",
362
+ "lastActivityAt": "2026-05-14T15:54:49.000Z",
363
+ "scrapedAt": "2026-05-14T20:35:51.686Z"
364
+ },
365
+ {
366
+ "questionId": 52805115,
367
+ "title": "Error &quot;certificate verify failed: unable to get local issuer certificate&quot;",
368
+ "link": "https://stackoverflow.com/questions/52805115/error-certificate-verify-failed-unable-to-get-local-issuer-certificate",
369
+ "tags": [
370
+ "python",
371
+ "python-3.x",
372
+ "macos",
373
+ "ssl",
374
+ "openssl"
375
+ ],
376
+ "author": "biswajit",
377
+ "authorReputation": 3515,
378
+ "score": 322,
379
+ "viewCount": 787062,
380
+ "answerCount": 30,
381
+ "isAnswered": true,
382
+ "hasAcceptedAnswer": false,
383
+ "createdAt": "2018-10-14T17:12:19.000Z",
384
+ "lastActivityAt": "2026-05-14T15:53:42.000Z",
385
+ "scrapedAt": "2026-05-14T20:35:51.791Z"
386
+ },
387
+ {
388
+ "questionId": 34503206,
389
+ "title": "&quot;SSL: certificate_verify_failed&quot; error when scraping https://www.thenewboston.com/",
390
+ "link": "https://stackoverflow.com/questions/34503206/ssl-certificate-verify-failed-error-when-scraping-https-www-thenewboston-co",
391
+ "tags": [
392
+ "python",
393
+ "ssl",
394
+ "web-scraping",
395
+ "ssl-certificate"
396
+ ],
397
+ "author": "Bill Jenkins",
398
+ "authorReputation": 475,
399
+ "score": 29,
400
+ "viewCount": 99222,
401
+ "answerCount": 7,
402
+ "isAnswered": true,
403
+ "hasAcceptedAnswer": true,
404
+ "createdAt": "2015-12-29T01:31:15.000Z",
405
+ "lastActivityAt": "2026-05-14T15:45:46.000Z",
406
+ "scrapedAt": "2026-05-14T20:35:51.820Z"
407
+ },
408
+ {
409
+ "questionId": 16511337,
410
+ "title": "Correct way to try/except using Python requests module?",
411
+ "link": "https://stackoverflow.com/questions/16511337/correct-way-to-try-except-using-python-requests-module",
412
+ "tags": [
413
+ "python",
414
+ "exception",
415
+ "python-requests",
416
+ "request"
417
+ ],
418
+ "author": "John Smith",
419
+ "authorReputation": 12358,
420
+ "score": 771,
421
+ "viewCount": 1096802,
422
+ "answerCount": 5,
423
+ "isAnswered": true,
424
+ "hasAcceptedAnswer": true,
425
+ "createdAt": "2013-05-12T19:44:44.000Z",
426
+ "lastActivityAt": "2026-05-14T15:39:58.000Z",
427
+ "scrapedAt": "2026-05-14T20:35:51.851Z"
428
+ },
429
+ {
430
+ "questionId": 79940985,
431
+ "title": "Ollama model returning empty string ollama.generate()",
432
+ "link": "https://stackoverflow.com/questions/79940985/ollama-model-returning-empty-string-ollama-generate",
433
+ "tags": [
434
+ "python",
435
+ "machine-learning",
436
+ "large-language-model",
437
+ "ollama"
438
+ ],
439
+ "author": "Bakr MARHFOUL",
440
+ "authorReputation": 31,
441
+ "score": 0,
442
+ "viewCount": 51,
443
+ "answerCount": 1,
444
+ "isAnswered": true,
445
+ "hasAcceptedAnswer": false,
446
+ "createdAt": "2026-05-14T09:44:46.000Z",
447
+ "lastActivityAt": "2026-05-14T15:38:13.000Z",
448
+ "scrapedAt": "2026-05-14T20:35:51.886Z"
449
+ },
450
+ {
451
+ "questionId": 79939152,
452
+ "title": "What cybersecurity skills should beginners focus on first?",
453
+ "link": "https://stackoverflow.com/questions/79939152/what-cybersecurity-skills-should-beginners-focus-on-first",
454
+ "tags": [
455
+ "python",
456
+ "security",
457
+ "network-programming",
458
+ "computer-science"
459
+ ],
460
+ "author": "Beau Cline",
461
+ "authorReputation": 1,
462
+ "score": 1,
463
+ "viewCount": 102,
464
+ "answerCount": 2,
465
+ "isAnswered": true,
466
+ "hasAcceptedAnswer": false,
467
+ "createdAt": "2026-05-11T04:49:28.000Z",
468
+ "lastActivityAt": "2026-05-14T15:36:53.000Z",
469
+ "scrapedAt": "2026-05-14T20:35:51.916Z"
470
+ },
471
+ {
472
+ "questionId": 79940923,
473
+ "title": "How do I stop transform.rotate() from tanking my FPS?",
474
+ "link": "https://stackoverflow.com/questions/79940923/how-do-i-stop-transform-rotate-from-tanking-my-fps",
475
+ "tags": [
476
+ "python",
477
+ "optimization",
478
+ "pygame",
479
+ "bitmap",
480
+ "image-rotation"
481
+ ],
482
+ "author": "Vincent Holbrow",
483
+ "authorReputation": 17,
484
+ "score": -1,
485
+ "viewCount": 75,
486
+ "answerCount": 1,
487
+ "isAnswered": false,
488
+ "hasAcceptedAnswer": false,
489
+ "createdAt": "2026-05-14T06:57:08.000Z",
490
+ "lastActivityAt": "2026-05-14T15:32:00.000Z",
491
+ "scrapedAt": "2026-05-14T20:35:51.927Z"
492
+ },
493
+ {
494
+ "questionId": 19142536,
495
+ "title": "Non-affine transformation with PIL",
496
+ "link": "https://stackoverflow.com/questions/19142536/non-affine-transformation-with-pil",
497
+ "tags": [
498
+ "python",
499
+ "python-imaging-library",
500
+ "transformation"
501
+ ],
502
+ "author": "Hyperboreus",
503
+ "authorReputation": 32619,
504
+ "score": 1,
505
+ "viewCount": 644,
506
+ "answerCount": 2,
507
+ "isAnswered": true,
508
+ "hasAcceptedAnswer": false,
509
+ "createdAt": "2013-10-02T16:58:31.000Z",
510
+ "lastActivityAt": "2026-05-14T15:15:04.000Z",
511
+ "scrapedAt": "2026-05-14T20:35:51.954Z"
512
+ },
513
+ {
514
+ "questionId": 6413831,
515
+ "title": "Exit code standards in Python",
516
+ "link": "https://stackoverflow.com/questions/6413831/exit-code-standards-in-python",
517
+ "tags": [
518
+ "python"
519
+ ],
520
+ "author": "Ruslan Nabioullin",
521
+ "authorReputation": 147,
522
+ "score": 11,
523
+ "viewCount": 6326,
524
+ "answerCount": 3,
525
+ "isAnswered": true,
526
+ "hasAcceptedAnswer": true,
527
+ "createdAt": "2011-06-20T15:40:25.000Z",
528
+ "lastActivityAt": "2026-05-14T15:11:07.000Z",
529
+ "scrapedAt": "2026-05-14T20:35:51.992Z"
530
+ },
531
+ {
532
+ "questionId": 79927488,
533
+ "title": "How to preserve grouping cols in Pandas without brittle workarounds",
534
+ "link": "https://stackoverflow.com/questions/79927488/how-to-preserve-grouping-cols-in-pandas-without-brittle-workarounds",
535
+ "tags": [
536
+ "python",
537
+ "pandas",
538
+ "dataframe",
539
+ "group-by"
540
+ ],
541
+ "author": "Aegis",
542
+ "authorReputation": 190,
543
+ "score": 3,
544
+ "viewCount": 221,
545
+ "answerCount": 2,
546
+ "isAnswered": true,
547
+ "hasAcceptedAnswer": false,
548
+ "createdAt": "2026-04-17T15:25:54.000Z",
549
+ "lastActivityAt": "2026-05-14T15:11:00.000Z",
550
+ "scrapedAt": "2026-05-14T20:35:52.036Z"
551
+ },
552
+ {
553
+ "questionId": 49333582,
554
+ "title": "PortAudio library not found by sounddevice",
555
+ "link": "https://stackoverflow.com/questions/49333582/portaudio-library-not-found-by-sounddevice",
556
+ "tags": [
557
+ "python",
558
+ "python-sounddevice"
559
+ ],
560
+ "author": "Arif Ahmad",
561
+ "authorReputation": 473,
562
+ "score": 37,
563
+ "viewCount": 80475,
564
+ "answerCount": 3,
565
+ "isAnswered": true,
566
+ "hasAcceptedAnswer": false,
567
+ "createdAt": "2018-03-17T07:26:33.000Z",
568
+ "lastActivityAt": "2026-05-14T14:45:54.000Z",
569
+ "scrapedAt": "2026-05-14T20:35:52.069Z"
570
+ },
571
+ {
572
+ "questionId": 73414031,
573
+ "title": "code completion support with gi.repository in VS Code",
574
+ "link": "https://stackoverflow.com/questions/73414031/code-completion-support-with-gi-repository-in-vs-code",
575
+ "tags": [
576
+ "python",
577
+ "gtk",
578
+ "pygobject"
579
+ ],
580
+ "author": "Quik2007",
581
+ "authorReputation": 13,
582
+ "score": 1,
583
+ "viewCount": 1461,
584
+ "answerCount": 1,
585
+ "isAnswered": true,
586
+ "hasAcceptedAnswer": true,
587
+ "createdAt": "2022-08-19T08:40:02.000Z",
588
+ "lastActivityAt": "2026-05-14T14:37:40.000Z",
589
+ "scrapedAt": "2026-05-14T20:35:52.106Z"
590
+ },
591
+ {
592
+ "questionId": 79940704,
593
+ "title": "Plotly scatter map live updating - symbols don&#39;t change",
594
+ "link": "https://stackoverflow.com/questions/79940704/plotly-scatter-map-live-updating-symbols-dont-change",
595
+ "tags": [
596
+ "python",
597
+ "plotly",
598
+ "plotly-dash"
599
+ ],
600
+ "author": "Eternal Ambiguity",
601
+ "authorReputation": 135,
602
+ "score": 0,
603
+ "viewCount": 70,
604
+ "answerCount": 2,
605
+ "isAnswered": false,
606
+ "hasAcceptedAnswer": false,
607
+ "createdAt": "2026-05-13T17:54:34.000Z",
608
+ "lastActivityAt": "2026-05-14T14:32:02.000Z",
609
+ "scrapedAt": "2026-05-14T20:35:52.133Z"
610
+ },
611
+ {
612
+ "questionId": 10667960,
613
+ "title": "Python Requests throwing &quot;SSLError&quot;",
614
+ "link": "https://stackoverflow.com/questions/10667960/python-requests-throwing-sslerror",
615
+ "tags": [
616
+ "python",
617
+ "ssl",
618
+ "python-requests",
619
+ "urllib3"
620
+ ],
621
+ "author": "TedBurrows",
622
+ "authorReputation": 5801,
623
+ "score": 553,
624
+ "viewCount": 1336631,
625
+ "answerCount": 29,
626
+ "isAnswered": true,
627
+ "hasAcceptedAnswer": false,
628
+ "createdAt": "2012-05-19T18:45:20.000Z",
629
+ "lastActivityAt": "2026-05-14T13:55:37.000Z",
630
+ "scrapedAt": "2026-05-14T20:35:52.162Z"
631
+ },
632
+ {
633
+ "questionId": 25229592,
634
+ "title": "Python, how to implement something like .gitignore behavior",
635
+ "link": "https://stackoverflow.com/questions/25229592/python-how-to-implement-something-like-gitignore-behavior",
636
+ "tags": [
637
+ "python",
638
+ "pattern-matching",
639
+ "gitignore",
640
+ "glob",
641
+ "fnmatch"
642
+ ],
643
+ "author": "fj123x",
644
+ "authorReputation": 7650,
645
+ "score": 20,
646
+ "viewCount": 7309,
647
+ "answerCount": 4,
648
+ "isAnswered": true,
649
+ "hasAcceptedAnswer": true,
650
+ "createdAt": "2014-08-10T14:31:53.000Z",
651
+ "lastActivityAt": "2026-05-14T13:10:58.000Z",
652
+ "scrapedAt": "2026-05-14T20:35:52.188Z"
653
+ },
654
+ {
655
+ "questionId": 55584934,
656
+ "title": "cv2.error:(-215:Assertion failed) !_src.empty() in function &#39;cv::cvtColor&#39;",
657
+ "link": "https://stackoverflow.com/questions/55584934/cv2-error-215assertion-failed-src-empty-in-function-cvcvtcolor",
658
+ "tags": [
659
+ "python",
660
+ "python-3.x"
661
+ ],
662
+ "author": "Preetha",
663
+ "authorReputation": 11,
664
+ "score": 0,
665
+ "viewCount": 12413,
666
+ "answerCount": 2,
667
+ "isAnswered": false,
668
+ "hasAcceptedAnswer": false,
669
+ "createdAt": "2019-04-09T04:00:07.000Z",
670
+ "lastActivityAt": "2026-05-14T13:04:25.000Z",
671
+ "scrapedAt": "2026-05-14T20:35:52.225Z"
672
+ },
673
+ {
674
+ "questionId": 79941092,
675
+ "title": "What are the most effective ways to learn Data Science from scratch, especially within a limited time frame?",
676
+ "link": "https://stackoverflow.com/questions/79941092/what-are-the-most-effective-ways-to-learn-data-science-from-scratch-especially",
677
+ "tags": [
678
+ "python",
679
+ "pandas"
680
+ ],
681
+ "author": "Lakshay Khandelwal",
682
+ "authorReputation": 1,
683
+ "score": 0,
684
+ "viewCount": 62,
685
+ "answerCount": 0,
686
+ "isAnswered": false,
687
+ "hasAcceptedAnswer": false,
688
+ "createdAt": "2026-05-14T12:52:35.000Z",
689
+ "lastActivityAt": "2026-05-14T12:52:35.000Z",
690
+ "scrapedAt": "2026-05-14T20:35:52.254Z"
691
+ },
692
+ {
693
+ "questionId": 79903575,
694
+ "title": "Resolving Concurrency Bottlenecks in LangChain&#39;s RunnableParallel with ChromaDB PersistentClient",
695
+ "link": "https://stackoverflow.com/questions/79903575/resolving-concurrency-bottlenecks-in-langchains-runnableparallel-with-chromadb",
696
+ "tags": [
697
+ "python",
698
+ "artificial-intelligence",
699
+ "langchain",
700
+ "large-language-model",
701
+ "chromadb"
702
+ ],
703
+ "author": "grace h",
704
+ "authorReputation": 1,
705
+ "score": 8,
706
+ "viewCount": 418,
707
+ "answerCount": 2,
708
+ "isAnswered": true,
709
+ "hasAcceptedAnswer": false,
710
+ "createdAt": "2026-03-09T03:01:17.000Z",
711
+ "lastActivityAt": "2026-05-14T12:51:10.000Z",
712
+ "scrapedAt": "2026-05-14T20:35:52.287Z"
713
+ },
714
+ {
715
+ "questionId": 77224505,
716
+ "title": "Python3: c-type segfault from multithreaded C shared library",
717
+ "link": "https://stackoverflow.com/questions/77224505/python3-c-type-segfault-from-multithreaded-c-shared-library",
718
+ "tags": [
719
+ "python",
720
+ "c",
721
+ "multithreading",
722
+ "segmentation-fault",
723
+ "shared-libraries"
724
+ ],
725
+ "author": "user2205930",
726
+ "authorReputation": 1086,
727
+ "score": 0,
728
+ "viewCount": 136,
729
+ "answerCount": 1,
730
+ "isAnswered": false,
731
+ "hasAcceptedAnswer": false,
732
+ "createdAt": "2023-10-03T17:51:49.000Z",
733
+ "lastActivityAt": "2026-05-14T12:07:33.000Z",
734
+ "scrapedAt": "2026-05-14T20:35:52.301Z"
735
+ },
736
+ {
737
+ "questionId": 79936102,
738
+ "title": "Inconsistent result with tokenization",
739
+ "link": "https://stackoverflow.com/questions/79936102/inconsistent-result-with-tokenization",
740
+ "tags": [
741
+ "python",
742
+ "nlp"
743
+ ],
744
+ "author": "Irfan Zainudin",
745
+ "authorReputation": 65,
746
+ "score": -1,
747
+ "viewCount": 107,
748
+ "answerCount": 1,
749
+ "isAnswered": false,
750
+ "hasAcceptedAnswer": false,
751
+ "createdAt": "2026-05-04T23:19:49.000Z",
752
+ "lastActivityAt": "2026-05-14T11:32:18.000Z",
753
+ "scrapedAt": "2026-05-14T20:35:52.348Z"
754
+ },
755
+ {
756
+ "questionId": 7861775,
757
+ "title": "Python Selenium accessing HTML source",
758
+ "link": "https://stackoverflow.com/questions/7861775/python-selenium-accessing-html-source",
759
+ "tags": [
760
+ "python",
761
+ "selenium",
762
+ "selenium-webdriver"
763
+ ],
764
+ "author": "user1008791",
765
+ "authorReputation": 1439,
766
+ "score": 141,
767
+ "viewCount": 248681,
768
+ "answerCount": 9,
769
+ "isAnswered": true,
770
+ "hasAcceptedAnswer": false,
771
+ "createdAt": "2011-10-22T18:38:26.000Z",
772
+ "lastActivityAt": "2026-05-14T11:27:05.000Z",
773
+ "scrapedAt": "2026-05-14T20:35:52.397Z"
774
+ },
775
+ {
776
+ "questionId": 74552512,
777
+ "title": "Extract information about education institute, grades, year and degree from text using NLP in Python",
778
+ "link": "https://stackoverflow.com/questions/74552512/extract-information-about-education-institute-grades-year-and-degree-from-text",
779
+ "tags": [
780
+ "python",
781
+ "nlp",
782
+ "nltk",
783
+ "spacy"
784
+ ],
785
+ "author": "Aditya Bhattacharya",
786
+ "authorReputation": 1014,
787
+ "score": 0,
788
+ "viewCount": 693,
789
+ "answerCount": 1,
790
+ "isAnswered": true,
791
+ "hasAcceptedAnswer": false,
792
+ "createdAt": "2022-11-23T20:14:50.000Z",
793
+ "lastActivityAt": "2026-05-14T10:59:15.000Z",
794
+ "scrapedAt": "2026-05-14T20:35:52.428Z"
795
+ },
796
+ {
797
+ "questionId": 39679421,
798
+ "title": "Python scan for WiFi",
799
+ "link": "https://stackoverflow.com/questions/39679421/python-scan-for-wifi",
800
+ "tags": [
801
+ "python",
802
+ "wifi",
803
+ "python-3.5",
804
+ "scapy",
805
+ "sniffer"
806
+ ],
807
+ "author": "Luca dall&#39;aglio",
808
+ "authorReputation": 81,
809
+ "score": 7,
810
+ "viewCount": 37132,
811
+ "answerCount": 2,
812
+ "isAnswered": true,
813
+ "hasAcceptedAnswer": false,
814
+ "createdAt": "2016-09-24T18:03:53.000Z",
815
+ "lastActivityAt": "2026-05-14T10:55:33.000Z",
816
+ "scrapedAt": "2026-05-14T20:35:52.452Z"
817
+ },
818
+ {
819
+ "questionId": 24338958,
820
+ "title": "Is there any analogue of EXIT_SUCCESS and EXIT_FAILURE macros in Python 2.7.6",
821
+ "link": "https://stackoverflow.com/questions/24338958/is-there-any-analogue-of-exit-success-and-exit-failure-macros-in-python-2-7-6",
822
+ "tags": [
823
+ "python",
824
+ "python-2.7"
825
+ ],
826
+ "author": "FrozenHeart",
827
+ "authorReputation": 20936,
828
+ "score": 15,
829
+ "viewCount": 5951,
830
+ "answerCount": 2,
831
+ "isAnswered": true,
832
+ "hasAcceptedAnswer": true,
833
+ "createdAt": "2014-06-21T06:26:01.000Z",
834
+ "lastActivityAt": "2026-05-14T10:55:31.000Z",
835
+ "scrapedAt": "2026-05-14T20:35:52.491Z"
836
+ },
837
+ {
838
+ "questionId": 79939849,
839
+ "title": "Why does my pandas groupby() result not show total sales by product correctly?",
840
+ "link": "https://stackoverflow.com/questions/79939849/why-does-my-pandas-groupby-result-not-show-total-sales-by-product-correctly",
841
+ "tags": [
842
+ "python",
843
+ "pandas",
844
+ "group-by"
845
+ ],
846
+ "author": "Kevin Jame",
847
+ "authorReputation": 11,
848
+ "score": 0,
849
+ "viewCount": 142,
850
+ "answerCount": 3,
851
+ "isAnswered": true,
852
+ "hasAcceptedAnswer": false,
853
+ "createdAt": "2026-05-12T09:31:05.000Z",
854
+ "lastActivityAt": "2026-05-14T10:52:24.000Z",
855
+ "scrapedAt": "2026-05-14T20:35:52.516Z"
856
+ },
857
+ {
858
+ "questionId": 59122425,
859
+ "title": "Permission Error: [Errno 1] Operation Not permitted",
860
+ "link": "https://stackoverflow.com/questions/59122425/permission-error-errno-1-operation-not-permitted",
861
+ "tags": [
862
+ "python",
863
+ "pyinstaller"
864
+ ],
865
+ "author": "Josee",
866
+ "authorReputation": 330,
867
+ "score": 5,
868
+ "viewCount": 19071,
869
+ "answerCount": 2,
870
+ "isAnswered": false,
871
+ "hasAcceptedAnswer": false,
872
+ "createdAt": "2019-12-01T04:05:54.000Z",
873
+ "lastActivityAt": "2026-05-14T10:05:10.000Z",
874
+ "scrapedAt": "2026-05-14T20:35:52.563Z"
875
+ },
876
+ {
877
+ "questionId": 77377189,
878
+ "title": "pyodbc.OperationalError: (&#39;08001&#39;, &#39;[08001] [Microsoft][ODBC Driver 18 for SQL Server]SSL Provider: [SSL routines::certificate verify failed&#39;)",
879
+ "link": "https://stackoverflow.com/questions/77377189/pyodbc-operationalerror-08001-08001-microsoftodbc-driver-18-for-sql-s",
880
+ "tags": [
881
+ "python",
882
+ "sql-server",
883
+ "ssl",
884
+ "pyodbc"
885
+ ],
886
+ "author": "user51",
887
+ "authorReputation": 10635,
888
+ "score": 1,
889
+ "viewCount": 1134,
890
+ "answerCount": 1,
891
+ "isAnswered": false,
892
+ "hasAcceptedAnswer": false,
893
+ "createdAt": "2023-10-27T21:45:35.000Z",
894
+ "lastActivityAt": "2026-05-14T07:58:22.000Z",
895
+ "scrapedAt": "2026-05-14T20:35:52.593Z"
896
+ },
897
+ {
898
+ "questionId": 73297180,
899
+ "title": "Why is Visual Studio Code Running Old Code?",
900
+ "link": "https://stackoverflow.com/questions/73297180/why-is-visual-studio-code-running-old-code",
901
+ "tags": [
902
+ "python",
903
+ "visual-studio-code",
904
+ "terminal"
905
+ ],
906
+ "author": "Augustus",
907
+ "authorReputation": 43,
908
+ "score": 2,
909
+ "viewCount": 8848,
910
+ "answerCount": 2,
911
+ "isAnswered": false,
912
+ "hasAcceptedAnswer": false,
913
+ "createdAt": "2022-08-09T19:33:01.000Z",
914
+ "lastActivityAt": "2026-05-14T07:03:00.000Z",
915
+ "scrapedAt": "2026-05-14T20:35:52.622Z"
916
+ },
917
+ {
918
+ "questionId": 16854413,
919
+ "title": "Python logging level",
920
+ "link": "https://stackoverflow.com/questions/16854413/python-logging-level",
921
+ "tags": [
922
+ "python",
923
+ "logging",
924
+ "error-logging"
925
+ ],
926
+ "author": "surfi",
927
+ "authorReputation": 1631,
928
+ "score": 0,
929
+ "viewCount": 1679,
930
+ "answerCount": 2,
931
+ "isAnswered": false,
932
+ "hasAcceptedAnswer": false,
933
+ "createdAt": "2013-05-31T09:45:32.000Z",
934
+ "lastActivityAt": "2026-05-14T06:48:48.000Z",
935
+ "scrapedAt": "2026-05-14T20:35:52.648Z"
936
+ },
937
+ {
938
+ "questionId": 70655940,
939
+ "title": "Error while using click module in python - Error: No such option: --addtask",
940
+ "link": "https://stackoverflow.com/questions/70655940/error-while-using-click-module-in-python-error-no-such-option-addtask",
941
+ "tags": [
942
+ "python",
943
+ "command-line-interface",
944
+ "python-click"
945
+ ],
946
+ "author": "Flash TV",
947
+ "authorReputation": 21,
948
+ "score": 0,
949
+ "viewCount": 599,
950
+ "answerCount": 1,
951
+ "isAnswered": false,
952
+ "hasAcceptedAnswer": false,
953
+ "createdAt": "2022-01-10T16:43:41.000Z",
954
+ "lastActivityAt": "2026-05-14T06:48:08.000Z",
955
+ "scrapedAt": "2026-05-14T20:35:52.665Z"
956
+ },
957
+ {
958
+ "questionId": 72505286,
959
+ "title": "Create a font (.ttf) from a serie of vectorial images (.eps)",
960
+ "link": "https://stackoverflow.com/questions/72505286/create-a-font-ttf-from-a-serie-of-vectorial-images-eps",
961
+ "tags": [
962
+ "python",
963
+ "fonts",
964
+ "truetype",
965
+ "fontforge"
966
+ ],
967
+ "author": "Micha&#235;l Cretignier",
968
+ "authorReputation": 71,
969
+ "score": 0,
970
+ "viewCount": 598,
971
+ "answerCount": 1,
972
+ "isAnswered": false,
973
+ "hasAcceptedAnswer": false,
974
+ "createdAt": "2022-06-05T06:37:46.000Z",
975
+ "lastActivityAt": "2026-05-14T05:59:53.000Z",
976
+ "scrapedAt": "2026-05-14T20:35:52.698Z"
977
+ },
978
+ {
979
+ "questionId": 64482921,
980
+ "title": "Python Selenium &quot;driver.page_source&quot; call from a website server or local content",
981
+ "link": "https://stackoverflow.com/questions/64482921/python-selenium-driver-page-source-call-from-a-website-server-or-local-content",
982
+ "tags": [
983
+ "python",
984
+ "selenium-webdriver",
985
+ "web-scraping",
986
+ "webdriver"
987
+ ],
988
+ "author": "Alexpy",
989
+ "authorReputation": 1,
990
+ "score": 0,
991
+ "viewCount": 4644,
992
+ "answerCount": 1,
993
+ "isAnswered": false,
994
+ "hasAcceptedAnswer": false,
995
+ "createdAt": "2020-10-22T13:06:01.000Z",
996
+ "lastActivityAt": "2026-05-14T04:25:57.000Z",
997
+ "scrapedAt": "2026-05-14T20:35:52.729Z"
998
+ },
999
+ {
1000
+ "questionId": 79940563,
1001
+ "title": "Unique sort on an element of a list of lists",
1002
+ "link": "https://stackoverflow.com/questions/79940563/unique-sort-on-an-element-of-a-list-of-lists",
1003
+ "tags": [
1004
+ "python",
1005
+ "sorting"
1006
+ ],
1007
+ "author": "tsoj",
1008
+ "authorReputation": 19,
1009
+ "score": -2,
1010
+ "viewCount": 99,
1011
+ "answerCount": 1,
1012
+ "isAnswered": true,
1013
+ "hasAcceptedAnswer": false,
1014
+ "createdAt": "2026-05-13T13:55:21.000Z",
1015
+ "lastActivityAt": "2026-05-14T03:12:43.000Z",
1016
+ "scrapedAt": "2026-05-14T20:35:52.769Z"
1017
+ }
1018
+ ]
sample.parquet ADDED
@@ -0,0 +1,3 @@
 
 
 
 
1
+ version https://git-lfs.github.com/spec/v1
2
+ oid sha256:76b9b1485a1bf05e781d7a22f5668600bf8afc949f5a963d7346bd0e625d9502
3
+ size 19484