forked from brightdata/sdk-python
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathscrape.py
More file actions
458 lines (395 loc) · 15.6 KB
/
scrape.py
File metadata and controls
458 lines (395 loc) · 15.6 KB
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
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
"""
CLI commands for scraping operations (URL-based extraction).
"""
import click
from typing import Optional
from ..utils import create_client, output_result, handle_error
@click.group("scrape")
@click.option(
"--api-key",
envvar="BRIGHTDATA_API_TOKEN",
help="Bright Data API key (or set BRIGHTDATA_API_TOKEN env var)",
)
@click.option(
"--output-format",
type=click.Choice(["json", "pretty", "minimal"], case_sensitive=False),
default="json",
help="Output format",
)
@click.option("--output-file", type=click.Path(), help="Save output to file")
@click.pass_context
def scrape_group(
ctx: click.Context, api_key: Optional[str], output_format: str, output_file: Optional[str]
) -> None:
"""
Scrape operations - URL-based data extraction.
Extract data from specific URLs using specialized scrapers.
"""
ctx.ensure_object(dict)
ctx.obj["api_key"] = api_key
ctx.obj["output_format"] = output_format
ctx.obj["output_file"] = output_file
# ============================================================================
# Generic Scraper
# ============================================================================
@scrape_group.command("url")
@click.argument("url", required=True)
@click.option("--country", default="", help="Country code for targeting")
@click.option("--response-format", default="raw", help="Response format (raw, json)")
@click.pass_context
def scrape_url(ctx: click.Context, url: str, country: str, response_format: str) -> None:
"""Scrape any URL using Web Unlocker."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape_url(url=url, country=country, response_format=response_format)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
# ============================================================================
# Amazon Scraper
# ============================================================================
@scrape_group.group("amazon")
def amazon_group() -> None:
"""Amazon scraping operations."""
pass
@amazon_group.command("products")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def amazon_products(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Amazon product data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.amazon.products(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@amazon_group.command("reviews")
@click.argument("url", required=True)
@click.option("--past-days", type=int, help="Number of past days to consider")
@click.option("--keyword", help="Filter reviews by keyword")
@click.option("--num-reviews", type=int, help="Number of reviews to scrape")
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def amazon_reviews(
ctx: click.Context,
url: str,
past_days: Optional[int],
keyword: Optional[str],
num_reviews: Optional[int],
timeout: int,
) -> None:
"""Scrape Amazon product reviews from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.amazon.reviews(
url=url, pastDays=past_days, keyWord=keyword, numOfReviews=num_reviews, timeout=timeout
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@amazon_group.command("sellers")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def amazon_sellers(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Amazon seller data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.amazon.sellers(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
# ============================================================================
# LinkedIn Scraper
# ============================================================================
@scrape_group.group("linkedin")
def linkedin_group() -> None:
"""LinkedIn scraping operations."""
pass
@linkedin_group.command("profiles")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=180, help="Timeout in seconds")
@click.pass_context
def linkedin_profiles(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape LinkedIn profile data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.linkedin.profiles(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@linkedin_group.command("posts")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=180, help="Timeout in seconds")
@click.pass_context
def linkedin_posts(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape LinkedIn post data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.linkedin.posts(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@linkedin_group.command("jobs")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=180, help="Timeout in seconds")
@click.pass_context
def linkedin_jobs(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape LinkedIn job data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.linkedin.jobs(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@linkedin_group.command("companies")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=180, help="Timeout in seconds")
@click.pass_context
def linkedin_companies(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape LinkedIn company data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.linkedin.companies(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
# ============================================================================
# Facebook Scraper
# ============================================================================
@scrape_group.group("facebook")
def facebook_group() -> None:
"""Facebook scraping operations."""
pass
@facebook_group.command("posts-by-profile")
@click.argument("url", required=True)
@click.option("--num-posts", type=int, help="Number of posts to collect")
@click.option("--start-date", help="Start date (MM-DD-YYYY)")
@click.option("--end-date", help="End date (MM-DD-YYYY)")
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def facebook_posts_by_profile(
ctx: click.Context,
url: str,
num_posts: Optional[int],
start_date: Optional[str],
end_date: Optional[str],
timeout: int,
) -> None:
"""Scrape Facebook posts from profile URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.facebook.posts_by_profile(
url=url,
num_of_posts=num_posts,
start_date=start_date,
end_date=end_date,
timeout=timeout,
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@facebook_group.command("posts-by-group")
@click.argument("url", required=True)
@click.option("--num-posts", type=int, help="Number of posts to collect")
@click.option("--start-date", help="Start date (MM-DD-YYYY)")
@click.option("--end-date", help="End date (MM-DD-YYYY)")
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def facebook_posts_by_group(
ctx: click.Context,
url: str,
num_posts: Optional[int],
start_date: Optional[str],
end_date: Optional[str],
timeout: int,
) -> None:
"""Scrape Facebook posts from group URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.facebook.posts_by_group(
url=url,
num_of_posts=num_posts,
start_date=start_date,
end_date=end_date,
timeout=timeout,
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@facebook_group.command("posts-by-url")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def facebook_posts_by_url(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Facebook post data from post URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.facebook.posts_by_url(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@facebook_group.command("comments")
@click.argument("url", required=True)
@click.option("--num-comments", type=int, help="Number of comments to collect")
@click.option("--start-date", help="Start date (MM-DD-YYYY)")
@click.option("--end-date", help="End date (MM-DD-YYYY)")
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def facebook_comments(
ctx: click.Context,
url: str,
num_comments: Optional[int],
start_date: Optional[str],
end_date: Optional[str],
timeout: int,
) -> None:
"""Scrape Facebook comments from post URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.facebook.comments(
url=url,
num_of_comments=num_comments,
start_date=start_date,
end_date=end_date,
timeout=timeout,
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@facebook_group.command("reels")
@click.argument("url", required=True)
@click.option("--num-posts", type=int, help="Number of reels to collect")
@click.option("--start-date", help="Start date (MM-DD-YYYY)")
@click.option("--end-date", help="End date (MM-DD-YYYY)")
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def facebook_reels(
ctx: click.Context,
url: str,
num_posts: Optional[int],
start_date: Optional[str],
end_date: Optional[str],
timeout: int,
) -> None:
"""Scrape Facebook reels from profile URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.facebook.reels(
url=url,
num_of_posts=num_posts,
start_date=start_date,
end_date=end_date,
timeout=timeout,
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
# ============================================================================
# Instagram Scraper
# ============================================================================
@scrape_group.group("instagram")
def instagram_group() -> None:
"""Instagram scraping operations."""
pass
@instagram_group.command("profiles")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def instagram_profiles(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Instagram profile data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.instagram.profiles(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@instagram_group.command("posts")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def instagram_posts(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Instagram post data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.instagram.posts(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@instagram_group.command("comments")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def instagram_comments(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Instagram comments from post URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.instagram.comments(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
@instagram_group.command("reels")
@click.argument("url", required=True)
@click.option("--timeout", type=int, default=240, help="Timeout in seconds")
@click.pass_context
def instagram_reels(ctx: click.Context, url: str, timeout: int) -> None:
"""Scrape Instagram reel data from URL."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.instagram.reels(url=url, timeout=timeout)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()
# ============================================================================
# ChatGPT Scraper
# ============================================================================
@scrape_group.group("chatgpt")
def chatgpt_group() -> None:
"""ChatGPT scraping operations."""
pass
@chatgpt_group.command("prompt")
@click.argument("prompt", required=True)
@click.option("--country", default="us", help="Country code")
@click.option("--web-search", is_flag=True, help="Enable web search")
@click.option("--additional-prompt", help="Follow-up prompt")
@click.option("--timeout", type=int, default=300, help="Timeout in seconds")
@click.pass_context
def chatgpt_prompt(
ctx: click.Context,
prompt: str,
country: str,
web_search: bool,
additional_prompt: Optional[str],
timeout: int,
) -> None:
"""Send a prompt to ChatGPT."""
try:
client = create_client(ctx.obj["api_key"])
result = client.scrape.chatgpt.prompt(
prompt=prompt,
country=country,
web_search=web_search,
additional_prompt=additional_prompt,
)
output_result(result, ctx.obj["output_format"], ctx.obj["output_file"])
except Exception as e:
handle_error(e)
raise click.Abort()