style: docstrings corrections for accuracy
This commit is contained in:
@@ -213,7 +213,7 @@ class ScraplingMCPServer:
|
|||||||
extraction_type: extraction_types = "markdown",
|
extraction_type: extraction_types = "markdown",
|
||||||
css_selector: Optional[str] = None,
|
css_selector: Optional[str] = None,
|
||||||
main_content_only: bool = True,
|
main_content_only: bool = True,
|
||||||
headless: bool = False,
|
headless: bool = True, # noqa: F821
|
||||||
google_search: bool = True,
|
google_search: bool = True,
|
||||||
real_chrome: bool = False,
|
real_chrome: bool = False,
|
||||||
wait: int | float = 0,
|
wait: int | float = 0,
|
||||||
@@ -295,7 +295,7 @@ class ScraplingMCPServer:
|
|||||||
extraction_type: extraction_types = "markdown",
|
extraction_type: extraction_types = "markdown",
|
||||||
css_selector: Optional[str] = None,
|
css_selector: Optional[str] = None,
|
||||||
main_content_only: bool = True,
|
main_content_only: bool = True,
|
||||||
headless: bool = False,
|
headless: bool = True, # noqa: F821
|
||||||
google_search: bool = True,
|
google_search: bool = True,
|
||||||
real_chrome: bool = False,
|
real_chrome: bool = False,
|
||||||
wait: int | float = 0,
|
wait: int | float = 0,
|
||||||
|
|||||||
@@ -24,12 +24,9 @@ class DynamicFetcher(BaseFetcher):
|
|||||||
:param page_action: Added for automation. A function that takes the `page` object and does the automation you need.
|
:param page_action: Added for automation. A function that takes the `page` object and does the automation you need.
|
||||||
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
|
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
|
||||||
:param init_script: An absolute path to a JavaScript file to be executed on page creation with this request.
|
:param init_script: An absolute path to a JavaScript file to be executed on page creation with this request.
|
||||||
:param locale: Set the locale for the browser if wanted. The default value is `en-US`.
|
:param locale: Set the locale for the browser if wanted. Defaults to the system default locale.
|
||||||
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
|
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
|
||||||
:param stealth: Enables stealth mode, check the documentation to see what stealth mode does currently.
|
|
||||||
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
|
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
|
||||||
:param hide_canvas: Add random noise to canvas operations to prevent fingerprinting.
|
|
||||||
:param disable_webgl: Disables WebGL and WebGL 2.0 support entirely.
|
|
||||||
:param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP.
|
:param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP.
|
||||||
:param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search of this website's domain name.
|
:param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search of this website's domain name.
|
||||||
:param extra_headers: A dictionary of extra headers to add to the request.
|
:param extra_headers: A dictionary of extra headers to add to the request.
|
||||||
@@ -67,12 +64,9 @@ class DynamicFetcher(BaseFetcher):
|
|||||||
:param page_action: Added for automation. A function that takes the `page` object and does the automation you need.
|
:param page_action: Added for automation. A function that takes the `page` object and does the automation you need.
|
||||||
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
|
:param wait_selector: Wait for a specific CSS selector to be in a specific state.
|
||||||
:param init_script: An absolute path to a JavaScript file to be executed on page creation with this request.
|
:param init_script: An absolute path to a JavaScript file to be executed on page creation with this request.
|
||||||
:param locale: Set the locale for the browser if wanted. The default value is `en-US`.
|
:param locale: Set the locale for the browser if wanted. Defaults to the system default locale.
|
||||||
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
|
:param wait_selector_state: The state to wait for the selector given with `wait_selector`. The default state is `attached`.
|
||||||
:param stealth: Enables stealth mode, check the documentation to see what stealth mode does currently.
|
|
||||||
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
|
:param real_chrome: If you have a Chrome browser installed on your device, enable this, and the Fetcher will launch an instance of your browser and use it.
|
||||||
:param hide_canvas: Add random noise to canvas operations to prevent fingerprinting.
|
|
||||||
:param disable_webgl: Disables WebGL and WebGL 2.0 support entirely.
|
|
||||||
:param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP.
|
:param cdp_url: Instead of launching a new browser instance, connect to this CDP URL to control real browsers through CDP.
|
||||||
:param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search of this website's domain name.
|
:param google_search: Enabled by default, Scrapling will set the referer header to be as if this request came from a Google search of this website's domain name.
|
||||||
:param extra_headers: A dictionary of extra headers to add to the request.
|
:param extra_headers: A dictionary of extra headers to add to the request.
|
||||||
|
|||||||
Reference in New Issue
Block a user