cartography-client 0.4.0__py3-none-any.whl → 0.6.0__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Potentially problematic release.
This version of cartography-client might be problematic. Click here for more details.
- cartography/_version.py +1 -1
- cartography/resources/workflows/request/crawl.py +6 -2
- cartography/types/workflows/request/crawl_create_params.py +2 -0
- cartography/types/workflows/request/crawl_request_param.py +2 -0
- {cartography_client-0.4.0.dist-info → cartography_client-0.6.0.dist-info}/METADATA +1 -1
- {cartography_client-0.4.0.dist-info → cartography_client-0.6.0.dist-info}/RECORD +8 -8
- {cartography_client-0.4.0.dist-info → cartography_client-0.6.0.dist-info}/WHEEL +0 -0
- {cartography_client-0.4.0.dist-info → cartography_client-0.6.0.dist-info}/licenses/LICENSE +0 -0
cartography/_version.py
CHANGED
|
@@ -59,6 +59,7 @@ class CrawlResource(SyncAPIResource):
|
|
|
59
59
|
keep_external: bool | NotGiven = NOT_GIVEN,
|
|
60
60
|
max_urls: int | NotGiven = NOT_GIVEN,
|
|
61
61
|
max_workers: int | NotGiven = NOT_GIVEN,
|
|
62
|
+
stealth: bool | NotGiven = NOT_GIVEN,
|
|
62
63
|
visit_external: bool | NotGiven = NOT_GIVEN,
|
|
63
64
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
64
65
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -94,6 +95,7 @@ class CrawlResource(SyncAPIResource):
|
|
|
94
95
|
"keep_external": keep_external,
|
|
95
96
|
"max_urls": max_urls,
|
|
96
97
|
"max_workers": max_workers,
|
|
98
|
+
"stealth": stealth,
|
|
97
99
|
"visit_external": visit_external,
|
|
98
100
|
},
|
|
99
101
|
crawl_create_params.CrawlCreateParams,
|
|
@@ -116,7 +118,7 @@ class CrawlResource(SyncAPIResource):
|
|
|
116
118
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
117
119
|
) -> CrawlCreateBulkResponse:
|
|
118
120
|
"""
|
|
119
|
-
Make
|
|
121
|
+
Make up to 50 requests to temporal crawl worker
|
|
120
122
|
|
|
121
123
|
Args:
|
|
122
124
|
extra_headers: Send extra headers
|
|
@@ -170,6 +172,7 @@ class AsyncCrawlResource(AsyncAPIResource):
|
|
|
170
172
|
keep_external: bool | NotGiven = NOT_GIVEN,
|
|
171
173
|
max_urls: int | NotGiven = NOT_GIVEN,
|
|
172
174
|
max_workers: int | NotGiven = NOT_GIVEN,
|
|
175
|
+
stealth: bool | NotGiven = NOT_GIVEN,
|
|
173
176
|
visit_external: bool | NotGiven = NOT_GIVEN,
|
|
174
177
|
# Use the following arguments if you need to pass additional parameters to the API that aren't available via kwargs.
|
|
175
178
|
# The extra values given here take precedence over values defined on the client or passed to this method.
|
|
@@ -205,6 +208,7 @@ class AsyncCrawlResource(AsyncAPIResource):
|
|
|
205
208
|
"keep_external": keep_external,
|
|
206
209
|
"max_urls": max_urls,
|
|
207
210
|
"max_workers": max_workers,
|
|
211
|
+
"stealth": stealth,
|
|
208
212
|
"visit_external": visit_external,
|
|
209
213
|
},
|
|
210
214
|
crawl_create_params.CrawlCreateParams,
|
|
@@ -227,7 +231,7 @@ class AsyncCrawlResource(AsyncAPIResource):
|
|
|
227
231
|
timeout: float | httpx.Timeout | None | NotGiven = NOT_GIVEN,
|
|
228
232
|
) -> CrawlCreateBulkResponse:
|
|
229
233
|
"""
|
|
230
|
-
Make
|
|
234
|
+
Make up to 50 requests to temporal crawl worker
|
|
231
235
|
|
|
232
236
|
Args:
|
|
233
237
|
extra_headers: Send extra headers
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: cartography-client
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.6.0
|
|
4
4
|
Summary: The official Python library for the cartography API
|
|
5
5
|
Project-URL: Homepage, https://github.com/evrimai/cartography-client
|
|
6
6
|
Project-URL: Repository, https://github.com/evrimai/cartography-client
|
|
@@ -11,7 +11,7 @@ cartography/_resource.py,sha256=ofOCE9gyI5yng3FbynF2nNk2n-PfZEnNu89Kv2LGtR8,1130
|
|
|
11
11
|
cartography/_response.py,sha256=KTgC3XMyHfxd-QFOw0_eSSH_H9JjFLguHHnlMVgDmYY,28848
|
|
12
12
|
cartography/_streaming.py,sha256=44nEybod8OtdW8mLkaJGFHaLPYdy7ANKKbdKZxp7BNU,10120
|
|
13
13
|
cartography/_types.py,sha256=4TMbDeigQ7UCsXAWFGmB-BVvdzbdp4JKq52aMkGgMQU,6202
|
|
14
|
-
cartography/_version.py,sha256=
|
|
14
|
+
cartography/_version.py,sha256=hyrgI4uxpX9L5-dAEbA4iX25H6tYSTUiQ3L3XpAV3Bg,163
|
|
15
15
|
cartography/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
cartography/_utils/__init__.py,sha256=PNZ_QJuzZEgyYXqkO1HVhGkj5IU9bglVUcw7H-Knjzw,2062
|
|
17
17
|
cartography/_utils/_logs.py,sha256=TNCxhQiimRnezBq1pV7qiJToiuoztfqs3Ls7XjnhyIE,789
|
|
@@ -33,7 +33,7 @@ cartography/resources/scrape.py,sha256=L9Sb2CM-FZpRn4FzK--RZBs9LQ_EUQj-F-IliHLfn
|
|
|
33
33
|
cartography/resources/workflows/__init__.py,sha256=WF-IzwaW19ZKLOR8R3dEzhsDFEcoAmfygtqf8M7jNNw,1054
|
|
34
34
|
cartography/resources/workflows/workflows.py,sha256=ErRGqGtfrvXPLCGsqi8zwazD_jnrBCMRaNOXbzrxZ3M,10254
|
|
35
35
|
cartography/resources/workflows/request/__init__.py,sha256=u5ZP5HQC6UhVQ33WUgrN6ID8NoaKY_H6dNnpqTekp8w,1002
|
|
36
|
-
cartography/resources/workflows/request/crawl.py,sha256=
|
|
36
|
+
cartography/resources/workflows/request/crawl.py,sha256=HEmab1osb_BjuoOkG6ikJcgfmAqCxu1L05VRAvPm1vA,11626
|
|
37
37
|
cartography/resources/workflows/request/request.py,sha256=gpkzJThqkkYn3ewtXGCnM7CkjuQzZmzK2LwDWXigZyo,8054
|
|
38
38
|
cartography/types/__init__.py,sha256=z5IVYO88AdR6Ul10__xjNOmo4n3U79T3lMEFpjpy53M,1758
|
|
39
39
|
cartography/types/api_info_retrieve_response.py,sha256=kdavk-S1UkgJaA8Ad9L-gl1DFVljhDk-afOLS5MV7EQ,246
|
|
@@ -61,10 +61,10 @@ cartography/types/workflows/request_create_download_response.py,sha256=8n05ENcmB
|
|
|
61
61
|
cartography/types/workflows/request/__init__.py,sha256=lXyknEexZDYnqVoqUMERnRuSlz4CixdFQXecKu8qGNc,505
|
|
62
62
|
cartography/types/workflows/request/crawl_create_bulk_params.py,sha256=tKJrecoRHVMF_T3okZAPCeaa8XGW5lMzoN1cku2kttc,393
|
|
63
63
|
cartography/types/workflows/request/crawl_create_bulk_response.py,sha256=jsxrgEsJ5sUKquwBVJqNXqGB8JFY3lEat1wNc-qJ7a4,479
|
|
64
|
-
cartography/types/workflows/request/crawl_create_params.py,sha256=
|
|
65
|
-
cartography/types/workflows/request/crawl_request_param.py,sha256=
|
|
64
|
+
cartography/types/workflows/request/crawl_create_params.py,sha256=ro_9ycDkwvrZ83hK4qxtQCcoBapWvSWjQ5XJwZBTDSo,653
|
|
65
|
+
cartography/types/workflows/request/crawl_request_param.py,sha256=euZfGRGXWIKCjzC7O0JG9gZ8tejkCnmZG13aWiiE4CE,653
|
|
66
66
|
cartography/types/workflows/request/workflow_result.py,sha256=iIDSquvEHkrr_IDYhZqJDZgLvEugBKgSeQOnA9jPohQ,221
|
|
67
|
-
cartography_client-0.
|
|
68
|
-
cartography_client-0.
|
|
69
|
-
cartography_client-0.
|
|
70
|
-
cartography_client-0.
|
|
67
|
+
cartography_client-0.6.0.dist-info/METADATA,sha256=dL2xKITsWnlNw6Agc_cbgXp1zKJw8i4pe8OCzCCOAjs,13566
|
|
68
|
+
cartography_client-0.6.0.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
69
|
+
cartography_client-0.6.0.dist-info/licenses/LICENSE,sha256=0DZ926LAsHVU1OBPQaE_owbXJZ6foQ133RvErapSzt0,11341
|
|
70
|
+
cartography_client-0.6.0.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|