cloudflare-python/src/cloudflare/resources/browser_rendering/content.py
2025-05-14 16:30:11 +00:00

451 lines
18 KiB
Python

# File generated from our OpenAPI spec by Stainless. See CONTRIBUTING.md for details.
from __future__ import annotations
from typing import Dict, List, Type, Iterable, Optional, cast
from typing_extensions import Literal
import httpx
from ..._types import NOT_GIVEN, Body, Query, Headers, NotGiven
from ..._utils import maybe_transform, async_maybe_transform
from ..._compat import cached_property
from ..._resource import SyncAPIResource, AsyncAPIResource
from ..._response import (
to_raw_response_wrapper,
to_streamed_response_wrapper,
async_to_raw_response_wrapper,
async_to_streamed_response_wrapper,
)
from ..._wrappers import ResultWrapper
from ..._base_client import make_request_options
from ...types.browser_rendering import content_create_params
from ...types.browser_rendering.content_create_response import ContentCreateResponse
__all__ = ["ContentResource", "AsyncContentResource"]
class ContentResource(SyncAPIResource):
@cached_property
def with_raw_response(self) -> ContentResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/cloudflare/cloudflare-python#accessing-raw-response-data-eg-headers
"""
return ContentResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> ContentResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/cloudflare/cloudflare-python#with_streaming_response
"""
return ContentResourceWithStreamingResponse(self)
def create(
self,
*,
account_id: str,
cache_ttl: float | NotGiven = NOT_GIVEN,
action_timeout: float | NotGiven = NOT_GIVEN,
add_script_tag: Iterable[content_create_params.AddScriptTag] | NotGiven = NOT_GIVEN,
add_style_tag: Iterable[content_create_params.AddStyleTag] | NotGiven = NOT_GIVEN,
allow_request_pattern: List[str] | NotGiven = NOT_GIVEN,
allow_resource_types: List[
Literal[
"document",
"stylesheet",
"image",
"media",
"font",
"script",
"texttrack",
"xhr",
"fetch",
"prefetch",
"eventsource",
"websocket",
"manifest",
"signedexchange",
"ping",
"cspviolationreport",
"preflight",
"other",
]
]
| NotGiven = NOT_GIVEN,
authenticate: content_create_params.Authenticate | NotGiven = NOT_GIVEN,
best_attempt: bool | NotGiven = NOT_GIVEN,
cookies: Iterable[content_create_params.Cookie] | NotGiven = NOT_GIVEN,
emulate_media_type: str | NotGiven = NOT_GIVEN,
goto_options: content_create_params.GotoOptions | NotGiven = NOT_GIVEN,
html: str | NotGiven = NOT_GIVEN,
reject_request_pattern: List[str] | NotGiven = NOT_GIVEN,
reject_resource_types: List[
Literal[
"document",
"stylesheet",
"image",
"media",
"font",
"script",
"texttrack",
"xhr",
"fetch",
"prefetch",
"eventsource",
"websocket",
"manifest",
"signedexchange",
"ping",
"cspviolationreport",
"preflight",
"other",
]
]
| NotGiven = NOT_GIVEN,
set_extra_http_headers: Dict[str, str] | NotGiven = NOT_GIVEN,
set_java_script_enabled: bool | NotGiven = NOT_GIVEN,
url: str | NotGiven = NOT_GIVEN,
user_agent: str | NotGiven = NOT_GIVEN,
viewport: content_create_params.Viewport | NotGiven = NOT_GIVEN,
wait_for_selector: content_create_params.WaitForSelector | NotGiven = NOT_GIVEN,
wait_for_timeout: float | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> str:
"""Fetches rendered HTML content from provided URL or HTML.
Check available options
like `gotoOptions` and `waitFor*` to control page load behaviour.
Args:
account_id: Account ID.
cache_ttl: Cache TTL default is 5s. Set to 0 to disable.
action_timeout: The maximum duration allowed for the browser action to complete after the page
has loaded (such as taking screenshots, extracting content, or generating PDFs).
If this time limit is exceeded, the action stops and returns a timeout error.
add_script_tag: Adds a `<script>` tag into the page with the desired URL or content.
add_style_tag: Adds a `<link rel="stylesheet">` tag into the page with the desired URL or a
`<style type="text/css">` tag with the content.
allow_request_pattern: Only allow requests that match the provided regex patterns, eg. '/^.\\**\\..(css)'.
allow_resource_types: Only allow requests that match the provided resource types, eg. 'image' or
'script'.
authenticate: Provide credentials for HTTP authentication.
best_attempt: Attempt to proceed when 'awaited' events fail or timeout.
cookies: Check [options](https://pptr.dev/api/puppeteer.page.setcookie).
goto_options: Check [options](https://pptr.dev/api/puppeteer.gotooptions).
html: Set the content of the page, eg: `<h1>Hello World!!</h1>`. Either `html` or
`url` must be set.
reject_request_pattern: Block undesired requests that match the provided regex patterns, eg.
'/^.\\**\\..(css)'.
reject_resource_types: Block undesired requests that match the provided resource types, eg. 'image' or
'script'.
url: URL to navigate to, eg. `https://example.com`.
viewport: Check [options](https://pptr.dev/api/puppeteer.page.setviewport).
wait_for_selector: Wait for the selector to appear in page. Check
[options](https://pptr.dev/api/puppeteer.page.waitforselector).
wait_for_timeout: Waits for a specified timeout before continuing.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not account_id:
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
return self._post(
f"/accounts/{account_id}/browser-rendering/content",
body=maybe_transform(
{
"action_timeout": action_timeout,
"add_script_tag": add_script_tag,
"add_style_tag": add_style_tag,
"allow_request_pattern": allow_request_pattern,
"allow_resource_types": allow_resource_types,
"authenticate": authenticate,
"best_attempt": best_attempt,
"cookies": cookies,
"emulate_media_type": emulate_media_type,
"goto_options": goto_options,
"html": html,
"reject_request_pattern": reject_request_pattern,
"reject_resource_types": reject_resource_types,
"set_extra_http_headers": set_extra_http_headers,
"set_java_script_enabled": set_java_script_enabled,
"url": url,
"user_agent": user_agent,
"viewport": viewport,
"wait_for_selector": wait_for_selector,
"wait_for_timeout": wait_for_timeout,
},
content_create_params.ContentCreateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=maybe_transform({"cache_ttl": cache_ttl}, content_create_params.ContentCreateParams),
post_parser=ResultWrapper[Optional[ContentCreateResponse]]._unwrapper,
),
cast_to=cast(Type[str], ResultWrapper[str]),
)
class AsyncContentResource(AsyncAPIResource):
@cached_property
def with_raw_response(self) -> AsyncContentResourceWithRawResponse:
"""
This property can be used as a prefix for any HTTP method call to return
the raw response object instead of the parsed content.
For more information, see https://www.github.com/cloudflare/cloudflare-python#accessing-raw-response-data-eg-headers
"""
return AsyncContentResourceWithRawResponse(self)
@cached_property
def with_streaming_response(self) -> AsyncContentResourceWithStreamingResponse:
"""
An alternative to `.with_raw_response` that doesn't eagerly read the response body.
For more information, see https://www.github.com/cloudflare/cloudflare-python#with_streaming_response
"""
return AsyncContentResourceWithStreamingResponse(self)
async def create(
self,
*,
account_id: str,
cache_ttl: float | NotGiven = NOT_GIVEN,
action_timeout: float | NotGiven = NOT_GIVEN,
add_script_tag: Iterable[content_create_params.AddScriptTag] | NotGiven = NOT_GIVEN,
add_style_tag: Iterable[content_create_params.AddStyleTag] | NotGiven = NOT_GIVEN,
allow_request_pattern: List[str] | NotGiven = NOT_GIVEN,
allow_resource_types: List[
Literal[
"document",
"stylesheet",
"image",
"media",
"font",
"script",
"texttrack",
"xhr",
"fetch",
"prefetch",
"eventsource",
"websocket",
"manifest",
"signedexchange",
"ping",
"cspviolationreport",
"preflight",
"other",
]
]
| NotGiven = NOT_GIVEN,
authenticate: content_create_params.Authenticate | NotGiven = NOT_GIVEN,
best_attempt: bool | NotGiven = NOT_GIVEN,
cookies: Iterable[content_create_params.Cookie] | NotGiven = NOT_GIVEN,
emulate_media_type: str | NotGiven = NOT_GIVEN,
goto_options: content_create_params.GotoOptions | NotGiven = NOT_GIVEN,
html: str | NotGiven = NOT_GIVEN,
reject_request_pattern: List[str] | NotGiven = NOT_GIVEN,
reject_resource_types: List[
Literal[
"document",
"stylesheet",
"image",
"media",
"font",
"script",
"texttrack",
"xhr",
"fetch",
"prefetch",
"eventsource",
"websocket",
"manifest",
"signedexchange",
"ping",
"cspviolationreport",
"preflight",
"other",
]
]
| NotGiven = NOT_GIVEN,
set_extra_http_headers: Dict[str, str] | NotGiven = NOT_GIVEN,
set_java_script_enabled: bool | NotGiven = NOT_GIVEN,
url: str | NotGiven = NOT_GIVEN,
user_agent: str | NotGiven = NOT_GIVEN,
viewport: content_create_params.Viewport | NotGiven = NOT_GIVEN,
wait_for_selector: content_create_params.WaitForSelector | NotGiven = NOT_GIVEN,
wait_for_timeout: float | NotGiven = NOT_GIVEN,
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
# The extra values given here take precedence over values defined on the client or passed to this method.
extra_headers: Headers | None = None,
extra_query: Query | None = None,
extra_body: Body | None = None,
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
) -> str:
"""Fetches rendered HTML content from provided URL or HTML.
Check available options
like `gotoOptions` and `waitFor*` to control page load behaviour.
Args:
account_id: Account ID.
cache_ttl: Cache TTL default is 5s. Set to 0 to disable.
action_timeout: The maximum duration allowed for the browser action to complete after the page
has loaded (such as taking screenshots, extracting content, or generating PDFs).
If this time limit is exceeded, the action stops and returns a timeout error.
add_script_tag: Adds a `<script>` tag into the page with the desired URL or content.
add_style_tag: Adds a `<link rel="stylesheet">` tag into the page with the desired URL or a
`<style type="text/css">` tag with the content.
allow_request_pattern: Only allow requests that match the provided regex patterns, eg. '/^.\\**\\..(css)'.
allow_resource_types: Only allow requests that match the provided resource types, eg. 'image' or
'script'.
authenticate: Provide credentials for HTTP authentication.
best_attempt: Attempt to proceed when 'awaited' events fail or timeout.
cookies: Check [options](https://pptr.dev/api/puppeteer.page.setcookie).
goto_options: Check [options](https://pptr.dev/api/puppeteer.gotooptions).
html: Set the content of the page, eg: `<h1>Hello World!!</h1>`. Either `html` or
`url` must be set.
reject_request_pattern: Block undesired requests that match the provided regex patterns, eg.
'/^.\\**\\..(css)'.
reject_resource_types: Block undesired requests that match the provided resource types, eg. 'image' or
'script'.
url: URL to navigate to, eg. `https://example.com`.
viewport: Check [options](https://pptr.dev/api/puppeteer.page.setviewport).
wait_for_selector: Wait for the selector to appear in page. Check
[options](https://pptr.dev/api/puppeteer.page.waitforselector).
wait_for_timeout: Waits for a specified timeout before continuing.
extra_headers: Send extra headers
extra_query: Add additional query parameters to the request
extra_body: Add additional JSON properties to the request
timeout: Override the client-level default timeout for this request, in seconds
"""
if not account_id:
raise ValueError(f"Expected a non-empty value for `account_id` but received {account_id!r}")
return await self._post(
f"/accounts/{account_id}/browser-rendering/content",
body=await async_maybe_transform(
{
"action_timeout": action_timeout,
"add_script_tag": add_script_tag,
"add_style_tag": add_style_tag,
"allow_request_pattern": allow_request_pattern,
"allow_resource_types": allow_resource_types,
"authenticate": authenticate,
"best_attempt": best_attempt,
"cookies": cookies,
"emulate_media_type": emulate_media_type,
"goto_options": goto_options,
"html": html,
"reject_request_pattern": reject_request_pattern,
"reject_resource_types": reject_resource_types,
"set_extra_http_headers": set_extra_http_headers,
"set_java_script_enabled": set_java_script_enabled,
"url": url,
"user_agent": user_agent,
"viewport": viewport,
"wait_for_selector": wait_for_selector,
"wait_for_timeout": wait_for_timeout,
},
content_create_params.ContentCreateParams,
),
options=make_request_options(
extra_headers=extra_headers,
extra_query=extra_query,
extra_body=extra_body,
timeout=timeout,
query=await async_maybe_transform({"cache_ttl": cache_ttl}, content_create_params.ContentCreateParams),
post_parser=ResultWrapper[Optional[ContentCreateResponse]]._unwrapper,
),
cast_to=cast(Type[str], ResultWrapper[str]),
)
class ContentResourceWithRawResponse:
def __init__(self, content: ContentResource) -> None:
self._content = content
self.create = to_raw_response_wrapper(
content.create,
)
class AsyncContentResourceWithRawResponse:
def __init__(self, content: AsyncContentResource) -> None:
self._content = content
self.create = async_to_raw_response_wrapper(
content.create,
)
class ContentResourceWithStreamingResponse:
def __init__(self, content: ContentResource) -> None:
self._content = content
self.create = to_streamed_response_wrapper(
content.create,
)
class AsyncContentResourceWithStreamingResponse:
def __init__(self, content: AsyncContentResource) -> None:
self._content = content
self.create = async_to_streamed_response_wrapper(
content.create,
)