recce-nightly 1.16.0.20250818__py3-none-any.whl → 1.16.0.20250819.post1__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 recce-nightly might be problematic. Click here for more details.
- recce/VERSION +1 -1
- recce/artifact.py +58 -0
- recce/cli.py +121 -81
- recce/data/404.html +1 -1
- recce/data/_next/static/chunks/{490-ce854af0bc670d3e.js → 490-fdbe0c19eed355c6.js} +1 -1
- recce/data/_next/static/chunks/app/{page-6e7f45c0d0eb69b3.js → page-58963bcee0b7da7f.js} +1 -1
- recce/data/index.html +1 -1
- recce/data/index.txt +4 -4
- recce/server.py +4 -0
- recce/state/cloud.py +320 -83
- recce/state/state_loader.py +15 -18
- recce/util/lineage.py +14 -18
- recce/util/recce_cloud.py +119 -4
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/METADATA +1 -1
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/RECORD +21 -21
- /recce/data/_next/static/{d0qQncgA8AYvUNmN0xWu9 → bHJE3DJUFXWTWw7acBP02}/_buildManifest.js +0 -0
- /recce/data/_next/static/{d0qQncgA8AYvUNmN0xWu9 → bHJE3DJUFXWTWw7acBP02}/_ssgManifest.js +0 -0
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/WHEEL +0 -0
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/entry_points.txt +0 -0
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/licenses/LICENSE +0 -0
- {recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/top_level.txt +0 -0
recce/util/recce_cloud.py
CHANGED
|
@@ -42,6 +42,7 @@ class RecceCloud:
|
|
|
42
42
|
self.token = token
|
|
43
43
|
self.token_type = "github_token" if token.startswith(("ghp_", "gho_", "ghu_", "ghs_", "ghr_")) else "api_token"
|
|
44
44
|
self.base_url = f"{RECCE_CLOUD_API_HOST}/api/v1"
|
|
45
|
+
self.base_url_v2 = f"{RECCE_CLOUD_API_HOST}/api/v2"
|
|
45
46
|
|
|
46
47
|
def _request(self, method, url, headers: Dict = None, **kwargs):
|
|
47
48
|
headers = {
|
|
@@ -81,6 +82,14 @@ class RecceCloud:
|
|
|
81
82
|
response = self._fetch_presigned_url(method, repository, artifact_name, metadata, pr_id, branch)
|
|
82
83
|
return response.get("presigned_url")
|
|
83
84
|
|
|
85
|
+
def _replace_localhost_with_docker_internal(self, url: str) -> str:
|
|
86
|
+
if url is None:
|
|
87
|
+
return None
|
|
88
|
+
if os.environ.get("RECCE_SHARE_INSTANCE_ENV") == "docker" and url.startswith(LOCALHOST_URL_PREFIX):
|
|
89
|
+
# For local development, convert the presigned URL from localhost to host.docker.internal
|
|
90
|
+
return url.replace(LOCALHOST_URL_PREFIX, DOCKER_INTERNAL_URL_PREFIX)
|
|
91
|
+
return url
|
|
92
|
+
|
|
84
93
|
def get_presigned_url_by_share_id(
|
|
85
94
|
self,
|
|
86
95
|
method: PresignedUrlMethod,
|
|
@@ -89,10 +98,13 @@ class RecceCloud:
|
|
|
89
98
|
) -> str:
|
|
90
99
|
response = self._fetch_presigned_url_by_share_id(method, share_id, metadata=metadata)
|
|
91
100
|
presigned_url = response.get("presigned_url")
|
|
92
|
-
|
|
93
|
-
|
|
94
|
-
|
|
95
|
-
|
|
101
|
+
if not presigned_url:
|
|
102
|
+
raise RecceCloudException(
|
|
103
|
+
message="Failed to get presigned URL from Recce Cloud.",
|
|
104
|
+
reason="No presigned URL returned from the server.",
|
|
105
|
+
status_code=404,
|
|
106
|
+
)
|
|
107
|
+
presigned_url = self._replace_localhost_with_docker_internal(presigned_url)
|
|
96
108
|
return presigned_url
|
|
97
109
|
|
|
98
110
|
def get_download_presigned_url_by_github_repo_with_tags(
|
|
@@ -232,6 +244,109 @@ class RecceCloud:
|
|
|
232
244
|
logger.warning(f"Failed to set Onboarding State in Recce Cloud. Reason: {str(e)}")
|
|
233
245
|
return
|
|
234
246
|
|
|
247
|
+
def get_snapshot(self, snapshot_id: str):
|
|
248
|
+
api_url = f"{self.base_url_v2}/snapshots/{snapshot_id}"
|
|
249
|
+
response = self._request("GET", api_url)
|
|
250
|
+
if response.status_code == 403:
|
|
251
|
+
return {"status": "error", "message": response.json().get("detail")}
|
|
252
|
+
if response.status_code != 200:
|
|
253
|
+
raise RecceCloudException(
|
|
254
|
+
message="Failed to get snapshot from Recce Cloud.",
|
|
255
|
+
reason=response.text,
|
|
256
|
+
status_code=response.status_code,
|
|
257
|
+
)
|
|
258
|
+
data = response.json()
|
|
259
|
+
if data["success"] is not True:
|
|
260
|
+
raise RecceCloudException(
|
|
261
|
+
message="Failed to get snapshot from Recce Cloud.",
|
|
262
|
+
reason=data.get("message", "Unknown error"),
|
|
263
|
+
status_code=response.status_code,
|
|
264
|
+
)
|
|
265
|
+
return data["snapshot"]
|
|
266
|
+
|
|
267
|
+
def update_snapshot(self, org_id: str, project_id: str, snapshot_id: str, adapter_type: str):
|
|
268
|
+
api_url = f"{self.base_url_v2}/organizations/{org_id}/projects/{project_id}/snapshots/{snapshot_id}"
|
|
269
|
+
data = {"adapter_type": adapter_type}
|
|
270
|
+
response = self._request("PATCH", api_url, json=data)
|
|
271
|
+
if response.status_code == 403:
|
|
272
|
+
return {"status": "error", "message": response.json().get("detail")}
|
|
273
|
+
if response.status_code != 200:
|
|
274
|
+
raise RecceCloudException(
|
|
275
|
+
message="Failed to update snapshot in Recce Cloud.",
|
|
276
|
+
reason=response.text,
|
|
277
|
+
status_code=response.status_code,
|
|
278
|
+
)
|
|
279
|
+
return response.json()
|
|
280
|
+
|
|
281
|
+
def get_download_urls_by_snapshot_id(self, org_id: str, project_id: str, snapshot_id: str) -> dict[str, str]:
|
|
282
|
+
api_url = (
|
|
283
|
+
f"{self.base_url_v2}/organizations/{org_id}/projects/{project_id}/snapshots/{snapshot_id}/download-url"
|
|
284
|
+
)
|
|
285
|
+
response = self._request("GET", api_url)
|
|
286
|
+
if response.status_code != 200:
|
|
287
|
+
raise RecceCloudException(
|
|
288
|
+
message="Failed to download snapshot from Recce Cloud.",
|
|
289
|
+
reason=response.text,
|
|
290
|
+
status_code=response.status_code,
|
|
291
|
+
)
|
|
292
|
+
data = response.json()
|
|
293
|
+
if data["presigned_urls"] is None:
|
|
294
|
+
raise RecceCloudException(
|
|
295
|
+
message="No presigned URLs returned from the server.",
|
|
296
|
+
reason="",
|
|
297
|
+
status_code=404,
|
|
298
|
+
)
|
|
299
|
+
|
|
300
|
+
presigned_urls = data["presigned_urls"]
|
|
301
|
+
for key, url in presigned_urls.items():
|
|
302
|
+
presigned_urls[key] = self._replace_localhost_with_docker_internal(url)
|
|
303
|
+
return presigned_urls
|
|
304
|
+
|
|
305
|
+
def get_base_snapshot_download_urls(self, org_id: str, project_id: str) -> dict[str, str]:
|
|
306
|
+
"""Get download URLs for the base snapshot of a project."""
|
|
307
|
+
api_url = f"{self.base_url_v2}/organizations/{org_id}/projects/{project_id}/base-snapshot/download-url"
|
|
308
|
+
response = self._request("GET", api_url)
|
|
309
|
+
if response.status_code != 200:
|
|
310
|
+
raise RecceCloudException(
|
|
311
|
+
message="Failed to download base snapshot from Recce Cloud.",
|
|
312
|
+
reason=response.text,
|
|
313
|
+
status_code=response.status_code,
|
|
314
|
+
)
|
|
315
|
+
data = response.json()
|
|
316
|
+
if data["presigned_urls"] is None:
|
|
317
|
+
raise RecceCloudException(
|
|
318
|
+
message="No presigned URLs returned from the server.",
|
|
319
|
+
reason="",
|
|
320
|
+
status_code=404,
|
|
321
|
+
)
|
|
322
|
+
|
|
323
|
+
presigned_urls = data["presigned_urls"]
|
|
324
|
+
for key, url in presigned_urls.items():
|
|
325
|
+
presigned_urls[key] = self._replace_localhost_with_docker_internal(url)
|
|
326
|
+
return presigned_urls
|
|
327
|
+
|
|
328
|
+
def get_upload_urls_by_snapshot_id(self, org_id: str, project_id: str, snapshot_id: str) -> dict[str, str]:
|
|
329
|
+
api_url = f"{self.base_url_v2}/organizations/{org_id}/projects/{project_id}/snapshots/{snapshot_id}/upload-url"
|
|
330
|
+
response = self._request("GET", api_url)
|
|
331
|
+
if response.status_code != 200:
|
|
332
|
+
raise RecceCloudException(
|
|
333
|
+
message="Failed to get upload URLs for snapshot from Recce Cloud.",
|
|
334
|
+
reason=response.text,
|
|
335
|
+
status_code=response.status_code,
|
|
336
|
+
)
|
|
337
|
+
data = response.json()
|
|
338
|
+
if data["presigned_urls"] is None:
|
|
339
|
+
raise RecceCloudException(
|
|
340
|
+
message="No presigned URLs returned from the server.",
|
|
341
|
+
reason="",
|
|
342
|
+
status_code=404,
|
|
343
|
+
)
|
|
344
|
+
|
|
345
|
+
presigned_urls = data["presigned_urls"]
|
|
346
|
+
for key, url in presigned_urls.items():
|
|
347
|
+
presigned_urls[key] = self._replace_localhost_with_docker_internal(url)
|
|
348
|
+
return presigned_urls
|
|
349
|
+
|
|
235
350
|
|
|
236
351
|
def get_recce_cloud_onboarding_state(token: str) -> str:
|
|
237
352
|
try:
|
{recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/RECORD
RENAMED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
recce/VERSION,sha256=
|
|
1
|
+
recce/VERSION,sha256=PMQGSPly296_Z0NZIkWVI0pzffVKhLG9H8SmK6Pm1Y4,22
|
|
2
2
|
recce/__init__.py,sha256=yNb0QT-yoStex0VZALNJvUwtPLommoVCStcow31guqo,2392
|
|
3
|
-
recce/artifact.py,sha256=
|
|
4
|
-
recce/cli.py,sha256=
|
|
3
|
+
recce/artifact.py,sha256=Y4qC3ymckCFSBRQ_amvhp1kwE6QrXHFzno4b_mMAfZs,9252
|
|
4
|
+
recce/cli.py,sha256=ncHiK7cSkHiVXZ8FiXPAYqEc1zMwxPK-ykue56K5Ots,45170
|
|
5
5
|
recce/config.py,sha256=A4CbKcIdwQ4A9Q2ba4riHUshVQw1D-qDelMOdlt2khU,4661
|
|
6
6
|
recce/connect_to_cloud.py,sha256=_SkX2pdyXa9FNyaHvItyYVPF2nZxy2JnCyd_o_psh2Y,4750
|
|
7
7
|
recce/core.py,sha256=MtBWxemvCQDdUITwkU2JyuQYqcjlA0a76M8Kg53ECxQ,10754
|
|
@@ -11,7 +11,7 @@ recce/git.py,sha256=8Eg-6NzL-KjA3rT-ibbAyaCwGlzV0JqH3yGikrJNMDA,2344
|
|
|
11
11
|
recce/github.py,sha256=PEpM6ZRiinsPbXSWj4aJCKbZrN1jUXzpzAfJq_CGah4,7420
|
|
12
12
|
recce/pull_request.py,sha256=aW0B1NE2LUKTam1S4TQ7smXB9KLE1DV8GnyBqNXA6j8,3832
|
|
13
13
|
recce/run.py,sha256=PNafwUUJdIG8b1o0y1QuvjACpA3E-5a3keH45CrWHN0,14044
|
|
14
|
-
recce/server.py,sha256=
|
|
14
|
+
recce/server.py,sha256=2xWkmY06MK36uBCcE2GGjoOGx6DhhiZ7UjLlTlqCACc,22600
|
|
15
15
|
recce/summary.py,sha256=Mbxvxr9KazR5o9icqhhjiGHsoAiWxQU4PdN7HytBJ1c,19154
|
|
16
16
|
recce/adapter/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
17
17
|
recce/adapter/base.py,sha256=T_JNeLHgiHSaegw-DbrvHOaYjMyZcjj2Qtg5cWh_fco,3548
|
|
@@ -23,11 +23,13 @@ recce/apis/check_api.py,sha256=KMCXSMl1qqzx2jQgRqCrD4j_cY3EHBbM3H2-t-6saAU,6227
|
|
|
23
23
|
recce/apis/check_func.py,sha256=gktbCcyk3WGvWRJJ-wDnwv7NrIny2nTHWLl1-kdiVRo,4183
|
|
24
24
|
recce/apis/run_api.py,sha256=eOaxOxXDkH59uqGCd4blld7edavUx7JU_DCd2WAYrL8,3416
|
|
25
25
|
recce/apis/run_func.py,sha256=6wC8TDU-h7TLr2VZH7HNsWaUVlQ9HBN5N_dwqfi4lMY,7440
|
|
26
|
-
recce/data/404.html,sha256=
|
|
26
|
+
recce/data/404.html,sha256=WZybOnWTtayH3iHAmKLAhNooC8QQ1TRUCpsM6zEQCho,59081
|
|
27
27
|
recce/data/auth_callback.html,sha256=H-XfdlAFiw5VU2RpKBVQbwh1AIqJrPHrFA0S09nNJZA,94779
|
|
28
28
|
recce/data/favicon.ico,sha256=B2mBumUOnzvUrXrqNkrc5QfdDXjzEXRcWkWur0fJ6sM,2565
|
|
29
|
-
recce/data/index.html,sha256=
|
|
30
|
-
recce/data/index.txt,sha256=
|
|
29
|
+
recce/data/index.html,sha256=nziO25bf4rZC6JtqNjZXCbzySFixbcA5AqgjMyXsmcM,77442
|
|
30
|
+
recce/data/index.txt,sha256=qTyfhyTOfE0w8WzhO_oIFRPkX76RgfWWWPF6BsJioJk,6402
|
|
31
|
+
recce/data/_next/static/bHJE3DJUFXWTWw7acBP02/_buildManifest.js,sha256=l8kfhgQIEvC1Ede_vT6iLavFimajvA32VzTAPK28pSw,544
|
|
32
|
+
recce/data/_next/static/bHJE3DJUFXWTWw7acBP02/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
31
33
|
recce/data/_next/static/chunks/068b80ea-7fab85837b21fed5.js,sha256=irzMcuBMTPe09LlF8z1CI-7_-Tr1rkA7oyuL6K_77DU,4628
|
|
32
34
|
recce/data/_next/static/chunks/0ddaf06c-05b8d2a8a3e5c6f3.js,sha256=vcGJX-WEXhfmuI5WKhFYPOZgNQoddWfFD565DniftLw,697
|
|
33
35
|
recce/data/_next/static/chunks/12f8fac4-170216f89d5576c6.js,sha256=1RvykSI64NYLTPwaCyxexU91wmra1Hg2XpvNfDu2mpw,152794
|
|
@@ -38,7 +40,7 @@ recce/data/_next/static/chunks/27e92eb0-4d8ec3c6cdf0d5f1.js,sha256=L5tol9qPfJurN
|
|
|
38
40
|
recce/data/_next/static/chunks/2fc37c1e-fd3c94ef85344810.js,sha256=aCCYev-qd6QV11nP0Ki-TxOFReBULkAU15ieCNys8wQ,3836
|
|
39
41
|
recce/data/_next/static/chunks/370-bd3e0bf7237858bc.js,sha256=epoqgDgP1Y2vEnkJDQnArFVj8ObuW4qqxSWHToWVcAY,166418
|
|
40
42
|
recce/data/_next/static/chunks/3a92ee20-a33bb5964d0b2f37.js,sha256=9O1MzNoBzy_CJsJ_9kNXsOfUCEPu6IPF1LaZl4SdXTo,177908
|
|
41
|
-
recce/data/_next/static/chunks/490-
|
|
43
|
+
recce/data/_next/static/chunks/490-fdbe0c19eed355c6.js,sha256=KztTTmo6_fRB72Is-P0JunsiSl1ASlk32pIMf8uk5ts,84748
|
|
42
44
|
recce/data/_next/static/chunks/575-2443813ff441d02c.js,sha256=Uz72cwal6dDOkGZzBsC7a4ER7odRIupMYe204Rw8n3A,11652
|
|
43
45
|
recce/data/_next/static/chunks/62446465-5277e7ad93431c07.js,sha256=38AOs2vIyqmxHVXRG4VRFu1QjG1y6i1Ws3CpEzRrC8E,2622
|
|
44
46
|
recce/data/_next/static/chunks/6af7f9e9-1b5f068628caacd4.js,sha256=jAFwFVuMQAGoqIPgFBVjYe0v0rfb_JHxVocgh3oRQiY,767
|
|
@@ -60,7 +62,7 @@ recce/data/_next/static/chunks/main-app-a6bd599e25466331.js,sha256=wxhVwz8VAfzs7
|
|
|
60
62
|
recce/data/_next/static/chunks/polyfills-42372ed130431b0a.js,sha256=CXPB1kyIrcjjyVBBDLWLKI9yEY1ZZbeASUON648vloM,112594
|
|
61
63
|
recce/data/_next/static/chunks/webpack-e707d93a7b1691e8.js,sha256=Ibkw2UCDBVUi1MRPLO8wEAN86p380LWw6zF1R_Qamb8,3580
|
|
62
64
|
recce/data/_next/static/chunks/app/layout-6b127f6a9d30f81d.js,sha256=O9k3qTFd19Z-tiHYGAiMGUNY6OQ6scwZQXSwEqhun5E,1412
|
|
63
|
-
recce/data/_next/static/chunks/app/page-
|
|
65
|
+
recce/data/_next/static/chunks/app/page-58963bcee0b7da7f.js,sha256=puTbI5QfNCCmNzYGgUOi7Q06Y1UwN315r-_EvV12h24,166648
|
|
64
66
|
recce/data/_next/static/chunks/app/_not-found/page-f6afb3793e4b6ce1.js,sha256=yi2tvMWSs05jxM-LZ_P9JKOPztQSJF_van1IJIVeV5A,2680
|
|
65
67
|
recce/data/_next/static/chunks/pages/_app-f73a7d040f1ea45c.js,sha256=0llEmHlHOPS9UZbHENhdUObZ7tDbQV2VCZ0LId_f22w,240
|
|
66
68
|
recce/data/_next/static/chunks/pages/_error-c550ce619d2ef6f8.js,sha256=44UdnARhGJhgwgzpgZubFW_oD2tPnoqrV1xRUyquY_E,221
|
|
@@ -68,8 +70,6 @@ recce/data/_next/static/css/8edca58d4abcf908.css,sha256=Ab-wk7RhsXgiX5fkJsrCJ-EV
|
|
|
68
70
|
recce/data/_next/static/css/9ba7df14573e8fe7.css,sha256=HbimhkWMsVpAgDq9vpbDaQE-7ProdWfvkS6RzO7meMk,12308
|
|
69
71
|
recce/data/_next/static/css/abdb9814a3dd18bb.css,sha256=Do5x9FJaOIe-pSBlbk_PP7PQAYFbDXTTl_0PWY4cnBM,1327
|
|
70
72
|
recce/data/_next/static/css/c21263c1520b615b.css,sha256=2TrfHvYUzCBJKLdPzYN6hOAg1n8CoOsJFo36LJPQbOI,13037
|
|
71
|
-
recce/data/_next/static/d0qQncgA8AYvUNmN0xWu9/_buildManifest.js,sha256=l8kfhgQIEvC1Ede_vT6iLavFimajvA32VzTAPK28pSw,544
|
|
72
|
-
recce/data/_next/static/d0qQncgA8AYvUNmN0xWu9/_ssgManifest.js,sha256=Z49s4suAsf5y_GfnQSvm4qtq2ggxEbZPfEDTXjy6XgA,80
|
|
73
73
|
recce/data/_next/static/media/montserrat-cyrillic-800-normal.22628180.woff2,sha256=P5Sx5PNkdTlDYzAdulW_OPRfMokDLi6XTpmS8KJSRoI,11148
|
|
74
74
|
recce/data/_next/static/media/montserrat-cyrillic-800-normal.bd5c9f50.woff,sha256=PFm1Nwt11gmigNvVqPOoDbUFo70fZzUfyZ9S_5f8AnE,10920
|
|
75
75
|
recce/data/_next/static/media/montserrat-cyrillic-ext-800-normal.94a63aea.woff2,sha256=qHQDcPj9VkK-6sE5nxIKvejtNLo5RwBULzyH9nZsEwo,12052
|
|
@@ -95,11 +95,11 @@ recce/models/check.py,sha256=jjR1SGyczjrqyK-0Zas6ikLIGSgVp54lvfcQA19AniI,1588
|
|
|
95
95
|
recce/models/run.py,sha256=QK2gvOWvko9YYhd2NLs3BPt5l4MSCZGwpzTAiqx9zJw,1161
|
|
96
96
|
recce/models/types.py,sha256=9ReOyIv3rUD3_cIQfB9Rplb0L2YQuZr4kS9Zai30nB8,5234
|
|
97
97
|
recce/state/__init__.py,sha256=V1FRPTQJUz-uwI3Cn8wDa5Z9bueVs86MR_1Ti4RGfPc,650
|
|
98
|
-
recce/state/cloud.py,sha256=
|
|
98
|
+
recce/state/cloud.py,sha256=SLPBQljUS7vKjKxG0UwY4bfey1t5ZI0BCDx4DBIjH8A,25031
|
|
99
99
|
recce/state/const.py,sha256=Me3uVQHi_uZysl3tfpmghPInuKF236X6LfMKVvJlCgA,827
|
|
100
100
|
recce/state/local.py,sha256=bZIkl7cAfyYaGgYEr3uD_JLrtwlHBnu8_o1Qz2djQzw,1920
|
|
101
101
|
recce/state/state.py,sha256=L1cEAl6S9rxTvSIc8ICNwOYoCYK5tR3M0kBo4NTcXK4,3617
|
|
102
|
-
recce/state/state_loader.py,sha256=
|
|
102
|
+
recce/state/state_loader.py,sha256=4lJYiOdlAg8h7rVBiBiffnkSyiQSmg9NejIJv4fFHTM,5984
|
|
103
103
|
recce/tasks/__init__.py,sha256=b553AtDHjYROgmMePv_Hv_X3fjh4iEn11gzzpUJz6_o,610
|
|
104
104
|
recce/tasks/core.py,sha256=JFYa1CfgOiRPQ7KVTwMuxJjhMB-pvCwB-xezVt-h3RU,4080
|
|
105
105
|
recce/tasks/dataframe.py,sha256=03UBWwt0DFTXlaEOtnV5i_mxdRKD7UbRayewEL2Ub48,3650
|
|
@@ -117,15 +117,15 @@ recce/util/breaking.py,sha256=ajCOWMR8Qw492wCiuz5_DKqpI3uoj_qHuJjvelEoSkw,13068
|
|
|
117
117
|
recce/util/cache.py,sha256=QB6wzxe0M3jNTwP0M27Ys8F2hF-oda4-LyXXG9THuZQ,646
|
|
118
118
|
recce/util/cll.py,sha256=p8BrsG_1Lm-jXO8n4ulUgFw13C4mN0WjCXZbihDxQrs,13253
|
|
119
119
|
recce/util/io.py,sha256=fNiIafNxPlTF6NNXlugzeJjfVGGrP3RXb39ERzRWD3Q,3459
|
|
120
|
-
recce/util/lineage.py,sha256=
|
|
120
|
+
recce/util/lineage.py,sha256=0XXOO05eJ3GPUNX9V9GBQS2iRFXxWZJoJbV7w-jQ0t8,2470
|
|
121
121
|
recce/util/logger.py,sha256=6UgLFkRiur9jJfu2ZRdo4LUvMw4f75V-l-1HT1-sgKo,747
|
|
122
122
|
recce/util/onboarding_state.py,sha256=kwFirKlfXdl5WFkR_nmilqGKFyELNcSPMqYq-by35fk,1991
|
|
123
123
|
recce/util/perf_tracking.py,sha256=FjhrdbbXIgybxS_oPpFsJ9VUDR93d7bUs8VNNqpXNxw,2483
|
|
124
124
|
recce/util/pydantic_model.py,sha256=KumKuyCjbTzEMsKLE4-b-eZfp0gLhYDdmVtw1-hxiJw,587
|
|
125
|
-
recce/util/recce_cloud.py,sha256=
|
|
125
|
+
recce/util/recce_cloud.py,sha256=YSzdC1GYcoy-BbPgnouocp9qqt1LZ-HDWKcn1ulmoT4,15011
|
|
126
126
|
recce/util/singleton.py,sha256=1cU99I0f9tjuMQLMJyLsK1oK3fZJMsO5-TbRHAMXqds,627
|
|
127
127
|
recce/yaml/__init__.py,sha256=EgXYlFeJZchatUClRDXbIC5Oqb2_nBvB2NqItYVihio,1292
|
|
128
|
-
recce_nightly-1.16.0.
|
|
128
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/licenses/LICENSE,sha256=CQjjMy9aYPhfe8xG_bcpIfKtNkdxLZ5IOb8oPygtUhY,11343
|
|
129
129
|
tests/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
130
130
|
tests/test_cli.py,sha256=4N_F_lg00fGBuK3I9EyaF2Doi7PpKCrjqbuJ5YI1KqE,5467
|
|
131
131
|
tests/test_config.py,sha256=ODDFe_XF6gphmSmmc422dGLBaCCmG-IjDzTkD5SJsJE,1557
|
|
@@ -153,8 +153,8 @@ tests/tasks/test_row_count.py,sha256=21PaP2aq-x8-pqwzWHRT1sixhQ8g3CQNRWOZTTmbK0s
|
|
|
153
153
|
tests/tasks/test_schema.py,sha256=7ds4Vx8ixaiIWDR49Lvjem4xlPkRP1cXazDRY3roUak,3121
|
|
154
154
|
tests/tasks/test_top_k.py,sha256=YR_GS__DJsbDlQVaEEdJvNQ3fh1VmV5Nb3G7lb0r6YM,1779
|
|
155
155
|
tests/tasks/test_valuediff.py,sha256=_xQJGgxsXoy2NYk_Z6Hsw2FlVh6zk2nN_iUueyRN1e8,2046
|
|
156
|
-
recce_nightly-1.16.0.
|
|
157
|
-
recce_nightly-1.16.0.
|
|
158
|
-
recce_nightly-1.16.0.
|
|
159
|
-
recce_nightly-1.16.0.
|
|
160
|
-
recce_nightly-1.16.0.
|
|
156
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/METADATA,sha256=CraSqeqe045wgHRW6DF8PLqXguRFpKMeEzLfN_NJVz8,9372
|
|
157
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
|
|
158
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/entry_points.txt,sha256=oqoY_IiwIqXbgrIsPnlqUqao2eiIeP2dprowkOlmeyg,40
|
|
159
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/top_level.txt,sha256=6PKGVpf75idP0C6KEaldDzzZUauIxNu1ZDstau1pI4I,12
|
|
160
|
+
recce_nightly-1.16.0.20250819.post1.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|
{recce_nightly-1.16.0.20250818.dist-info → recce_nightly-1.16.0.20250819.post1.dist-info}/WHEEL
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|