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 b857966 commit e6fb026Copy full SHA for e6fb026
jigsawstack/web.py
@@ -113,6 +113,11 @@ class ScrapeResponse(TypedDict):
113
data: Any
114
115
116
+class LinkParams(TypedDict):
117
+ text: str
118
+ href: str
119
+
120
121
class AIScrapeResponse(TypedDict):
122
success: bool
123
"""
@@ -123,6 +128,7 @@ class AIScrapeResponse(TypedDict):
128
page_position_length: int
124
129
page_position: int
125
130
selectors: object
131
+ link: List[LinkParams]
126
132
127
133
134
class Web(ClientConfig):
0 commit comments