datamaestro-text 2025.7.28__py3-none-any.whl → 2025.9.11__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.
@@ -37,7 +37,7 @@ def main(train, dev, test):
37
37
  Each dataset is an instance of :class:`datamaestro_text.data.conversation.CanardDataset`
38
38
  """
39
39
  return {
40
- "train": CanardDataset(path=train),
41
- "validation": CanardDataset(path=dev),
42
- "test": CanardDataset(path=test),
40
+ "train": CanardDataset.C(path=train),
41
+ "validation": CanardDataset.C(path=dev),
42
+ "test": CanardDataset.C(path=test),
43
43
  }
@@ -51,6 +51,7 @@ def main(data: Path) -> Supervised[QReCCDataset, None, QReCCDataset]:
51
51
  )
52
52
  class Content(LZ4JSONLDocumentStore):
53
53
  """QReCC mentionned URLs content"""
54
+
54
55
  @staticmethod
55
56
  def __create_dataset__(dataset, options=None):
56
57
  ds = reference(reference=main).setup(dataset, options)
@@ -65,7 +66,7 @@ class Content(LZ4JSONLDocumentStore):
65
66
  "id",
66
67
  ).setup(dataset, options)
67
68
 
68
- return Content(jsonl_path=store_path)
69
+ return Content.C(jsonl_path=store_path)
69
70
 
70
71
  @staticmethod
71
72
  def _documents(path: Path):
@@ -47,7 +47,7 @@ http://www.msmarco.org/dataset.aspx""",
47
47
  @dataset(url="https://github.com/microsoft/MSMARCO-Passage-Ranking")
48
48
  def collection_etc(data) -> Folder:
49
49
  """Documents and some more files"""
50
- return Folder(path=data)
50
+ return Folder.C(path=data)
51
51
 
52
52
 
53
53
  @lua
@@ -27,6 +27,6 @@ def english(dir):
27
27
  If you use this data, please cite Sentiment140 as your source.
28
28
  """
29
29
  return Supervised.C(
30
- train=Generic(path=dir / "training.1600000.processed.noemoticon.csv"),
31
- test=Generic(path=dir / "testdata.manual.2009.06.14.csv"),
30
+ train=Generic.C(path=dir / "training.1600000.processed.noemoticon.csv"),
31
+ test=Generic.C(path=dir / "testdata.manual.2009.06.14.csv"),
32
32
  )
@@ -11,6 +11,6 @@ def aclimdb(data):
11
11
  Paper http://ai.stanford.edu/~amaas/papers/wvSent_acl2011.pdf
12
12
  """
13
13
  return {
14
- "train": FolderBased(path=data / "train", classes=["neg", "pos"]),
15
- "test": FolderBased(path=data / "test", classes=["neg", "pos"]),
14
+ "train": FolderBased.C(path=data / "train", classes=["neg", "pos"]),
15
+ "test": FolderBased.C(path=data / "test", classes=["neg", "pos"]),
16
16
  }
@@ -32,4 +32,4 @@ def v1(train, validation):
32
32
  Only the train and validation dataset are available. The test set is hidden
33
33
  for the leaderboard.
34
34
  """
35
- return {"train": File(path=train), "validation": File(path=validation)}
35
+ return {"train": File.C(path=train), "validation": File.C(path=validation)}
@@ -30,9 +30,9 @@ def WikiText(data, type):
30
30
  https://blog.einstein.ai/the-wikitext-long-term-dependency-language-modeling-dataset/
31
31
  """
32
32
  return {
33
- "train": File(path=data / ("wiki.train.%s" % type)),
34
- "validation": File(path=data / ("wiki.valid.%s" % type)),
35
- "test": File(path=data / ("wiki.test.%s" % type)),
33
+ "train": File.C(path=data / ("wiki.train.%s" % type)),
34
+ "validation": File.C(path=data / ("wiki.valid.%s" % type)),
35
+ "test": File.C(path=data / ("wiki.test.%s" % type)),
36
36
  }
37
37
 
38
38
 
@@ -31,10 +31,10 @@ def small(ds) -> Movielens:
31
31
  100,000 ratings and 3,600 tag applications applied to 9,000 movies by 600 users (as of 9/2018)
