minikai 0.1.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 minikai might be problematic. Click here for more details.

Files changed (87) hide show
  1. minikai/__init__.py +8 -0
  2. minikai/api/__init__.py +1 -0
  3. minikai/api/groups/__init__.py +1 -0
  4. minikai/api/groups/add_minis_to_group.py +176 -0
  5. minikai/api/groups/add_users_to_group.py +176 -0
  6. minikai/api/groups/create_group.py +160 -0
  7. minikai/api/groups/delete_group.py +95 -0
  8. minikai/api/groups/get_group.py +151 -0
  9. minikai/api/groups/get_group_minis.py +156 -0
  10. minikai/api/groups/get_group_users.py +156 -0
  11. minikai/api/groups/get_groups.py +128 -0
  12. minikai/api/groups/remove_minis_from_group.py +176 -0
  13. minikai/api/groups/remove_users_from_group.py +176 -0
  14. minikai/api/groups/update_group.py +177 -0
  15. minikai/api/minis/__init__.py +1 -0
  16. minikai/api/minis/create_mini.py +160 -0
  17. minikai/api/minis/delete_mini.py +95 -0
  18. minikai/api/minis/get_external_mini.py +164 -0
  19. minikai/api/minis/get_minis.py +128 -0
  20. minikai/api/minis/patch_mini.py +177 -0
  21. minikai/api/minis/update_mini.py +177 -0
  22. minikai/api/records/__init__.py +1 -0
  23. minikai/api/records/add_attachments.py +182 -0
  24. minikai/api/records/add_relations.py +187 -0
  25. minikai/api/records/create_record.py +162 -0
  26. minikai/api/records/delete_record.py +95 -0
  27. minikai/api/records/get_records_by_external.py +230 -0
  28. minikai/api/records/remove_attachments.py +110 -0
  29. minikai/api/records/remove_relations.py +110 -0
  30. minikai/api/records/update_attachments.py +182 -0
  31. minikai/api/records/update_record.py +179 -0
  32. minikai/api/records/update_relations.py +187 -0
  33. minikai/api/users/__init__.py +1 -0
  34. minikai/api/users/delete_api_users_minis.py +102 -0
  35. minikai/api/users/get_api_users_minis.py +156 -0
  36. minikai/api/users/get_users.py +128 -0
  37. minikai/api/users/post_api_users_minis.py +168 -0
  38. minikai/client.py +268 -0
  39. minikai/errors.py +16 -0
  40. minikai/models/__init__.py +89 -0
  41. minikai/models/add_attachments_body.py +98 -0
  42. minikai/models/create_group_command.py +102 -0
  43. minikai/models/create_mini_command.py +120 -0
  44. minikai/models/create_record_command.py +268 -0
  45. minikai/models/create_record_command_tags.py +44 -0
  46. minikai/models/document_file_dto.py +147 -0
  47. minikai/models/form_field.py +112 -0
  48. minikai/models/form_field_dto.py +149 -0
  49. minikai/models/form_field_type.py +16 -0
  50. minikai/models/group_dto.py +124 -0
  51. minikai/models/http_validation_problem_details.py +173 -0
  52. minikai/models/http_validation_problem_details_errors.py +51 -0
  53. minikai/models/json_node.py +119 -0
  54. minikai/models/json_node_options.py +42 -0
  55. minikai/models/mini_dto.py +189 -0
  56. minikai/models/mini_template_dto.py +135 -0
  57. minikai/models/paginated_list_of_record_dto.py +101 -0
  58. minikai/models/patch_mini_command.py +80 -0
  59. minikai/models/problem_details.py +151 -0
  60. minikai/models/record.py +379 -0
  61. minikai/models/record_attachment.py +236 -0
  62. minikai/models/record_attachment_dto.py +236 -0
  63. minikai/models/record_attachment_dto_metadata_type_0.py +44 -0
  64. minikai/models/record_attachment_metadata_type_0.py +44 -0
  65. minikai/models/record_authorization.py +75 -0
  66. minikai/models/record_authorization_dto.py +75 -0
  67. minikai/models/record_dto.py +377 -0
  68. minikai/models/record_dto_tags.py +44 -0
  69. minikai/models/record_relation.py +81 -0
  70. minikai/models/record_relation_dto.py +81 -0
  71. minikai/models/record_tags.py +44 -0
  72. minikai/models/slim_mini_dto.py +168 -0
  73. minikai/models/tool_dto.py +76 -0
  74. minikai/models/update_attachments_body.py +98 -0
  75. minikai/models/update_group_command.py +122 -0
  76. minikai/models/update_mini_command.py +129 -0
  77. minikai/models/update_mini_template_workspaces_command.py +51 -0
  78. minikai/models/update_record_command.py +266 -0
  79. minikai/models/update_record_command_tags.py +44 -0
  80. minikai/models/user_dto.py +182 -0
  81. minikai/models/user_to_mini_dto.py +78 -0
  82. minikai/models/workspace_dto.py +78 -0
  83. minikai/py.typed +1 -0
  84. minikai/types.py +54 -0
  85. minikai-0.1.0.dist-info/METADATA +133 -0
  86. minikai-0.1.0.dist-info/RECORD +87 -0
  87. minikai-0.1.0.dist-info/WHEEL +4 -0
