-
Notifications
You must be signed in to change notification settings - Fork 128
/
Copy pathheaders.py
42 lines (35 loc) · 1.44 KB
/
headers.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
import json
from pathlib import Path
from scrapy import Spider, Request
from scrapy_playwright.page import PageMethod
class HeadersSpider(Spider):
"""Control how requests headers are handled via the PLAYWRIGHT_PROCESS_REQUEST_HEADERS setting.
If PLAYWRIGHT_PROCESS_REQUEST_HEADERS=None, neither USER_AGENT nor cookies will be sent to the
website, comment out PLAYWRIGHT_PROCESS_REQUEST_HEADERS to sent them.
"""
name = "headers"
custom_settings = {
"TWISTED_REACTOR": "twisted.internet.asyncioreactor.AsyncioSelectorReactor",
"DOWNLOAD_HANDLERS": {
"https": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler",
# "http": "scrapy_playwright.handler.ScrapyPlaywrightDownloadHandler",
},
"PLAYWRIGHT_PROCESS_REQUEST_HEADERS": None,
"USER_AGENT": "Overridden user agent",
}
def start_requests(self):
yield Request(
url="https://httpbin.org/headers",
meta={
"playwright": True,
"playwright_page_methods": [
PageMethod(
"screenshot", path=Path(__file__).parent / "headers.png", full_page=True
),
],
},
cookies={"foo": "bar"},
)
def parse(self, response, **kwargs):
headers = json.loads(response.css("pre::text").get())["headers"]
yield {"url": response.url, "headers": headers}