We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents b857966 + d7a48ad commit 786da72Copy full SHA for 786da72
2 files changed
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):
setup.py
@@ -6,7 +6,7 @@
6
7
setup(
8
name="jigsawstack",
9
- version="0.1.27",
+ version="0.1.28",
10
description="JigsawStack Python SDK",
11
long_description=open("README.md", encoding="utf8").read(),
12
long_description_content_type="text/markdown",
0 commit comments