-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy path02_crawlee_playwright.py
More file actions
68 lines (57 loc) · 2.25 KB
/
02_crawlee_playwright.py
File metadata and controls
68 lines (57 loc) · 2.25 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
from __future__ import annotations
from crawlee.crawlers import PlaywrightCrawler, PlaywrightCrawlingContext
from apify import Actor
async def main() -> None:
# Enter the context of the Actor.
async with Actor:
# Retrieve the Actor input, and use default values if not provided.
actor_input = await Actor.get_input() or {}
start_urls = [
url.get('url')
for url in actor_input.get(
'start_urls',
[{'url': 'https://apify.com'}],
)
]
# Exit if no start URLs are provided.
if not start_urls:
Actor.log.info('No start URLs specified in Actor input, exiting...')
await Actor.exit()
# Create a crawler.
crawler = PlaywrightCrawler(
# Limit the crawl to max requests.
# Remove or increase it for crawling all links.
max_requests_per_crawl=50,
headless=True,
browser_launch_options={
'args': ['--disable-gpu'],
},
)
# Define a request handler, which will be called for every request.
@crawler.router.default_handler
async def request_handler(context: PlaywrightCrawlingContext) -> None:
url = context.request.url
Actor.log.info(f'Scraping {url}...')
# Extract the desired data.
data = {
'url': context.request.url,
'title': await context.page.title(),
'h1s': [
await h1.text_content()
for h1 in await context.page.locator('h1').all()
],
'h2s': [
await h2.text_content()
for h2 in await context.page.locator('h2').all()
],
'h3s': [
await h3.text_content()
for h3 in await context.page.locator('h3').all()
],
}
# Store the extracted data to the default dataset.
await context.push_data(data)
# Enqueue additional links found on the current page.
await context.enqueue_links()
# Run the crawler with the starting requests.
await crawler.run(start_urls)