retab 0.0.40__py3-none-any.whl → 0.0.41__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.
- retab/resources/consensus/completions.py +1 -1
- retab/resources/consensus/completions_stream.py +3 -3
- retab/resources/consensus/responses.py +1 -1
- retab/resources/consensus/responses_stream.py +2 -2
- retab/resources/documents/client.py +3 -3
- retab/resources/documents/extractions.py +4 -4
- retab/resources/evals.py +1 -1
- retab/resources/evaluations/documents.py +1 -1
- retab/resources/jsonlUtils.py +4 -4
- retab/resources/processors/automations/endpoints.py +1 -1
- retab/resources/processors/automations/mailboxes.py +1 -1
- retab/resources/processors/automations/tests.py +1 -1
- retab/resources/processors/client.py +23 -14
- retab/resources/prompt_optimization.py +1 -1
- retab/resources/schemas.py +3 -3
- retab/types/completions.py +1 -1
- retab/types/documents/create_messages.py +4 -4
- retab/types/documents/extractions.py +1 -1
- retab/types/evals.py +2 -2
- retab/types/evaluations/iterations.py +2 -2
- retab/types/evaluations/model.py +2 -2
- retab/types/extractions.py +1 -1
- retab/types/jobs/prompt_optimization.py +1 -1
- retab/types/logs.py +3 -3
- retab/types/schemas/object.py +4 -4
- retab/types/schemas/templates.py +1 -1
- retab/utils/__init__.py +0 -0
- retab/utils/_model_cards/anthropic.yaml +59 -0
- retab/utils/_model_cards/auto.yaml +43 -0
- retab/utils/_model_cards/gemini.yaml +117 -0
- retab/utils/_model_cards/openai.yaml +301 -0
- retab/utils/_model_cards/xai.yaml +28 -0
- retab/utils/ai_models.py +138 -0
- retab/utils/benchmarking.py +484 -0
- retab/utils/chat.py +327 -0
- retab/utils/display.py +440 -0
- retab/utils/json_schema.py +2156 -0
- retab/utils/mime.py +165 -0
- retab/utils/responses.py +169 -0
- retab/utils/stream_context_managers.py +52 -0
- retab/utils/usage/__init__.py +0 -0
- retab/utils/usage/usage.py +301 -0
- {retab-0.0.40.dist-info → retab-0.0.41.dist-info}/METADATA +5 -5
- {retab-0.0.40.dist-info → retab-0.0.41.dist-info}/RECORD +46 -30
- {retab-0.0.40.dist-info → retab-0.0.41.dist-info}/WHEEL +0 -0
- {retab-0.0.40.dist-info → retab-0.0.41.dist-info}/top_level.txt +0 -0
@@ -1,6 +1,6 @@
|
|
1
1
|
Metadata-Version: 2.1
|
2
2
|
Name: retab
|
3
|
-
Version: 0.0.
|
3
|
+
Version: 0.0.41
|
4
4
|
Summary: Retab official python library
|
5
5
|
Home-page: https://github.com/Retab-dev/retab
|
6
6
|
Author: Retab
|
@@ -45,7 +45,7 @@ Requires-Dist: ruff
|
|
45
45
|
|
46
46
|
<div align="center" style="margin-bottom: 1em;">
|
47
47
|
|
48
|
-
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/retab-logo.png" alt="Retab Logo" width="150">
|
48
|
+
<img src="https://raw.githubusercontent.com/Retab-dev/retab/refs/heads/main/assets/retab-logo.png" alt="Retab Logo" width="150">
|
49
49
|
|
50
50
|
|
51
51
|
*The AI Automation Platform*
|
@@ -95,7 +95,7 @@ You come with your own API key from your favorite AI provider, and we handle the
|
|
95
95
|
We currently support [OpenAI](https://platform.openai.com/docs/overview), [Anthropic](https://www.anthropic.com/api), [Gemini](https://aistudio.google.com/prompts/new_chat) and [xAI](https://x.ai/api) models.
|
96
96
|
|
97
97
|
<p align="center">
|
98
|
-
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/supported_models.png" alt="Supported Models" width="600">
|
98
|
+
<img src="https://raw.githubusercontent.com/Retab-dev/retab/refs/heads/main/assets/supported_models.png" alt="Supported Models" width="600">
|
99
99
|
</p>
|
100
100
|
|
101
101
|
---
|
@@ -105,7 +105,7 @@ We currently support [OpenAI](https://platform.openai.com/docs/overview), [Anthr
|
|
105
105
|
Explore our [Playground](https://www.retab.dev/dashboard/playground) and create your first automations easily 🚀!
|
106
106
|
|
107
107
|
<p align="center">
|
108
|
-
<img src="https://raw.githubusercontent.com/Retab/retab/refs/heads/main/assets/retab-playground.png" alt="Retab Playground" width="600">
|
108
|
+
<img src="https://raw.githubusercontent.com/Retab-dev/retab/refs/heads/main/assets/retab-playground.png" alt="Retab Playground" width="600">
|
109
109
|
</p>
|
110
110
|
|
111
111
|
---
|
@@ -244,7 +244,7 @@ completion = client.beta.chat.completions.parse(
|
|
244
244
|
print("Extracted data:", completion.choices[0].message.parsed)
|
245
245
|
|
246
246
|
# Validate the response against the original schema if you want to remove the reasoning fields
|
247
|
-
from retab.
|
247
|
+
from retab.utils.json_schema import filter_auxiliary_fields_json
|
248
248
|
assert completion.choices[0].message.content is not None
|
249
249
|
extraction = schema_obj.pydantic_model.model_validate(
|
250
250
|
filter_auxiliary_fields_json(completion.choices[0].message.content, schema_obj.pydantic_model)
|
@@ -19,38 +19,38 @@ retab/_utils/_model_cards/xai.yaml,sha256=OdVV33_WODc4UBZhDezcUq_5mHQK5zeOT49EjJ
|
|
19
19
|
retab/_utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
20
20
|
retab/_utils/usage/usage.py,sha256=g2_Co3gaB1Akgbszd-I7ddXMM-EyI7Gz9SI5SdtlBII,12949
|
21
21
|
retab/resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
22
|
-
retab/resources/evals.py,sha256=
|
22
|
+
retab/resources/evals.py,sha256=vOMyCJ0dVy6YZUv4NtkujZBZCByvr0PmSpV6UGnorHw,29927
|
23
23
|
retab/resources/files.py,sha256=-_GejfQjKEk10HHb5npmLOA9cUnVHic2ZQntE8tw4TQ,954
|
24
24
|
retab/resources/finetuning.py,sha256=Rx8XcqB00UIjEDZcCGp5fM2yz5TW1j36aBicrTa0uAY,2587
|
25
|
-
retab/resources/jsonlUtils.py,sha256=
|
25
|
+
retab/resources/jsonlUtils.py,sha256=gv4h3gAxks84r1l09vFVaUkqSGzSu1D0bw-J6lLRf5U,45149
|
26
26
|
retab/resources/models.py,sha256=4WidFBnTGZEA65DSn2pLP2SRnCVXkMTw7o_m8xVCFC4,2469
|
27
27
|
retab/resources/openai_example.py,sha256=yz34KvfCvHTZ-AJ9GV-N7ljTTSWBmQEQNMHY2FUbEi4,522
|
28
|
-
retab/resources/prompt_optimization.py,sha256=
|
29
|
-
retab/resources/schemas.py,sha256=
|
28
|
+
retab/resources/prompt_optimization.py,sha256=MrzRehmFQK4Ltyr1jhLhx3yO22UxtDpmg9B3CDjirFc,3488
|
29
|
+
retab/resources/schemas.py,sha256=zoxhpCO0jIUx0f7VvS6QAbGlHmxtyBVvmyYoi5aFRQg,16054
|
30
30
|
retab/resources/usage.py,sha256=OmJMPwmP1TBuZmMKrjaGWnl2mQ9VbQDKSAm6l7Tsaf4,13601
|
31
31
|
retab/resources/consensus/__init__.py,sha256=0b3MSOFiYPwkNTrs_dBPRhwSl3kuk8BtG5QXofIUb9M,89
|
32
32
|
retab/resources/consensus/client.py,sha256=D2TeqqCp0ZvqvQLAe1i3nW8nnf-Ms6zNEXRA9C26TQI,3705
|
33
|
-
retab/resources/consensus/completions.py,sha256=
|
34
|
-
retab/resources/consensus/completions_stream.py,sha256=
|
35
|
-
retab/resources/consensus/responses.py,sha256=
|
36
|
-
retab/resources/consensus/responses_stream.py,sha256=
|
33
|
+
retab/resources/consensus/completions.py,sha256=6vTnqADY6GueV28smYRDQ2yooj94G2WHMlQLyKOXqtw,8372
|
34
|
+
retab/resources/consensus/completions_stream.py,sha256=JQdOsWunY60nNSsrz3V4SA6OUXx_IxRsKjg1fjq2QSs,10893
|
35
|
+
retab/resources/consensus/responses.py,sha256=av__D_3hs8GlV7RnBnrLmtjq6_DzbWwfSP8lzjiHlw8,9935
|
36
|
+
retab/resources/consensus/responses_stream.py,sha256=OopJ9aoO7HctfhLnXzJx8-dkk-4jK_juOw6jUAkzwVM,11671
|
37
37
|
retab/resources/documents/__init__.py,sha256=OjXmngFN0RKqO4SI-mJBNzr6Ex6rMxfq0DxaqzP0RQs,89
|
38
|
-
retab/resources/documents/client.py,sha256=
|
39
|
-
retab/resources/documents/extractions.py,sha256=
|
38
|
+
retab/resources/documents/client.py,sha256=K1G63fRdd5T-HjmYsoW-6V7hXT8o9L2F15qIGBfWC5c,25361
|
39
|
+
retab/resources/documents/extractions.py,sha256=jMBgirKohgMTsdwX-LQldmvgHVHt-Q2N5810K1tzk9Q,25623
|
40
40
|
retab/resources/evaluations/__init__.py,sha256=3npbUDbxYn3ihnUKV7PRYNBYqL7MZ9AwhQHr7LaIESg,97
|
41
41
|
retab/resources/evaluations/client.py,sha256=SdI-m_8V0BApparlHO1mYFwvjAGWsHBKD_-Z3ZLcdq0,10658
|
42
|
-
retab/resources/evaluations/documents.py,sha256=
|
42
|
+
retab/resources/evaluations/documents.py,sha256=G58AYRpmlGRspwuunwhWB_cqN_Zn5Ukp_f2NAMyxMi4,9489
|
43
43
|
retab/resources/evaluations/iterations.py,sha256=v9kD1tJ-3I0A02zVIwSInKHwPzGhmub7fc5FEBJkT74,17664
|
44
44
|
retab/resources/processors/__init__.py,sha256=w1HrMdSi3xlrcEDFMQ9BA7rbUhOFWSTkTKkkR2PfFHQ,93
|
45
|
-
retab/resources/processors/client.py,sha256=
|
45
|
+
retab/resources/processors/client.py,sha256=s5OddrzUF-kue8-58jbwOfN4a5yk3dgtpMCnlpPjlPU,20710
|
46
46
|
retab/resources/processors/automations/__init__.py,sha256=Iej-_yIxc8xAuhYmR0e2VI7j_EXVsNk1_L98OJSD82E,121
|
47
47
|
retab/resources/processors/automations/client.py,sha256=3w54F0JfC2GYDosLux8LVEjDd_RXqQ29-SyNXGa28U8,10500
|
48
|
-
retab/resources/processors/automations/endpoints.py,sha256=
|
48
|
+
retab/resources/processors/automations/endpoints.py,sha256=EulA5993Kj42uAhcWbnZdYwF5ppColOlOIW0Pz1Ujnc,10895
|
49
49
|
retab/resources/processors/automations/links.py,sha256=HBfpouFBxwjIyDWHyG15XwYRC2lLJLkcywmTUnjQcPI,11449
|
50
50
|
retab/resources/processors/automations/logs.py,sha256=Ft0cH6C2zbm4dLdiQ-3hqC8HU8-23bGOjUGbaauDNAU,8827
|
51
|
-
retab/resources/processors/automations/mailboxes.py,sha256=
|
51
|
+
retab/resources/processors/automations/mailboxes.py,sha256=PAZzkchZdekyesJxo42GGjrCvimUvGfv8E3dBYvjql8,15907
|
52
52
|
retab/resources/processors/automations/outlook.py,sha256=Zj_sVxpDLCNxh1xaTAZ6GMGd26KtFo7QXrmalUpi4xA,14919
|
53
|
-
retab/resources/processors/automations/tests.py,sha256=
|
53
|
+
retab/resources/processors/automations/tests.py,sha256=9LDZltHgHOOoJT1apkvB_aaM96WlzCDPtsoyMN3UWrA,5991
|
54
54
|
retab/resources/secrets/__init__.py,sha256=SwofMyk96k0YSyj1d_GRxhpVx4wb4TA97TISsTjB0Kc,105
|
55
55
|
retab/resources/secrets/client.py,sha256=nXt1cgvkWqhA99WTnC1PWbWJq-EbwvoDuCQOa0GJOOU,599
|
56
56
|
retab/resources/secrets/external_api_keys.py,sha256=3TuJxjk65EPUT2XC3wBcYWaVwqzc6QGv9BoHufzxTLU,3759
|
@@ -59,13 +59,13 @@ retab/types/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
59
59
|
retab/types/ai_models.py,sha256=DFLW6vi45heZGKkMJrAKs6j9K97Sn2N5IEE4hMoQAJs,4896
|
60
60
|
retab/types/browser_canvas.py,sha256=U3yLqJcSwfturcIsNFSblRtFtnG3p-UL1YYoM9KZfdE,70
|
61
61
|
retab/types/chat.py,sha256=l32vhLtNcdmHFjG4iVC617j38x6a2oH7CNPwlvqdF8g,424
|
62
|
-
retab/types/completions.py,sha256=
|
62
|
+
retab/types/completions.py,sha256=ZQU29bm-FhdOzky4_Dp2N--fedR82C3QfCRZCJCQ-P8,5381
|
63
63
|
retab/types/consensus.py,sha256=EsFCsyZK8NhkQ1BizFpnGN54D24hRFKc0xwt9VpH11c,1161
|
64
|
-
retab/types/evals.py,sha256=
|
64
|
+
retab/types/evals.py,sha256=JNdWu4hplfSEuSzu9l27ZVr2RO2opUKEruIpKXZosmU,9953
|
65
65
|
retab/types/events.py,sha256=NrisdzJAaJ_kkfgdsqoiDB-Upm0LnbIGZikU_e9XXWw,2195
|
66
|
-
retab/types/extractions.py,sha256=
|
66
|
+
retab/types/extractions.py,sha256=3l-RW9iUUVHqWBnbfoUO7I3VREAJdDqHUQaNAJ0NKR8,5849
|
67
67
|
retab/types/inference_settings.py,sha256=F_mBPFVY1yAwsHD11Z2ljMf3zkvviOey_JBnu8yEF84,572
|
68
|
-
retab/types/logs.py,sha256=
|
68
|
+
retab/types/logs.py,sha256=uWgul1YpbczzWozuVnBWuVMm6NAZElSE1rXs_O8A98s,9260
|
69
69
|
retab/types/metrics.py,sha256=0KEWUWW13s_tWjh7oUs33ip9TPwI7LZUNGE7k5qNoOo,1947
|
70
70
|
retab/types/mime.py,sha256=Fhq04yQoHhyx5wBjx7GNyJqQQJtcM_yEZt7uQxq6Br4,11038
|
71
71
|
retab/types/modalities.py,sha256=_2iGC_EEZT0Y-7PV_nHar5vqeEdsK7oy7ZJPV681nkg,1581
|
@@ -84,30 +84,46 @@ retab/types/db/annotations.py,sha256=PM-H4zXyRs48s7AAv_sl8kOQo5lThsVvBM0aKJkCpmU
|
|
84
84
|
retab/types/db/files.py,sha256=udJKGplw6a8cF4XUTLN_QAU9-pyEWs4THHX1zyvbx0U,1261
|
85
85
|
retab/types/documents/__init__.py,sha256=RaD6PnvRJw7QEVTh_PYNX6gckpLcxUJH7FKaopRKJzY,114
|
86
86
|
retab/types/documents/correct_orientation.py,sha256=e-ivsslI6L6Gl0YkcslXw_DH620xMGEYVp4tdeviXeM,261
|
87
|
-
retab/types/documents/create_messages.py,sha256=
|
88
|
-
retab/types/documents/extractions.py,sha256=
|
87
|
+
retab/types/documents/create_messages.py,sha256=S2nJ4GHZ3hKTZ4kNs5XrCZeaokOsy9LqRC-FVHkFvSY,10285
|
88
|
+
retab/types/documents/extractions.py,sha256=TyxUmkDbP-OB2LlC6gB5PkJ_z5cyq7atsS2EWKlJ8z0,19112
|
89
89
|
retab/types/documents/parse.py,sha256=WCfwBUsMgYFAZWbuOgCPd2dkcFmi1fYOf21XuiIj4uo,1323
|
90
90
|
retab/types/evaluations/__init__.py,sha256=fRQlK6y3x3SHqaukVYd9_zH8HrUk9TpoG9dlOTuIkcY,920
|
91
91
|
retab/types/evaluations/documents.py,sha256=oy0nqTrv0Pe__5ligeNWn5MbqVDAFRSrXYbCVoLxyXw,1268
|
92
|
-
retab/types/evaluations/iterations.py,sha256=
|
93
|
-
retab/types/evaluations/model.py,sha256=
|
92
|
+
retab/types/evaluations/iterations.py,sha256=lVHcqmIT0AtJyn7dc_Mw-WbeA0gfTUG1KoifCOFPIkg,4635
|
93
|
+
retab/types/evaluations/model.py,sha256=_ArYgSP51nh__-0MxzGxWUl8bvISX9Dm6juuybKb6yA,3131
|
94
94
|
retab/types/jobs/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
95
95
|
retab/types/jobs/base.py,sha256=R4UXcvgDmkgm4FB0ke5kQrSDWC95TweBLlc08ptfqt8,1695
|
96
96
|
retab/types/jobs/batch_annotation.py,sha256=Rftuu4Q6YzB4c39kWsqPGJ1QbPJrJWjWhupaKGO9kGE,281
|
97
97
|
retab/types/jobs/evaluation.py,sha256=R3Itl721bybXXnBCqU16C0gl5EAwTdcf_HZySkI_wsA,4524
|
98
98
|
retab/types/jobs/finetune.py,sha256=6O9NUy-ap_aqZ73tYx-NRRdFgKOIvk8WcItGhEUvrSQ,187
|
99
|
-
retab/types/jobs/prompt_optimization.py,sha256=
|
99
|
+
retab/types/jobs/prompt_optimization.py,sha256=P7JI0zKFExCN4ws8kpFrCHBFbrJ4m4-zGJnNVXWa-ic,1306
|
100
100
|
retab/types/jobs/webcrawl.py,sha256=C3_7mW2mmOXs6ypktDIHdjMnify90pFo70wmhrs_TP8,183
|
101
101
|
retab/types/schemas/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
102
102
|
retab/types/schemas/enhance.py,sha256=bkfkC_JCDvEolOdrp27rHbO1njEyrLJAM7qgwHGUYQk,2162
|
103
103
|
retab/types/schemas/evaluate.py,sha256=M9ZMv2FCcnSRGYBR3CUbCA88pW66EZEZC1YwoJUOei0,2206
|
104
104
|
retab/types/schemas/generate.py,sha256=pb6e6yJ2KPswmNHNkFcRhata7B698yBLnzlFVspJ9mE,1194
|
105
105
|
retab/types/schemas/layout.py,sha256=JLPwQGIWfPBoe1Y5r-MhiNDJigzZ-yKZnVGgox0uqMk,1487
|
106
|
-
retab/types/schemas/object.py,sha256=
|
107
|
-
retab/types/schemas/templates.py,sha256=
|
106
|
+
retab/types/schemas/object.py,sha256=JLjeNfV9swAkTgmZo9DtQRNhUQnJmWK3yGeL3BE41Yo,25470
|
107
|
+
retab/types/schemas/templates.py,sha256=Of4gYULkxULhMOv1X1zXe9pd7o3b21vDUF4BYSouAsc,3465
|
108
108
|
retab/types/secrets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
109
109
|
retab/types/secrets/external_api_keys.py,sha256=-yaaOfNLxKpll3oD-0htQlW8S03lyWs9Mmk9HOdyQ3g,437
|
110
|
-
retab
|
111
|
-
retab
|
112
|
-
retab
|
113
|
-
retab
|
110
|
+
retab/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
111
|
+
retab/utils/ai_models.py,sha256=u0SDwSd3SNhJaFm6bPepiGIh4BbocGYDKk4qu3kVIxc,4821
|
112
|
+
retab/utils/benchmarking.py,sha256=ZSuVcRkYr4gD90yezAv6TuKaFdj2ulc5d5x3lXLbQss,17849
|
113
|
+
retab/utils/chat.py,sha256=ZHt6oEX2lZl8O0tIj-rHnqgmDbHxMYEWPkx0fArvojo,14352
|
114
|
+
retab/utils/display.py,sha256=ZFPbiBnwEWGR-suS8e9Xilz9OqyYRDwsKYWfbFSJPJM,18868
|
115
|
+
retab/utils/json_schema.py,sha256=vbIg4NqREBq_eNbYdBTGw5ykhUmKkSiVRAahAOrWEZg,82237
|
116
|
+
retab/utils/mime.py,sha256=S6pH_CmDc7fnb14PIoK3XALwb_Quha34a112joyUNmY,5723
|
117
|
+
retab/utils/responses.py,sha256=MqY6G9OCLMJhCZcT5uhky5xv_IRqI43aXRjvBU-L58E,7023
|
118
|
+
retab/utils/stream_context_managers.py,sha256=gI1gVQSj3nWz6Mvjz7Ix5AiY0g6vSL-c2tPfuP04izo,2314
|
119
|
+
retab/utils/_model_cards/anthropic.yaml,sha256=faGKfsNNvi3Wgu2sFseV5KVOseJClHBPPdBVv6nWyXo,1413
|
120
|
+
retab/utils/_model_cards/auto.yaml,sha256=3nMlz9K2l5dNSTk-7zi2Id5oohM2L3E2_di2J6UpfdM,1048
|
121
|
+
retab/utils/_model_cards/gemini.yaml,sha256=irV9c0WumgEOIYbAkR2jsisfK_4dY1Tzja2D1j1euF0,2870
|
122
|
+
retab/utils/_model_cards/openai.yaml,sha256=PcmjqAioomqWOw25H4BluVfJ1WO_zapg_nPxORUR7JM,7639
|
123
|
+
retab/utils/_model_cards/xai.yaml,sha256=OdVV33_WODc4UBZhDezcUq_5mHQK5zeOT49EjJUJ764,612
|
124
|
+
retab/utils/usage/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
125
|
+
retab/utils/usage/usage.py,sha256=PoQAMSWqEXYIRdp-JW9HjecFVitD_oMbxDMtDJdqWnQ,12948
|
126
|
+
retab-0.0.41.dist-info/METADATA,sha256=XhOqB_OlYbAsLh0tB4ce8gKqBrQnM-7QG9oTFCMPcNs,14142
|
127
|
+
retab-0.0.41.dist-info/WHEEL,sha256=HiCZjzuy6Dw0hdX5R3LCFPDmFS4BWl8H-8W39XfmgX4,91
|
128
|
+
retab-0.0.41.dist-info/top_level.txt,sha256=waQR0EGdhLIQtztoE3AXg7ik5ONQ9q_bsKVpyFuJdq0,6
|
129
|
+
retab-0.0.41.dist-info/RECORD,,
|
File without changes
|
File without changes
|