We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 0c0fbcc commit 357cc27Copy full SHA for 357cc27
src/apify/_proxy_configuration.py
@@ -10,6 +10,7 @@
10
import httpx
11
12
from apify_shared.consts import ApifyEnvVars
13
+from apify_shared.utils import ignore_docs
14
from crawlee.proxy_configuration import ProxyConfiguration as CrawleeProxyConfiguration
15
from crawlee.proxy_configuration import ProxyInfo as CrawleeProxyInfo
16
from crawlee.proxy_configuration import _NewUrlFunction
@@ -27,6 +28,7 @@
27
28
SESSION_ID_MAX_LENGTH = 50
29
30
31
+@ignore_docs
32
def is_url(url: str) -> bool:
33
"""Check if the given string is a valid URL."""
34
try:
@@ -102,6 +104,7 @@ class ProxyConfiguration(CrawleeProxyConfiguration):
102
104
103
105
_configuration: Configuration
106
107
+ @ignore_docs
108
def __init__(
109
self,
110
*,
0 commit comments