32
32
  """
33
33
  return {
34
- "ratings": csv.Generic(path=ds / "ratings.csv", names_row=0),
35
- "links": csv.Generic(path=ds / "links.csv", names_row=0),
36
- "movies": csv.Generic(path=ds / "movies.csv", names_row=0),
37
- "tags": csv.Generic(path=ds / "tags.csv", names_row=0),
34
+ "ratings": csv.Generic.C(path=ds / "ratings.csv", names_row=0),
35
+ "links": csv.Generic.C(path=ds / "links.csv", names_row=0),
36
+ "movies": csv.Generic.C(path=ds / "movies.csv", names_row=0),
37
+ "tags": csv.Generic.C(path=ds / "tags.csv", names_row=0),
38
38
  }
39
39
 
40
40
 
@@ -46,8 +46,8 @@ def full(ds) -> Movielens:
46
46
  27,000,000 ratings and 1,100,000 tag applications applied to 58,000 movies by 280,000 users (as of 9/2018)
47
47
  """
48
48
  return {
49
- "ratings": csv.Generic(path=ds / "ratings.csv", names_row=0),
50
- "links": csv.Generic(path=ds / "links.csv", names_row=0),
51
- "movies": csv.Generic(path=ds / "movies.csv", names_row=0),
52
- "tags": csv.Generic(path=ds / "tags.csv", names_row=0),
49
+ "ratings": csv.Generic.C(path=ds / "ratings.csv", names_row=0),
50
+ "links": csv.Generic.C(path=ds / "links.csv", names_row=0),
51
+ "movies": csv.Generic.C(path=ds / "movies.csv", names_row=0),
52
+ "tags": csv.Generic.C(path=ds / "tags.csv", names_row=0),
53
53
  }
@@ -34,9 +34,9 @@ def gsd(ds) -> Supervised:
34
34
  is updated since 2015 independently from the previous source.
35
35
  """
36
36
  return {
37
- "train": CoNLL_U(path=ds / "fr_gsd-ud-train.conllu"),
38
- "test": CoNLL_U(path=ds / "fr_gsd-ud-dev.conllu"),
39
- "validation": CoNLL_U(path=ds / "fr_gsd-ud-test.conllu"),
37
+ "train": CoNLL_U.C(path=ds / "fr_gsd-ud-train.conllu"),
38
+ "test": CoNLL_U.C(path=ds / "fr_gsd-ud-dev.conllu"),
39
+ "validation": CoNLL_U.C(path=ds / "fr_gsd-ud-test.conllu"),
40
40
  }
41
41
 
42
42
 
@@ -1,6 +1,7 @@
1
1
  """Generic data types for information retrieval"""
2
2
 
3
3
  from abc import ABC, abstractmethod
4
+ from enum import Enum
4
5
  from functools import cached_property
5
6
  import logging
6
7
  from pathlib import Path
@@ -88,6 +89,19 @@ class Documents(Base):
88
89
  ...
89
90
 
90
91
 
92
+ class FileAccess(Enum):
93
+ """Defines how to access files (e.g. for document stores)"""
94
+
95
+ FILE = 0
96
+ """Direct file access"""
97
+
98
+ MMAP = 1
99
+ """Use mmap"""
100
+
101
+ MEMORY = 2
102
+ """Use memory"""
103
+
104
+
91
105
  class DocumentStore(Documents):
92
106
  """A document store
93
107
 
@@ -97,6 +111,10 @@ class DocumentStore(Documents):
97
111
  - return the number of documents
