isaacus 0.9.1__py3-none-any.whl → 0.10.1__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.
- isaacus/_base_client.py +145 -13
- isaacus/_client.py +216 -46
- isaacus/_compat.py +3 -3
- isaacus/_models.py +53 -16
- isaacus/_streaming.py +12 -12
- isaacus/_types.py +12 -2
- isaacus/_utils/_json.py +35 -0
- isaacus/_utils/_sync.py +3 -31
- isaacus/_utils/_utils.py +1 -1
- isaacus/_version.py +1 -1
- isaacus/resources/__init__.py +14 -0
- isaacus/resources/enrichments.py +224 -0
- isaacus/resources/rerankings.py +2 -2
- isaacus/types/__init__.py +2 -0
- isaacus/types/classifications/universal_classification_response.py +2 -0
- isaacus/types/classifications/universal_create_params.py +3 -1
- isaacus/types/embedding_response.py +2 -0
- isaacus/types/enrichment_create_params.py +40 -0
- isaacus/types/enrichment_response.py +1458 -0
- isaacus/types/extractions/answer_extraction_response.py +8 -0
- isaacus/types/extractions/qa_create_params.py +3 -1
- isaacus/types/reranking_create_params.py +3 -1
- isaacus/types/reranking_response.py +2 -0
- {isaacus-0.9.1.dist-info → isaacus-0.10.1.dist-info}/METADATA +24 -6
- {isaacus-0.9.1.dist-info → isaacus-0.10.1.dist-info}/RECORD +27 -23
- {isaacus-0.9.1.dist-info → isaacus-0.10.1.dist-info}/licenses/LICENSE +1 -1
- {isaacus-0.9.1.dist-info → isaacus-0.10.1.dist-info}/WHEEL +0 -0
|
@@ -8,6 +8,8 @@ __all__ = ["AnswerExtractionResponse", "Extraction", "ExtractionAnswer", "Usage"
|
|
|
8
8
|
|
|
9
9
|
|
|
10
10
|
class ExtractionAnswer(BaseModel):
|
|
11
|
+
"""An answer extracted from a text."""
|
|
12
|
+
|
|
11
13
|
end: int
|
|
12
14
|
"""
|
|
13
15
|
The index of the character immediately after the last character of the answer in
|
|
@@ -31,6 +33,8 @@ class ExtractionAnswer(BaseModel):
|
|
|
31
33
|
|
|
32
34
|
|
|
33
35
|
class Extraction(BaseModel):
|
|
36
|
+
"""The result of extracting answers from a text."""
|
|
37
|
+
|
|
34
38
|
answers: List[ExtractionAnswer]
|
|
35
39
|
"""Answers extracted from the text, ordered from highest to lowest score."""
|
|
36
40
|
|
|
@@ -53,6 +57,10 @@ class Extraction(BaseModel):
|
|
|
53
57
|
|
|
54
58
|
|
|
55
59
|
class Usage(BaseModel):
|
|
60
|
+
"""
|
|
61
|
+
Statistics about the usage of resources in the process of extracting answers from the texts.
|
|
62
|
+
"""
|
|
63
|
+
|
|
56
64
|
input_tokens: int
|
|
57
65
|
"""The number of tokens inputted to the model."""
|
|
58
66
|
|
|
@@ -57,11 +57,13 @@ class QaCreateParams(TypedDict, total=False):
|
|
|
57
57
|
|
|
58
58
|
|
|
59
59
|
class ChunkingOptions(TypedDict, total=False):
|
|
60
|
+
"""Options for how to split text into smaller chunks."""
|
|
61
|
+
|
|
60
62
|
overlap_ratio: Optional[float]
|
|
61
63
|
"""A number greater than or equal to 0 and less than 1."""
|
|
62
64
|
|
|
63
65
|
overlap_tokens: Optional[int]
|
|
64
|
-
"""A whole number greater than
|
|
66
|
+
"""A whole number greater than or equal to 0."""
|
|
65
67
|
|
|
66
68
|
size: Optional[int]
|
|
67
69
|
"""A whole number greater than or equal to 1."""
|
|
@@ -67,11 +67,13 @@ class RerankingCreateParams(TypedDict, total=False):
|
|
|
67
67
|
|
|
68
68
|
|
|
69
69
|
class ChunkingOptions(TypedDict, total=False):
|
|
70
|
+
"""Options for how to split text into smaller chunks."""
|
|
71
|
+
|
|
70
72
|
overlap_ratio: Optional[float]
|
|
71
73
|
"""A number greater than or equal to 0 and less than 1."""
|
|
72
74
|
|
|
73
75
|
overlap_tokens: Optional[int]
|
|
74
|
-
"""A whole number greater than
|
|
76
|
+
"""A whole number greater than or equal to 0."""
|
|
75
77
|
|
|
76
78
|
size: Optional[int]
|
|
77
79
|
"""A whole number greater than or equal to 1."""
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.3
|
|
2
2
|
Name: isaacus
|
|
3
|
-
Version: 0.
|
|
3
|
+
Version: 0.10.1
|
|
4
4
|
Summary: The official Python library for the isaacus API
|
|
5
5
|
Project-URL: Homepage, https://github.com/isaacus-dev/isaacus-python
|
|
6
6
|
Project-URL: Repository, https://github.com/isaacus-dev/isaacus-python
|
|
@@ -13,15 +13,15 @@ Classifier: Operating System :: Microsoft :: Windows
|
|
|
13
13
|
Classifier: Operating System :: OS Independent
|
|
14
14
|
Classifier: Operating System :: POSIX
|
|
15
15
|
Classifier: Operating System :: POSIX :: Linux
|
|
16
|
-
Classifier: Programming Language :: Python :: 3.8
|
|
17
16
|
Classifier: Programming Language :: Python :: 3.9
|
|
18
17
|
Classifier: Programming Language :: Python :: 3.10
|
|
19
18
|
Classifier: Programming Language :: Python :: 3.11
|
|
20
19
|
Classifier: Programming Language :: Python :: 3.12
|
|
21
20
|
Classifier: Programming Language :: Python :: 3.13
|
|
21
|
+
Classifier: Programming Language :: Python :: 3.14
|
|
22
22
|
Classifier: Topic :: Software Development :: Libraries :: Python Modules
|
|
23
23
|
Classifier: Typing :: Typed
|
|
24
|
-
Requires-Python: >=3.
|
|
24
|
+
Requires-Python: >=3.9
|
|
25
25
|
Requires-Dist: anyio<5,>=3.5.0
|
|
26
26
|
Requires-Dist: distro<2,>=1.7.0
|
|
27
27
|
Requires-Dist: httpx<1,>=0.23.0
|
|
@@ -38,12 +38,21 @@ Description-Content-Type: text/markdown
|
|
|
38
38
|
<!-- prettier-ignore -->
|
|
39
39
|
[)](https://pypi.org/project/isaacus/)
|
|
40
40
|
|
|
41
|
-
The Isaacus Python library provides convenient access to the Isaacus REST API from any Python 3.
|
|
41
|
+
The Isaacus Python library provides convenient access to the Isaacus REST API from any Python 3.9+
|
|
42
42
|
application. The library includes type definitions for all request params and response fields,
|
|
43
43
|
and offers both synchronous and asynchronous clients powered by [httpx](https://github.com/encode/httpx).
|
|
44
44
|
|
|
45
45
|
It is generated with [Stainless](https://www.stainless.com/).
|
|
46
46
|
|
|
47
|
+
## MCP Server
|
|
48
|
+
|
|
49
|
+
Use the Isaacus MCP Server to enable AI assistants to interact with this API, allowing them to explore endpoints, make test requests, and use documentation to help integrate this SDK into your application.
|
|
50
|
+
|
|
51
|
+
[](https://cursor.com/en-US/install-mcp?name=isaacus-mcp&config=eyJjb21tYW5kIjoibnB4IiwiYXJncyI6WyIteSIsImlzYWFjdXMtbWNwIl0sImVudiI6eyJJU0FBQ1VTX0FQSV9LRVkiOiJNeSBBUEkgS2V5In19)
|
|
52
|
+
[](https://vscode.stainless.com/mcp/%7B%22name%22%3A%22isaacus-mcp%22%2C%22command%22%3A%22npx%22%2C%22args%22%3A%5B%22-y%22%2C%22isaacus-mcp%22%5D%2C%22env%22%3A%7B%22ISAACUS_API_KEY%22%3A%22My%20API%20Key%22%7D%7D)
|
|
53
|
+
|
|
54
|
+
> Note: You may need to set environment variables in your MCP client.
|
|
55
|
+
|
|
47
56
|
## Documentation
|
|
48
57
|
|
|
49
58
|
The REST API documentation can be found on [docs.isaacus.com](https://docs.isaacus.com). The full API of this library can be found in [api.md](https://github.com/isaacus-dev/isaacus-python/tree/main/api.md).
|
|
@@ -73,6 +82,7 @@ embedding_response = client.embeddings.create(
|
|
|
73
82
|
"Are restraints of trade enforceable under English law?",
|
|
74
83
|
"What is a non-compete clause?",
|
|
75
84
|
],
|
|
85
|
+
task="retrieval/query",
|
|
76
86
|
)
|
|
77
87
|
print(embedding_response.embeddings)
|
|
78
88
|
```
|
|
@@ -103,6 +113,7 @@ async def main() -> None:
|
|
|
103
113
|
"Are restraints of trade enforceable under English law?",
|
|
104
114
|
"What is a non-compete clause?",
|
|
105
115
|
],
|
|
116
|
+
task="retrieval/query",
|
|
106
117
|
)
|
|
107
118
|
print(embedding_response.embeddings)
|
|
108
119
|
|
|
@@ -126,6 +137,7 @@ pip install isaacus[aiohttp]
|
|
|
126
137
|
Then you can enable it by instantiating the client with `http_client=DefaultAioHttpClient()`:
|
|
127
138
|
|
|
128
139
|
```python
|
|
140
|
+
import os
|
|
129
141
|
import asyncio
|
|
130
142
|
from isaacus import DefaultAioHttpClient
|
|
131
143
|
from isaacus import AsyncIsaacus
|
|
@@ -133,7 +145,7 @@ from isaacus import AsyncIsaacus
|
|
|
133
145
|
|
|
134
146
|
async def main() -> None:
|
|
135
147
|
async with AsyncIsaacus(
|
|
136
|
-
api_key="
|
|
148
|
+
api_key=os.environ.get("ISAACUS_API_KEY"), # This is the default and can be omitted
|
|
137
149
|
http_client=DefaultAioHttpClient(),
|
|
138
150
|
) as client:
|
|
139
151
|
embedding_response = await client.embeddings.create(
|
|
@@ -142,6 +154,7 @@ async def main() -> None:
|
|
|
142
154
|
"Are restraints of trade enforceable under English law?",
|
|
143
155
|
"What is a non-compete clause?",
|
|
144
156
|
],
|
|
157
|
+
task="retrieval/query",
|
|
145
158
|
)
|
|
146
159
|
print(embedding_response.embeddings)
|
|
147
160
|
|
|
@@ -202,6 +215,7 @@ try:
|
|
|
202
215
|
"Are restraints of trade enforceable under English law?",
|
|
203
216
|
"What is a non-compete clause?",
|
|
204
217
|
],
|
|
218
|
+
task="retrieval/query",
|
|
205
219
|
)
|
|
206
220
|
except isaacus.APIConnectionError as e:
|
|
207
221
|
print("The server could not be reached")
|
|
@@ -251,6 +265,7 @@ client.with_options(max_retries=5).embeddings.create(
|
|
|
251
265
|
"Are restraints of trade enforceable under English law?",
|
|
252
266
|
"What is a non-compete clause?",
|
|
253
267
|
],
|
|
268
|
+
task="retrieval/query",
|
|
254
269
|
)
|
|
255
270
|
```
|
|
256
271
|
|
|
@@ -280,6 +295,7 @@ client.with_options(timeout=5.0).embeddings.create(
|
|
|
280
295
|
"Are restraints of trade enforceable under English law?",
|
|
281
296
|
"What is a non-compete clause?",
|
|
282
297
|
],
|
|
298
|
+
task="retrieval/query",
|
|
283
299
|
)
|
|
284
300
|
```
|
|
285
301
|
|
|
@@ -324,6 +340,7 @@ client = Isaacus()
|
|
|
324
340
|
response = client.embeddings.with_raw_response.create(
|
|
325
341
|
model="kanon-2-embedder",
|
|
326
342
|
texts=["Are restraints of trade enforceable under English law?", "What is a non-compete clause?"],
|
|
343
|
+
task="retrieval/query",
|
|
327
344
|
)
|
|
328
345
|
print(response.headers.get('X-My-Header'))
|
|
329
346
|
|
|
@@ -348,6 +365,7 @@ with client.embeddings.with_streaming_response.create(
|
|
|
348
365
|
"Are restraints of trade enforceable under English law?",
|
|
349
366
|
"What is a non-compete clause?",
|
|
350
367
|
],
|
|
368
|
+
task="retrieval/query",
|
|
351
369
|
) as response:
|
|
352
370
|
print(response.headers.get("X-My-Header"))
|
|
353
371
|
|
|
@@ -458,7 +476,7 @@ print(isaacus.__version__)
|
|
|
458
476
|
|
|
459
477
|
## Requirements
|
|
460
478
|
|
|
461
|
-
Python 3.
|
|
479
|
+
Python 3.9 or higher.
|
|
462
480
|
|
|
463
481
|
## Contributing
|
|
464
482
|
|
|
@@ -1,52 +1,56 @@
|
|
|
1
1
|
isaacus/__init__.py,sha256=wtI0vXNsVgND6Lmq0G6l2iQALnXyM7HqyL9C6gOiaFE,2633
|
|
2
|
-
isaacus/_base_client.py,sha256=
|
|
3
|
-
isaacus/_client.py,sha256=
|
|
4
|
-
isaacus/_compat.py,sha256=
|
|
2
|
+
isaacus/_base_client.py,sha256=C9XldfwpcOoabQRZxP9Vio1ypL9NSp86JiaeSzRrrM8,73659
|
|
3
|
+
isaacus/_client.py,sha256=VeyYx9N4VTFvZFNHKNrQdTT8WdU70SwyPSYL-74XBCU,22625
|
|
4
|
+
isaacus/_compat.py,sha256=teO44AYozpv2wFRrUi7brcZfGPpFSERQZ4fcdX6zVvs,6627
|
|
5
5
|
isaacus/_constants.py,sha256=S14PFzyN9-I31wiV7SmIlL5Ga0MLHxdvegInGdXH7tM,462
|
|
6
6
|
isaacus/_exceptions.py,sha256=L82uluhizzc94VydHIaJkNxkcG-2DAe74tNhrE2eN2A,3222
|
|
7
7
|
isaacus/_files.py,sha256=KnEzGi_O756MvKyJ4fOCW_u3JhOeWPQ4RsmDvqihDQU,3545
|
|
8
|
-
isaacus/_models.py,sha256=
|
|
8
|
+
isaacus/_models.py,sha256=R3MpO2z4XhTAnD3ObEks32suRXleF1g7BEgQTOLIxTs,32112
|
|
9
9
|
isaacus/_qs.py,sha256=craIKyvPktJ94cvf9zn8j8ekG9dWJzhWv0ob34lIOv4,4828
|
|
10
10
|
isaacus/_resource.py,sha256=iP_oYhz5enCI58mK7hlwLoPMPh4Q5s8-KBv-jGfv2aM,1106
|
|
11
11
|
isaacus/_response.py,sha256=aXLF5ia58bjjQXTxY574lh7JfKXiGL2tDTX09klm8lw,28794
|
|
12
|
-
isaacus/_streaming.py,sha256=
|
|
13
|
-
isaacus/_types.py,sha256=
|
|
14
|
-
isaacus/_version.py,sha256=
|
|
12
|
+
isaacus/_streaming.py,sha256=jcoIlOzPElsxFLKe54I-TavCZEuYIx_MYkZN3uSQFqk,10225
|
|
13
|
+
isaacus/_types.py,sha256=hm4MJQF5-9CmsPcIufE6_KvsWtxKrRMnJAgZ7MBydsk,7595
|
|
14
|
+
isaacus/_version.py,sha256=sh7F5nhnT1jJBe1Zberq8uJWRpL_fXN97Dm-a1GY4bo,160
|
|
15
15
|
isaacus/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
16
16
|
isaacus/_utils/__init__.py,sha256=7fch0GT9zpNnErbciSpUNa-SjTxxjY6kxHxKMOM4AGs,2305
|
|
17
17
|
isaacus/_utils/_compat.py,sha256=D8gtAvjJQrDWt9upS0XaG9Rr5l1QhiAx_I_1utT_tt0,1195
|
|
18
18
|
isaacus/_utils/_datetime_parse.py,sha256=bABTs0Bc6rabdFvnIwXjEhWL15TcRgWZ_6XGTqN8xUk,4204
|
|
19
|
+
isaacus/_utils/_json.py,sha256=bl95uuIWwgSfXX-gP1trK_lDAPwJujYfJ05Cxo2SEC4,962
|
|
19
20
|
isaacus/_utils/_logs.py,sha256=rwa1Yzjbs2JaFn9KQ06rH5c_GSNa--BVwWnWhvvT1tY,777
|
|
20
21
|
isaacus/_utils/_proxy.py,sha256=aglnj2yBTDyGX9Akk2crZHrl10oqRmceUy2Zp008XEs,1975
|
|
21
22
|
isaacus/_utils/_reflection.py,sha256=ZmGkIgT_PuwedyNBrrKGbxoWtkpytJNU1uU4QHnmEMU,1364
|
|
22
23
|
isaacus/_utils/_resources_proxy.py,sha256=vW2q6wobLs4JH9DnlVsdaotKEzn5bWqqe8WhNTAOv_k,594
|
|
23
24
|
isaacus/_utils/_streams.py,sha256=SMC90diFFecpEg_zgDRVbdR3hSEIgVVij4taD-noMLM,289
|
|
24
|
-
isaacus/_utils/_sync.py,sha256=
|
|
25
|
+
isaacus/_utils/_sync.py,sha256=HBnZkkBnzxtwOZe0212C4EyoRvxhTVtTrLFDz2_xVCg,1589
|
|
25
26
|
isaacus/_utils/_transform.py,sha256=NjCzmnfqYrsAikUHQig6N9QfuTVbKipuP3ur9mcNF-E,15951
|
|
26
27
|
isaacus/_utils/_typing.py,sha256=N_5PPuFNsaygbtA_npZd98SVN1LQQvFTKL6bkWPBZGU,4786
|
|
27
|
-
isaacus/_utils/_utils.py,sha256=
|
|
28
|
+
isaacus/_utils/_utils.py,sha256=ugfUaneOK7I8h9b3656flwf5u_kthY0gvNuqvgOLoSU,12252
|
|
28
29
|
isaacus/lib/.keep,sha256=wuNrz-5SXo3jJaJOJgz4vFHM41YH_g20F5cRQo0vLes,224
|
|
29
|
-
isaacus/resources/__init__.py,sha256=
|
|
30
|
+
isaacus/resources/__init__.py,sha256=lBkxBgx6-Cz4isNcKC15aHKJxXJN0xw3Dzj8iZlEz8o,2703
|
|
30
31
|
isaacus/resources/embeddings.py,sha256=Ol-K756e376CnzdoEBuuRRIIdbNpYUOLD0bUN7o6ffA,9470
|
|
31
|
-
isaacus/resources/
|
|
32
|
+
isaacus/resources/enrichments.py,sha256=x41-2i-Iu3iJPZBrrMOuDMoh62Ud7lKhMc3JLmbdAGg,8759
|
|
33
|
+
isaacus/resources/rerankings.py,sha256=Zz3TofFzaexgxqmOsxFWIhb2MFJdEr2o1JzsSxeiIKE,11189
|
|
32
34
|
isaacus/resources/classifications/__init__.py,sha256=tYSnDm-o0CVuTC95VoNJzOqHsb8jTzYmW8hdwW14K60,1158
|
|
33
35
|
isaacus/resources/classifications/classifications.py,sha256=Td5Gscg1PNJJeobxow_hJq_RicpFe3ibEYN0Gh3Kpsg,4018
|
|
34
36
|
isaacus/resources/classifications/universal.py,sha256=TuTkM2d0bC5A3Eo_1km06IISu2nctEGpWzKHKHnW2IE,10714
|
|
35
37
|
isaacus/resources/extractions/__init__.py,sha256=24ccXv3kRlfXwnZJ4572kWNjJKiJ0Cd5vWeRkKCuMyY,1015
|
|
36
38
|
isaacus/resources/extractions/extractions.py,sha256=RaUnv1OG4i5J3JhpBNfpnxELpSHvmkqZmS2_DVL9Wvw,3671
|
|
37
39
|
isaacus/resources/extractions/qa.py,sha256=5KgPXamGlkR4qTglw0LBsIiytxGwdALQ-RBV7hS5kGo,10029
|
|
38
|
-
isaacus/types/__init__.py,sha256=
|
|
40
|
+
isaacus/types/__init__.py,sha256=oEeUoff816LbolcipS92iRJDw6Zdgd4GqsDY67G_Bx0,594
|
|
39
41
|
isaacus/types/embedding_create_params.py,sha256=Vcqa_CSnj_rXl8CWyGzBtjJKin18dRmy-q8N0eNFYQ8,1575
|
|
40
|
-
isaacus/types/embedding_response.py,sha256=
|
|
41
|
-
isaacus/types/
|
|
42
|
-
isaacus/types/
|
|
42
|
+
isaacus/types/embedding_response.py,sha256=hDrsSna4GW8-ukNKtN7Svv-zskulPdymkgfv0RJGFoU,937
|
|
43
|
+
isaacus/types/enrichment_create_params.py,sha256=7DmPWolHTrUNLBtS1qpUAK6XUjQ4QlIOwlO1rQP7kZ4,1347
|
|
44
|
+
isaacus/types/enrichment_response.py,sha256=8ykz2OssM6YEHe-rjn-SNBLAmM-7IwyRRBM2CqM4xY4,57688
|
|
45
|
+
isaacus/types/reranking_create_params.py,sha256=8JzCxxIqhsLyINUgzVjG8HadMSrAlqMYMZX-c84vsjk,2595
|
|
46
|
+
isaacus/types/reranking_response.py,sha256=qyCeK30TC6YXO_zmzRzAskwQxnHuyehjqLM8QO5B8z0,1017
|
|
43
47
|
isaacus/types/classifications/__init__.py,sha256=5wz2ChA8Ld8Yfx-7z7PShbfeyvE3wXRfpkctjS27t10,321
|
|
44
|
-
isaacus/types/classifications/universal_classification_response.py,sha256=
|
|
45
|
-
isaacus/types/classifications/universal_create_params.py,sha256=
|
|
48
|
+
isaacus/types/classifications/universal_classification_response.py,sha256=DkqL-2oCDZStVTC0ErABe9PC7mo7r8QUj-yrpMNXzP4,2545
|
|
49
|
+
isaacus/types/classifications/universal_create_params.py,sha256=o33anF7A87yvW7pBPffTY0Wbhdos5dSdqNGG3qDe20s,2392
|
|
46
50
|
isaacus/types/extractions/__init__.py,sha256=em0yfSoMG1XqO_LfmqveKlKh03y5x6g7hbaUn7ck21c,279
|
|
47
|
-
isaacus/types/extractions/answer_extraction_response.py,sha256=
|
|
48
|
-
isaacus/types/extractions/qa_create_params.py,sha256=
|
|
49
|
-
isaacus-0.
|
|
50
|
-
isaacus-0.
|
|
51
|
-
isaacus-0.
|
|
52
|
-
isaacus-0.
|
|
51
|
+
isaacus/types/extractions/answer_extraction_response.py,sha256=B-TKDFyte681wE-DttSGF85E5eLbmeVONNxxavSXjcY,2383
|
|
52
|
+
isaacus/types/extractions/qa_create_params.py,sha256=qa6J5OrYA-nLCCuUG8PSb5N4VZAbKeco7lNCmTXQggA,2200
|
|
53
|
+
isaacus-0.10.1.dist-info/METADATA,sha256=EZQDUAP_3DMmBrf8XJHtWiBFQkDTcVxesYEc9FBz0to,17499
|
|
54
|
+
isaacus-0.10.1.dist-info/WHEEL,sha256=C2FUgwZgiLbznR-k0b_5k3Ai_1aASOXDss3lzCUsUug,87
|
|
55
|
+
isaacus-0.10.1.dist-info/licenses/LICENSE,sha256=a39aM3IX2G2L5Xs88KP8lWSk-UJ3Eaqo8HwnQs9c08U,11337
|
|
56
|
+
isaacus-0.10.1.dist-info/RECORD,,
|
|
@@ -186,7 +186,7 @@
|
|
|
186
186
|
same "printed page" as the copyright notice for easier
|
|
187
187
|
identification within third-party archives.
|
|
188
188
|
|
|
189
|
-
Copyright
|
|
189
|
+
Copyright 2026 Isaacus
|
|
190
190
|
|
|
191
191
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
192
192
|
you may not use this file except in compliance with the License.
|
|
File without changes
|