@@ -0,0 +1,133 @@
1
+ Metadata-Version: 2.3
2
+ Name: minikai
3
+ Version: 0.1.0
4
+ Summary: A client library for accessing Minikai API
5
+ Requires-Dist: httpx>=0.23.0,<0.29.0
6
+ Requires-Dist: attrs>=22.2.0
7
+ Requires-Dist: python-dateutil>=2.8.0,<3
8
+ Requires-Python: >=3.11
9
+ Description-Content-Type: text/markdown
10
+
11
+ # minikai
12
+ A client library for accessing Minikai API
13
+
14
+ ## Usage
15
+ First, create a client:
16
+
17
+ ```python
18
+ from minikai import Client
19
+
20
+ client = Client(base_url="https://api.example.com")
21
+ ```
22
+
23
+ If the endpoints you're going to hit require authentication, use `AuthenticatedClient` instead:
24
+
25
+ ```python
26
+ from minikai import AuthenticatedClient
27
+
28
+ client = AuthenticatedClient(base_url="https://api.example.com", token="SuperSecretToken")
29
+ ```
30
+
31
+ Now call your endpoint and use your models:
32
+
33
+ ```python
34
+ from minikai.models import MyDataModel
35
+ from minikai.api.my_tag import get_my_data_model
36
+ from minikai.types import Response
37
+
38
+ with client as client:
39
+ my_data: MyDataModel = get_my_data_model.sync(client=client)
40
+ # or if you need more info (e.g. status_code)
41
+ response: Response[MyDataModel] = get_my_data_model.sync_detailed(client=client)
42
+ ```
43
+
44
+ Or do the same thing with an async version:
45
+
46
+ ```python
47
+ from minikai.models import MyDataModel
48
+ from minikai.api.my_tag import get_my_data_model
49
+ from minikai.types import Response
50
+
51
+ async with client as client:
52
+ my_data: MyDataModel = await get_my_data_model.asyncio(client=client)
53
+ response: Response[MyDataModel] = await get_my_data_model.asyncio_detailed(client=client)
54
+ ```
55
+
56
+ By default, when you're calling an HTTPS API it will attempt to verify that SSL is working correctly. Using certificate verification is highly recommended most of the time, but sometimes you may need to authenticate to a server (especially an internal server) using a custom certificate bundle.
57
+
58
+ ```python
59
+ client = AuthenticatedClient(
60
+ base_url="https://internal_api.example.com",
61
+ token="SuperSecretToken",
62
+ verify_ssl="/path/to/certificate_bundle.pem",
63
+ )
64
+ ```
65
+
66
+ You can also disable certificate validation altogether, but beware that **this is a security risk**.
67
+
68
+ ```python
69
+ client = AuthenticatedClient(
70
+ base_url="https://internal_api.example.com",
71
+ token="SuperSecretToken",
72
+ verify_ssl=False
73
+ )
74
+ ```
75
+
76
+ Things to know:
77
+ 1. Every path/method combo becomes a Python module with four functions:
78
+ 1. `sync`: Blocking request that returns parsed data (if successful) or `None`
79
+ 1. `sync_detailed`: Blocking request that always returns a `Request`, optionally with `parsed` set if the request was successful.
80
+ 1. `asyncio`: Like `sync` but async instead of blocking
81
+ 1. `asyncio_detailed`: Like `sync_detailed` but async instead of blocking
82
+
83
+ 1. All path/query params, and bodies become method arguments.
84
+ 1. If your endpoint had any tags on it, the first tag will be used as a module name for the function (my_tag above)
85
+ 1. Any endpoint which did not have a tag will be in `minikai.api.default`
86
+
87
+ ## Advanced customizations
88
+
89
+ There are more settings on the generated `Client` class which let you control more runtime behavior, check out the docstring on that class for more info. You can also customize the underlying `httpx.Client` or `httpx.AsyncClient` (depending on your use-case):
90
+
91
+ ```python
92
+ from minikai import Client
93
+
94
+ def log_request(request):
95
+ print(f"Request event hook: {request.method} {request.url} - Waiting for response")
96
+
97
+ def log_response(response):
98
+ request = response.request
99
+ print(f"Response event hook: {request.method} {request.url} - Status {response.status_code}")
100
+
101
+ client = Client(
102
+ base_url="https://api.example.com",
103
+ httpx_args={"event_hooks": {"request": [log_request], "response": [log_response]}},
104
+ )
105
+
106
+ # Or get the underlying httpx client to modify directly with client.get_httpx_client() or client.get_async_httpx_client()
107
+ ```
108
+
109
+ You can even set the httpx client directly, but beware that this will override any existing settings (e.g., base_url):
110
+
111
+ ```python
112
+ import httpx
113
+ from minikai import Client
114
+
115
+ client = Client(
116
+ base_url="https://api.example.com",
117
+ )
118
+ # Note that base_url needs to be re-set, as would any shared cookies, headers, etc.
119
+ client.set_httpx_client(httpx.Client(base_url="https://api.example.com", proxies="http://localhost:8030"))
120
+ ```
121
+
122
+ ## Building / publishing this package
123
+ This project uses [uv](https://github.com/astral-sh/uv) to manage dependencies and packaging. Here are the basics:
124
+ 1. Update the metadata in `pyproject.toml` (e.g. authors, version).
125
+ 2. If you're using a private repository: https://docs.astral.sh/uv/guides/integration/alternative-indexes/
126
+ 3. Build a distribution with `uv build`, builds `sdist` and `wheel` by default.
127
+ 1. Publish the client with `uv publish`, see documentation for publishing to private indexes.
128
+
129
+ If you want to install this client into another project without publishing it (e.g. for development) then:
130
+ 1. If that project **is using uv**, you can simply do `uv add <path-to-this-client>` from that project
131
+ 1. If that project is not using uv:
132
+ 1. Build a wheel with `uv build --wheel`.
133
+ 1. Install that wheel from the other project `pip install <path-to-wheel>`.
@@ -0,0 +1,87 @@
1
+ minikai/__init__.py,sha256=bDxJYlbS0p_Ilt_mmdIQaUI2QEMzAVIsrFtb_8ei-K4,154
2
+ minikai/api/__init__.py,sha256=zTSiG_ujSjAqWPyc435YXaX9XTlpMjiJWBbV-f-YtdA,45
3
+ minikai/api/groups/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
4
+ minikai/api/groups/add_minis_to_group.py,sha256=5UOGEl_qGFxTDAMk79ulPJvOdFBRXC_Snt2gd6qqoOA,4522
5
+ minikai/api/groups/add_users_to_group.py,sha256=0TJ_sUbqPdcFILYmsTGiuK9mDmCB6nvshpXmaidyMzE,4522
6
+ minikai/api/groups/create_group.py,sha256=jdTe8kthCZh9H3HRCXAxWPGh3Fukd7P3njLQKUIBfKQ,4260
7
+ minikai/api/groups/delete_group.py,sha256=tGwVETgyKL5c3OAkiS1MEWJAyawF8Jw90bCQT2BqaEc,2328
8
+ minikai/api/groups/get_group.py,sha256=zqAJHDe9MboCwWoT-tAZIHSrkYD2jxpIvOg4VUYR0zU,3707
9
+ minikai/api/groups/get_group_minis.py,sha256=9AB-ShILwqwsRaeOsAaVZkkhdvDLBwNlecx7HvwwYYw,4020
10
+ minikai/api/groups/get_group_users.py,sha256=XyYEec7PZTqRnWdVwsnX4_TeMyusk2FiqhBfzmSjErw,3967
11
+ minikai/api/groups/get_groups.py,sha256=cCYU-Az9JI4bXQoN-Ysr4_m8x49erImCNFLCm8OW2gU,3374
12
+ minikai/api/groups/remove_minis_from_group.py,sha256=5z0gM5QLN-g2tVQRLWyRNMW4KOsHTVEq_r2KCjOPMhk,4523
13
+ minikai/api/groups/remove_users_from_group.py,sha256=_izwVp895ARSwKs22eHO1Z9b1B6a5AMmUjRXNbMvXL0,4523
14
+ minikai/api/groups/update_group.py,sha256=YHE1qs2fZDbsRcduuUsjH-GY8XbrRY-Uqk7lOTEad9I,4667
15
+ minikai/api/minis/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
16
+ minikai/api/minis/create_mini.py,sha256=s4Frs9wOD1TOT3QcRwlNGEs55Lu5Ae9-HriCCB0IR6k,4248
17
+ minikai/api/minis/delete_mini.py,sha256=Vq8abeBL9T3RRzG7gVO60fiA48OAJz6pMdKe1MqKKEU,2267
18
+ minikai/api/minis/get_external_mini.py,sha256=Pjr3b0ikvOJsWIpW_9jPdymzJewYkUlSEJSfym4EnGQ,4240
19
+ minikai/api/minis/get_minis.py,sha256=wbltz-LcAFLf2ddPSveg5n5kzRxuqWpSxqWfynlMzEU,3413
20
+ minikai/api/minis/patch_mini.py,sha256=q2E0SY__B_GrRmHttH2uF0DJr3pgpyJJDOL5fiyhcDw,4538
21
+ minikai/api/minis/update_mini.py,sha256=YkvSM6m_t8pJYVS3WY4GocR_yVM5M0buVJTc7DLGXNQ,4547
22
+ minikai/api/records/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
23
+ minikai/api/records/add_attachments.py,sha256=7QEbNi20pdw9vdjj_XC8uczYkAfrY9neZVwN6hllBEw,5188
24
+ minikai/api/records/add_relations.py,sha256=jEdj2KaPJUhbZPEaaIrPE6_9PnAMW3tLkjndDKP4TmE,5372
25
+ minikai/api/records/create_record.py,sha256=TeOv9p05qljhnbdGTXmCeL5RX31ToH9SqgVd0LCbIe4,4340
26
+ minikai/api/records/delete_record.py,sha256=T9O0aMAgDMus68-vz4xgBFYogzn-n0X9RC6gLRRYTe0,2339
27
+ minikai/api/records/get_records_by_external.py,sha256=hUJL-jW7VWrE18pyiCjMqxedqEIt37o8QgLuQ5Ujih4,6589
28
+ minikai/api/records/remove_attachments.py,sha256=spmrfOusxS_lYIIO_C_Oa1amVEBYwFgtXv9fUq1S0YE,2656
29
+ minikai/api/records/remove_relations.py,sha256=BfpGSRNXMe70_KL__oJWkX1lWNo1S5UcvWST5ISbd-c,2654
30
+ minikai/api/records/update_attachments.py,sha256=IXYBdhvUchM4gTLyNkcC1orUIgly4YoCIa9PPiR0SMQ,5220
31
+ minikai/api/records/update_record.py,sha256=OXDEvMS33s330K5Z7PJb273MrWibTHEELzfN_Zh48FI,4832
32
+ minikai/api/records/update_relations.py,sha256=OkJVDZAWDo3HvWbAnPrGO0-UJN0KUOkV4kxDlpCqZoE,5371
33
+ minikai/api/users/__init__.py,sha256=5vd9uJWAjRqa9xzxzYkLD1yoZ12Ld_bAaNB5WX4fbE8,56
34
+ minikai/api/users/delete_api_users_minis.py,sha256=YgjQcPLMyywyP-JScixxDpnQCQN0zelOsx0KgvZDPQQ,2483
35
+ minikai/api/users/get_api_users_minis.py,sha256=beXtzAkvfobcgNFR2r2T49U1WwlTNwCwWrRU-iNxHao,4028
36
+ minikai/api/users/get_users.py,sha256=ExChMQsAkGZtNwqcbXB_qfED2Jsd5jvjzK3I_ePvP54,3360
37
+ minikai/api/users/post_api_users_minis.py,sha256=4eVgu3YUkQgccnLZF6gbF2Ww84mw69Fl360SJWVRdz4,4357
38
+ minikai/client.py,sha256=o_mdLqyBCQstu5tS1WZFwqIEbGwkvWQ7eQjuCJw_5VY,12419
39
+ minikai/errors.py,sha256=gO8GBmKqmSNgAg-E5oT-oOyxztvp7V_6XG7OUTT15q0,546
40
+ minikai/models/__init__.py,sha256=zMnN_mbmJOrkw5W5Mfu-DZkBl91UbNG_OBd7XiXkK1Q,3230
41
+ minikai/models/add_attachments_body.py,sha256=np36SL3_Py5sUVlCOf2jJHJF6FmqidJGe-vteFjt1V0,2978
42
+ minikai/models/create_group_command.py,sha256=WfXciuwR85Y0kqh5F0iROYlcwPOgBHnz4sq0UHtZLho,2933
43
+ minikai/models/create_mini_command.py,sha256=fKmwk0Wp3YdP1BTLi1si4AnIdF-S7_NA9oEir3tylMA,3813
44
+ minikai/models/create_record_command.py,sha256=WQv-XDLrrc7vzUl5rBn8EyoPkAm4XluNoDFJ1bTiKM8,9331
45
+ minikai/models/create_record_command_tags.py,sha256=qy-p7rbmO10tpGhuvZ9d7AWeEK0s3cqtHR6GYDG4xLM,1266
46
+ minikai/models/document_file_dto.py,sha256=WA2aPEU-3QaiaoZY517U0yBT8ILk2JR7V5oFpzZuNgE,4463
47
+ minikai/models/form_field.py,sha256=brytoYNq4PuOIGVVACog_5WEnn3jqwM6eNCXd069ogE,3472
48
+ minikai/models/form_field_dto.py,sha256=hqBxSf8DKRNmGzQn3V3nrKZsBxDag-v0Mi4DFsmHEvg,4710
49
+ minikai/models/form_field_type.py,sha256=OMo319xc6XGsaoE_tuGnQi6Qp9s0KupuqZkicGINLIY,441
50
+ minikai/models/group_dto.py,sha256=WBlxypU9MuDQHwwd__WK71EoM3VnpcZY27pxAjNBFo8,3611
51
+ minikai/models/http_validation_problem_details.py,sha256=ZIf_sx7K7jYWyg8KUx_frZfOtmbkOJDpapWUyPoDruI,5529
52
+ minikai/models/http_validation_problem_details_errors.py,sha256=8cM96oZM3pavAnzS91PMOSliYOlVIqkRoE2vxkVmMGw,1634
53
+ minikai/models/json_node.py,sha256=Yx-NmRC69FvMcyX9YZWuQO_uwbr1sOcZ9E_GW6swiDI,3795
54
+ minikai/models/json_node_options.py,sha256=h1kCNJO117iMpb0bQGmr4KbDElshyeBP_E8wpviZMQY,1248
55
+ minikai/models/mini_dto.py,sha256=ENN0T7uPOc3v0sCjsERdmrdWMpyOpXg_H1aQuO-N2KA,6484
56
+ minikai/models/mini_template_dto.py,sha256=QCXA-rluSN48Z9MzMTtBhi-VjWCZ89aK9SMdEALS7-E,4207
57
+ minikai/models/paginated_list_of_record_dto.py,sha256=4N6Jm-ew-xtV-2keycAH9kiNbewvJcm-CHemlNCkeOs,3023
58
+ minikai/models/patch_mini_command.py,sha256=vXLwox3R-dH7XhUV4CTDEtcpjub0RH95OaaDydOROmI,2157
59
+ minikai/models/problem_details.py,sha256=xHnEtHdx3CYpY4XlcX0MmhcYuMln4d7UhLxyEW7QgDA,4570
60
+ minikai/models/record.py,sha256=YqR613GkoabQrsffJsFQkxHUcBZjFWanyxKDGNAKm7U,13004
61
+ minikai/models/record_attachment.py,sha256=wjEXL0C4cRbz_taFpaQG3kk7sd9A4fmySD7A1GhVD-A,7764
62
+ minikai/models/record_attachment_dto.py,sha256=JrYpftW8wSUUQTK4PtVtRal-UsuiBsAHYf6zk-k6vvc,7817
63
+ minikai/models/record_attachment_dto_metadata_type_0.py,sha256=kYRTlJ3C5KUymVETCGwfiPKXKsXMRRlFc7B-M1AuwGA,1317
64
+ minikai/models/record_attachment_metadata_type_0.py,sha256=gCNbMqc3R1-dUEYwaXdgbOhd3QCBBHpZZwqzbOlgZHk,1299
65
+ minikai/models/record_authorization.py,sha256=gYKNxyJrmbDUFnh13r3xu0IwtnFRfWfFwQXkwF8PLVg,2204
66
+ minikai/models/record_authorization_dto.py,sha256=RmZK6ftYC5lq9Qqp4Sopz46nWRKuxFPfjlg1oyDos0o,2218
67
+ minikai/models/record_dto.py,sha256=8k0Gt0rPpkmcvV7aX-2tROTgHauqZG_izdh5CzTNt68,13132
68
+ minikai/models/record_dto_tags.py,sha256=4GYfuFYsX0oElH6z5S75ckbzC2kncRhbfvSve-vzgfc,1213
69
+ minikai/models/record_relation.py,sha256=ALuCYYhwxeRfUDWXiC9yz9YLFbJoHoUjrMemlQpofpg,2192
70
+ minikai/models/record_relation_dto.py,sha256=7YPZY01nB62zhfBnrBqi5U-exFm2-65zkpwxAF2YuEU,2206
71
+ minikai/models/record_tags.py,sha256=Z-tysoLNxu8ZQP7uxAsbF6B_6wDPr9hcVs7vj7AbQE8,1195
72
+ minikai/models/slim_mini_dto.py,sha256=8gZLJj57sYeAhTVwyaKbc5nExpKDPIIsRNWlgD2LLpI,5468
73
+ minikai/models/tool_dto.py,sha256=uZhnmNApq0cnLqaiRI3OXAos0APyvT2s3CqlFtmLEUg,1804
74
+ minikai/models/update_attachments_body.py,sha256=BM4ture7dH39-tECpzAPQ-_QI4Jp4x52Wrv1KRSIOjk,2993
75
+ minikai/models/update_group_command.py,sha256=S1AhY90_5ocb0DFL9cgP9OMN6W2whJ4y0IKylrkUFec,3593
76
+ minikai/models/update_mini_command.py,sha256=d3Z_PSO1wcIYryWJkqEcvlPRQx9TaEWf1vQqq5zmIMc,4015
77
+ minikai/models/update_mini_template_workspaces_command.py,sha256=2y-VtUbuaRCs6HgwLLMOd1Pzrfz_xBIfx0x_jrXqVIk,1502
78
+ minikai/models/update_record_command.py,sha256=VTBfCnbqpOEbh8pbRYY7FOvvQTNL-ntX4c2BSpjGwjg,9139
79
+ minikai/models/update_record_command_tags.py,sha256=1B-x8o6dV3EZxGZH-ISC-dDW3DUz4zYy9jMgu_ZKf0w,1266
80
+ minikai/models/user_dto.py,sha256=AsHwJc0tgTljI8dZFlnwK9XskPUBJsIvy9oAWXRXT8s,6085
81
+ minikai/models/user_to_mini_dto.py,sha256=bgoXYiideROMOl9xMXW6iLmCQcRqKYnsdpkypkEMIYE,2192
82
+ minikai/models/workspace_dto.py,sha256=GR-B1mSyBg-C2OflGN3iZEJ8Fy-DZGfSbO4m8JzdTy8,2117
83
+ minikai/py.typed,sha256=8ZJUsxZiuOy1oJeVhsTWQhTG_6pTVHVXk5hJL79ebTk,25
84
+ minikai/types.py,sha256=AX4orxQZQJat3vZrgjJ-TYb2sNBL8kNo9yqYDT-n8y8,1391
85
+ minikai-0.1.0.dist-info/WHEEL,sha256=eh7sammvW2TypMMMGKgsM83HyA_3qQ5Lgg3ynoecH3M,79
86
+ minikai-0.1.0.dist-info/METADATA,sha256=IP6tqJqXThPV80YT15kCgDuWRqJiuTGb9nWb-GJETw4,5087
87
+ minikai-0.1.0.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: uv 0.8.24
3
+ Root-Is-Purelib: true
4
+ Tag: py3-none-any