98
112
  """
99
113
 
114
+ file_access: Meta[FileAccess] = FileAccess.MMAP
115
+ """How to access the file collection (might not have any impact, depends on
116
+ the docstore)"""
117
+
100
118
  def docid_internal2external(self, docid: int):
101
119
  """Converts an internal collection ID (integer) to an external ID"""
102
120
  raise NotImplementedError(f"For class {self.__class__}")
@@ -327,5 +345,4 @@ class PairwiseSampleDataset(Base, ABC):
327
345
  """Datasets where each record is a query with positive and negative samples"""
328
346
 
329
347
  @abstractmethod
330
- def iter(self) -> Iterator[PairwiseSample]:
331
- ...
348
+ def iter(self) -> Iterator[PairwiseSample]: ...
@@ -215,7 +215,19 @@ class Documents(ir.DocumentStore, IRDSId):
215
215
 
216
216
  @cached_property
217
217
  def store(self):
218
- return self.dataset.docs_store()
218
+ kwargs = {}
219
+ try:
220
+ # Translate to ir datasets docstore options
221
+ import ir_datasets.indices as ir_indices
222
+ file_access = {
223
+ ir.FileAccess.MMAP: ir_indices.FileAccess.MMAP,
224
+ ir.FileAccess.FILE: ir_indices.FileAccess.FILE,
225
+ ir.FileAccess.MEMORY: ir_indices.FileAccess.MEMORY
226
+ }[self.file_access]
227
+ kwargs = {"options": ir_indices.DocstoreOptions(file_access=file_access)}
228
+ except ImportError:
229
+ logging.warning("This version of ir-datasets cannot handle docstore options")
230
+ return self.dataset.docs_store(**kwargs)
219
231
 
220
232
  @cached_property
221
233
  def _docs(self):
@@ -1,7 +1,14 @@
1
1
  # file generated by setuptools-scm
2
2
  # don't change, don't track in version control
3
3
 
4
- __all__ = ["__version__", "__version_tuple__", "version", "version_tuple"]
4
+ __all__ = [
5
+ "__version__",
6
+ "__version_tuple__",
7
+ "version",
8
+ "version_tuple",
9
+ "__commit_id__",
10
+ "commit_id",
11
+ ]
5
12
 
6
13
  TYPE_CHECKING = False
7
14
  if TYPE_CHECKING:
@@ -9,13 +16,19 @@ if TYPE_CHECKING:
9
16
  from typing import Union
10
17
 
11
18
  VERSION_TUPLE = Tuple[Union[int, str], ...]
19
+ COMMIT_ID = Union[str, None]
12
20
  else:
13
21
  VERSION_TUPLE = object
22
+ COMMIT_ID = object
14
23
 
15
24
  version: str
16
25
  __version__: str
17
26
  __version_tuple__: VERSION_TUPLE
18
27
  version_tuple: VERSION_TUPLE
28
+ commit_id: COMMIT_ID
29
+ __commit_id__: COMMIT_ID
19
30
 
20
- __version__ = version = '2025.7.28'
21
- __version_tuple__ = version_tuple = (2025, 7, 28)
31
+ __version__ = version = '2025.9.11'
32
+ __version_tuple__ = version_tuple = (2025, 9, 11)
33
+
34
+ __commit_id__ = commit_id = 'gadcc9bd27'
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: datamaestro-text
3
- Version: 2025.7.28
3
+ Version: 2025.9.11
4
4
  Summary: Datamaestro module for text-related datasets
5
5
  Author-email: Benjamin Piwowarski <benjamin@piwowarski.fr>
6
6
  License: GPL-3
@@ -1,21 +1,21 @@
1
1
  datamaestro_text/__init__.py,sha256=hU8jZpkXl3F74qIfqnJl7v4nJ9YxfoR7IpJpUREFNRI,248
2
- datamaestro_text/version.py,sha256=rJQHFC3G5XDG0rUPZ6r1msOA_XCbSY-qMukJgu2nA1M,519
2
+ datamaestro_text/version.py,sha256=aHTcqRU_FAq8moUGgwqhCMrhMi8VBbk38TX-uMF8p20,720
3
3
  datamaestro_text/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
4
4
  datamaestro_text/config/ai/quac.yaml,sha256=h1D7UJo2z1nZ_9MXpDHuQNJG9Ma2oayUdJV6lyumAIg,1103
5
5
  datamaestro_text/config/com/oscar-corpus.py,sha256=dDfdy_uhG6esRQQzUOOORwK8KvEq4c4hZbWt22pv-zY,733
6
- datamaestro_text/config/com/sentiment140.py,sha256=WKKLaD7psbj9fIaTBHDTzOZanO2mukaB1g7aeTN1jdU,1289
6
+ datamaestro_text/config/com/sentiment140.py,sha256=itfBEgcOniECXKOw8I2dhzyS9LOMsltMLfKK6NGRpVY,1293
7
7
  datamaestro_text/config/com/fastml/goodbooks-10k.yaml,sha256=5ZABxUnBFs2ZnCXtBH8YoBiPb3SocRRdH1DLSfVWF-Y,1172
8
8
  datamaestro_text/config/com/github/ikat.py,sha256=DCayX-t2OBeW5bOJvRxoQgIH3vy-__mYzdmVcnayAkk,4230
9
- datamaestro_text/config/com/github/aagohary/canard.py,sha256=DREIKU2FFrfwibjU48Y1AsKTUzhwxmD4Kuykd4bDIus,1762
10
- datamaestro_text/config/com/github/apple/ml-qrecc.py,sha256=oYI0SUxEYzGoL2IbRrnze2cQuWwENwNk4ID9NQuI2Tw,3061
9
+ datamaestro_text/config/com/github/aagohary/canard.py,sha256=5fLwCLNBGM_7--naTCDayAMYLvK3yTD8auaEf-dqrb4,1768
10
+ datamaestro_text/config/com/github/apple/ml-qrecc.py,sha256=zP3w7A9KSvJVCo44OaB1az1pDKWxE6qXS4qFm3hqg3Y,3064
11
11
  datamaestro_text/config/com/github/prdwb/orconvqa.py,sha256=MFJYaxJoqJQ6kMDHa2PIE0zoxYTA8Kyl26-vzFoMML0,3032
12
12
  datamaestro_text/config/com/github/soskek/bookcorpus.yaml,sha256=qJKs35yeEIilEMgNvU3OEqMp1TSn7mDM2T-uYyA7kTU,1607
13
13
  datamaestro_text/config/com/microsoft/wikiqa.yaml,sha256=U7rU-W2Xz1MYv2YXT4jCTj5DsHyM0VssbQPNa3EISaM,540
14
- datamaestro_text/config/com/microsoft/msmarco/passage.py,sha256=tVldwVh0pQpXXifqcMNEN9cLO1HXkXoEhToSazSx5RE,11643
14
+ datamaestro_text/config/com/microsoft/msmarco/passage.py,sha256=hN2KOdi6ToHlodozqsYAOtxaqiUGkGGtRtb3RFSgnEU,11645
15
15
  datamaestro_text/config/com/smashwords/bookcorpus.py,sha256=hCFjZg9t1AHET05qU31uatiAOD5EEzzWG9y_W90jcOE,861
16
16
  datamaestro_text/config/edu/cornell/nlvr.yaml,sha256=9Yk5VZMncSmrP7JNuGXqExksgX5nQ_Zfnlps8hWze3Q,921
17
17
  datamaestro_text/config/edu/stanford/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
18
- datamaestro_text/config/edu/stanford/aclimdb.py,sha256=lsPDxnp_rWOCpBte6pZ0_LVaC33w5mmgfGh51rcTgt8,643
18
+ datamaestro_text/config/edu/stanford/aclimdb.py,sha256=QtriReAVsbJlxkgfJWQCZdCeJ9LswYnOR9mFrgghL9c,647
19
19
  datamaestro_text/config/edu/stanford/glove.py,sha256=bXxwiJqT8alPs5MwwxVuY0xBO8g1QWhm2L3AKVskTlA,2391
20
20
  datamaestro_text/config/edu/stanford/im2p.yaml,sha256=JoToNyEPpmwdyLFedCBot5ypyw7p9rzi12mGXJuZin0,2909
21
21
  datamaestro_text/config/edu/upenn/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -32,14 +32,14 @@ datamaestro_text/config/gov/nist/trec/index.yaml,sha256=oSUhUmtukf5oXqUbJLhae8xZ
32
32
  datamaestro_text/config/gov/nist/trec/tipster.py,sha256=DirpnHpS10e27LcL7v9ksKreKVy7EgfVhyztV49VRds,5364
33
33
  datamaestro_text/config/gov/nist/trec/web.yaml,sha256=iNIJ-PCeLwpUaJByJesyCqfFJolWCts_VETACha3hfQ,563
34
34
  datamaestro_text/config/io/github/rajpurkar/squad.yaml,sha256=JchkTruEhVd0uOTGgek2tOgBL4UT3G3KVASvZcNigLg,1143
35
- datamaestro_text/config/io/github/thunlp/fewrel.py,sha256=LJYexk2ssZ5SqKIKLjPdybS9ju4g9fGIFy5eybtsvYQ,1224
35
+ datamaestro_text/config/io/github/thunlp/fewrel.py,sha256=rg_qAnMrXYUZhQYxA12r_Npl0ggyfTLJQjdSCjU0QxM,1228
36
36
  datamaestro_text/config/io/metamind/research/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- datamaestro_text/config/io/metamind/research/wikitext.py,sha256=jWpCadMYJnX2I_Ls230lB8gwBvV51SOhABUznL8_dCA,2301
37
+ datamaestro_text/config/io/metamind/research/wikitext.py,sha256=DjyBmG74JvuMt9RpMwuLAnxzOdByIWsk4VnXgkJp1NM,2307
38
38
  datamaestro_text/config/net/mattmahoney/enwiki.yaml,sha256=HCUn3s0AydXX3BjJ6yUXY0vGLGWSBkOCaDhQ4PA2Adg,2452
39
39
  datamaestro_text/config/org/acm/recsys/cb2014.yaml,sha256=5SAK3Am1k0HFugSSCIQN5mLPBfr1zZZAkhLrSH5pHQc,1274
40
40
  datamaestro_text/config/org/cocodataset/index.yaml,sha256=KISJChMeKwlZbSnHmRcGMsm6jbcFGVe1aA4GhP2fzqw,474
41
- datamaestro_text/config/org/grouplens/movielens.py,sha256=e78JoiHuwP6gbj7Q84UwPTvjtN_ehfD5AhvuUt8DiH4,1824
42
- datamaestro_text/config/org/universaldependencies/french.py,sha256=W_gDtfinjlw08qohX_PWvzQlacDwRFB7PeOzO33mRVU,2208
41
+ datamaestro_text/config/org/grouplens/movielens.py,sha256=tV6OSTDdtjll1dQBCsYIlsBbtOO-MCiLles2aj0MgDA,1840
42
+ datamaestro_text/config/org/universaldependencies/french.py,sha256=etedb3_SC-fV5Oa2rM4_smZk6t4CPiNvU4C4keUFZHY,2214
43
43
  datamaestro_text/config/uk/ac/ucl/cs/qangaroo.yaml,sha256=IBy82CDNNLjJPNPzues1EgDXu0A5WDvUFeVNSOyrIpI,1137
44
44
  datamaestro_text/data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
45
45
  datamaestro_text/data/embeddings.py,sha256=qdeZ4m6drFNkqW_4pKxJKdJHtOnDRs0P7QVJ7AO6xFE,1127
@@ -52,7 +52,7 @@ datamaestro_text/data/conversation/canard.py,sha256=FI02rPNuzSsA_uXOcgcuQn31d3Qa
52
52
  datamaestro_text/data/conversation/ikat.py,sha256=djxTv0vHLXIUPzfmwpB25fyUWJNVPqthTtDbQ6CzmQo,4363
53
53
  datamaestro_text/data/conversation/orconvqa.py,sha256=RL9cpK7QK2dsk_j2e4Th8wzGFq-G3ww_EjdM1eKh-8o,3764
54
54
  datamaestro_text/data/conversation/qrecc.py,sha256=es4GmqPtE63A7O_GARe8Zy3rQvuLEhAvUA7CfN_nMeA,2562
55
- datamaestro_text/data/ir/__init__.py,sha256=jHoyIWyl0beUbg1gmkwNFf1cQRawB8p3SGfa17gniGM,9442
55
+ datamaestro_text/data/ir/__init__.py,sha256=ZRJrUeeUyD1ncMN5JINVvFJ2lDr3KsbgiiEBJkczSi0,9814
56
56
  datamaestro_text/data/ir/base.py,sha256=uwIiKn0ryK5DWUQsEegeTs6bye0uAOGl0XVm_cvV3ZU,1506
57
57
  datamaestro_text/data/ir/cord19.py,sha256=yu1Khgy6AZjH2BPQKdnxDid0vQgQ8zvb8-FQlHH-GOU,1465
58
58
  datamaestro_text/data/ir/csv.py,sha256=tnxuqR_MZ3GQhuoXEMYyWLQw8PyD0gRqsnzIP5Gsziw,1212
@@ -63,7 +63,7 @@ datamaestro_text/data/ir/stores.py,sha256=A4Ew0L4P6iLLmDKhxqjjVkHcz797BHf4d76Ygu
63
63
  datamaestro_text/data/ir/trec.py,sha256=IOtQRMUz8zx-dYEMR2NIIM6qXEUjsV0eVOhGvKIRJK4,1974
64
64
  datamaestro_text/data/ir/utils.py,sha256=6-GhXVtgkBZGhIs2-ODZua_3DmKjSSVydStpHDqbAwE,833
65
65
  datamaestro_text/datasets/irds/__init__.py,sha256=Tq0HN1qojnZYLBumM59BuTkz7r0gcu-5OXmDDLgPpAc,707
66
- datamaestro_text/datasets/irds/data.py,sha256=eUehp_80H1yyh7CVkM7mOWJtB9XHlmI-A7fLewXuaDE,22487
66
+ datamaestro_text/datasets/irds/data.py,sha256=YlDbGFsh6_mCmk49F3bwdsLEbpHVvMv4gvc1H8KZnpo,23096
67
67
  datamaestro_text/datasets/irds/datasets.py,sha256=n5mvD2omVI4PkeuJgX13Cio6gLrgYjxq8ZUKKyqocEs,5625
68
68
  datamaestro_text/datasets/irds/helpers.py,sha256=fGE-fbuJbXdTzl1qo55247jzn9cvApY-d82GJBgfY1E,3982
69
69
  datamaestro_text/datasets/irds/utils.py,sha256=m30JLIrV_HgilN11TvY9dGTyumES6LLzWZDUAMT915M,1425
@@ -80,9 +80,9 @@ datamaestro_text/utils/files.py,sha256=jhcirufgTztEkx1hs2-qgScEcHnIcGF_BjCeuCSsN
80
80
  datamaestro_text/utils/iter.py,sha256=QBajeSPLHvkeh6BCTZDSqWlOYNjwUDvgTTZ_YxJntXw,2701
81
81
  datamaestro_text/utils/randomstream.py,sha256=_-boH4IIqN8qcl3IktjpNp9vmF4TWRzHUSNVwg7WAr8,973
82
82
  datamaestro_text/utils/shuffle.py,sha256=o8JTz3mr0lYWyv0zEh91jEK12ci1etMiUnzh5GkOHCM,3490
83
- datamaestro_text-2025.7.28.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
84
- datamaestro_text-2025.7.28.dist-info/METADATA,sha256=M0V-4Q2_EBFIRnP0czVXvZC9t_qhhmVRbWSAry31SW4,1848
85
- datamaestro_text-2025.7.28.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
86
- datamaestro_text-2025.7.28.dist-info/entry_points.txt,sha256=lO1P5hE183L5qEEVHlG8d_ik0HNXnX7Eo87cQLdcl-Y,111
87
- datamaestro_text-2025.7.28.dist-info/top_level.txt,sha256=gYSeqViE8r7eCxSdqFJL74OwljOwKsGPaIhEcCXqc-o,17
88
- datamaestro_text-2025.7.28.dist-info/RECORD,,
83
+ datamaestro_text-2025.9.11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
84
+ datamaestro_text-2025.9.11.dist-info/METADATA,sha256=ChGV_8bnixfGl91eG_3-Qwba8tjMwe2VPCwXdGxG_xM,1848
85
+ datamaestro_text-2025.9.11.dist-info/WHEEL,sha256=_zCd3N1l69ArxyTb8rzEoP9TpbYXkqRFSNOD5OuxnTs,91
86
+ datamaestro_text-2025.9.11.dist-info/entry_points.txt,sha256=lO1P5hE183L5qEEVHlG8d_ik0HNXnX7Eo87cQLdcl-Y,111
87
+ datamaestro_text-2025.9.11.dist-info/top_level.txt,sha256=gYSeqViE8r7eCxSdqFJL74OwljOwKsGPaIhEcCXqc-o,17
88
+ datamaestro_text-2025.9.11.dist-info/RECORD,,