qlever 0.5.9__py3-none-any.whl → 0.5.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.

Potentially problematic release.


This version of qlever might be problematic. Click here for more details.

@@ -13,17 +13,16 @@ NAME = wikidata
13
13
 
14
14
  [data]
15
15
  GET_DATA_URL = https://dumps.wikimedia.org/wikidatawiki/entities
16
- GET_DATA_CMD = curl -LROC - ${GET_DATA_URL}/latest-all.ttl.bz2 ${GET_DATA_URL}/latest-lexemes.ttl.bz2 2>&1 | tee wikidata.download-log.txt && curl -sL ${GET_DATA_URL}/dcatap.rdf | docker run -i --rm -v $$(pwd):/data stain/jena riot --syntax=RDF/XML --output=NT /dev/stdin > dcatap.nt
16
+ GET_DATA_CMD = curl -LRC - -O ${GET_DATA_URL}/latest-all.ttl.bz2 -O ${GET_DATA_URL}/latest-lexemes.ttl.bz2 2>&1 | tee wikidata.download-log.txt && curl -sL ${GET_DATA_URL}/dcatap.rdf | docker run -i --rm -v $$(pwd):/data stain/jena riot --syntax=RDF/XML --output=NT /dev/stdin > dcatap.nt
17
17
  DATE_WIKIDATA = $$(date -r latest-all.ttl.bz2 +%d.%m.%Y || echo "NO_DATE")
18
18
  DATE_WIKIPEDIA = $$(date -r wikipedia-abstracts.nt +%d.%m.%Y || echo "NO_DATE")
19
19
  DESCRIPTION = Full Wikidata dump from ${GET_DATA_URL} (latest-all.ttl.bz2 and latest-lexemes.ttl.bz2, version ${DATE_WIKIDATA}) + English Wikipeda abstracts (version ${DATE_WIKIPEDIA}, available via schema:description)
20
20
  TEXT_DESCRIPTION = All English and German literals + all sentences from the English Wikipedia (version ${DATE_WIKIPEDIA}), use with FILTER KEYWORDS(...)
21
21
 
22
22
  [index]
23
- INPUT_FILES = latest-all.ttl.bz2 latest-lexemes.ttl.bz2 wikipedia-abstracts.nt dcatap.nt
23
+ INPUT_FILES = latest-all.ttl.bz2 latest-lexemes.ttl.bz2 dcatap.nt
24
24
  MULTI_INPUT_JSON = [{ "cmd": "lbzcat -n 4 latest-all.ttl.bz2", "format": "ttl", "parallel": "true" },
25
25
  { "cmd": "lbzcat -n 1 latest-lexemes.ttl.bz2", "format": "ttl", "parallel": "false" },
26
- { "cmd": "cat wikipedia-abstracts.nt", "format": "nt", "parallel": "false" },
27
26
  { "cmd": "cat dcatap.nt", "format": "nt", "parallel": "false" }]
28
27
  SETTINGS_JSON = { "languages-internal": [], "prefixes-external": [""], "locale": { "language": "en", "country": "US", "ignore-punctuation": true }, "ascii-prefixes-only": true, "num-triples-per-batch": 5000000 }
29
28
  STXXL_MEMORY = 10G
@@ -31,11 +30,11 @@ TEXT_INDEX = from_text_records
31
30
 
32
31
  [server]
33
32
  PORT = 7001
34
- ACCESS_TOKEN = ${data:NAME}_3fz47hfzrbf64b
35
- MEMORY_FOR_QUERIES = 40G
36
- CACHE_MAX_SIZE = 30G
33
+ ACCESS_TOKEN = ${data:NAME}
34
+ MEMORY_FOR_QUERIES = 20G
35
+ CACHE_MAX_SIZE = 15G
37
36
  CACHE_MAX_SIZE_SINGLE_ENTRY = 5G
38
- TIMEOUT = 300s
37
+ TIMEOUT = 600s
39
38
 
40
39
  [runtime]
41
40
  SYSTEM = docker
qlever/commands/index.py CHANGED
@@ -28,7 +28,7 @@ class IndexCommand(QleverCommand):
28
28
  def relevant_qleverfile_arguments(self) -> dict[str: list[str]]:
29
29
  return {"data": ["name", "format"],
30
30
  "index": ["input_files", "cat_input_files", "multi_input_json",
31
- "settings_json", "index_binary",
31
+ "parallel_parsing", "settings_json", "index_binary",
32
32
  "only_pso_and_pos_permutations", "use_patterns",
33
33
  "text_index", "stxxl_memory"],
34
34
  "runtime": ["system", "image", "index_container"]}
@@ -111,6 +111,8 @@ class IndexCommand(QleverCommand):
111
111
  index_cmd = (f"{args.cat_input_files} | {args.index_binary}"
112
112
  f" -i {args.name} -s {args.name}.settings.json"
113
113
  f" -F {args.format} -f -")
114
+ if args.parallel_parsing:
115
+ index_cmd += (f" -p {args.parallel_parsing}")
114
116
  elif args.multi_input_json and not args.cat_input_files:
115
117
  try:
116
118
  input_options = self.get_input_options_for_json(args)
qlever/qleverfile.py CHANGED
@@ -40,170 +40,277 @@ class Qleverfile:
40
40
  ui_args = all_args["ui"] = {}
41
41
 
42
42
  data_args["name"] = arg(
43
- "--name", type=str, required=True,
44
- help="The name of the dataset")
43
+ "--name", type=str, required=True, help="The name of the dataset"
44
+ )
45
45
  data_args["get_data_cmd"] = arg(
46
- "--get-data-cmd", type=str, required=True,
47
- help="The command to get the data")
46
+ "--get-data-cmd",
47
+ type=str,
48
+ required=True,
49
+ help="The command to get the data",
50
+ )
48
51
  data_args["description"] = arg(
49
- "--description", type=str, required=True,
50
- help="A concise description of the dataset")
52
+ "--description",
53
+ type=str,
54
+ required=True,
55
+ help="A concise description of the dataset",
56
+ )
51
57
  data_args["text_description"] = arg(
52
- "--text-description", type=str, default=None,
53
- help="A concise description of the additional text data"
54
- " if any")
58
+ "--text-description",
59
+ type=str,
60
+ default=None,
61
+ help="A concise description of the additional text data" " if any",
62
+ )
55
63
  data_args["format"] = arg(
56
- "--format", type=str, default="ttl",
57
- choices=["ttl", "nt", "nq"],
58
- help="The format of the data")
64
+ "--format",
65
+ type=str,
66
+ default="ttl",
67
+ choices=["ttl", "nt", "nq"],
68
+ help="The format of the data",
69
+ )
59
70
 
60
71
  index_args["input_files"] = arg(
61
- "--input-files", type=str, required=True,
62
- help="A space-separated list of patterns that match "
63
- "all the files of the dataset")
72
+ "--input-files",
73
+ type=str,
74
+ required=True,
75
+ help="A space-separated list of patterns that match "
76
+ "all the files of the dataset",
77
+ )
64
78
  index_args["cat_input_files"] = arg(
65
- "--cat-input-files", type=str,
66
- help="The command that produces the input")
79
+ "--cat-input-files", type=str, help="The command that produces the input"
80
+ )
67
81
  index_args["multi_input_json"] = arg(
68
- "--multi-input-json", type=str, default=None,
69
- help="JSON to specify multiple input files, each with a "
70
- "`cmd` (command that writes the triples to stdout), "
71
- "`format` (format like for the `--format` option), "
72
- "`graph` (name of the graph, use `-` for the default graph), "
73
- "`parallel` (parallel parsing for large files, where all "
74
- "prefix declaration are at the beginning)")
82
+ "--multi-input-json",
83
+ type=str,
84
+ default=None,
85
+ help="JSON to specify multiple input files, each with a "
86
+ "`cmd` (command that writes the triples to stdout), "
87
+ "`format` (format like for the `--format` option), "
88
+ "`graph` (name of the graph, use `-` for the default graph), "
89
+ "`parallel` (parallel parsing for large files, where all "
90
+ "prefix declaration are at the beginning)",
91
+ )
92
+ index_args["parallel_parsing"] = arg(
93
+ "--parallel-parsing",
94
+ type=str,
95
+ choices=["true", "false"],
96
+ help="Use parallel parsing (recommended for large files, "
97
+ "but it requires that all prefix declarations are at the "
98
+ "beginning of the file)",
99
+ )
75
100
  index_args["settings_json"] = arg(
76
- "--settings-json", type=str, default="{}",
77
- help="The `.settings.json` file for the index")
101
+ "--settings-json",
102
+ type=str,
103
+ default="{}",
104
+ help="The `.settings.json` file for the index",
105
+ )
78
106
  index_args["index_binary"] = arg(
79
- "--index-binary", type=str, default="IndexBuilderMain",
80
- help="The binary for building the index (this requires "
81
- "that you have compiled QLever on your machine)")
107
+ "--index-binary",
108
+ type=str,
109
+ default="IndexBuilderMain",
110
+ help="The binary for building the index (this requires "
111
+ "that you have compiled QLever on your machine)",
112
+ )
82
113
  index_args["stxxl_memory"] = arg(
83
- "--stxxl-memory", type=str, default="5G",
84
- help="The amount of memory to use for the index build "
85
- "(the name of the option has historical reasons)")
114
+ "--stxxl-memory",
115
+ type=str,
116
+ default="5G",
117
+ help="The amount of memory to use for the index build "
118
+ "(the name of the option has historical reasons)",
119
+ )
86
120
  index_args["only_pso_and_pos_permutations"] = arg(
87
- "--only-pso-and-pos-permutations", action="store_true",
88
- default=False,
89
- help="Only create the PSO and POS permutations")
121
+ "--only-pso-and-pos-permutations",
122
+ action="store_true",
123
+ default=False,
124
+ help="Only create the PSO and POS permutations",
125
+ )
90
126
  index_args["use_patterns"] = arg(
91
- "--use-patterns", action="store_true", default=True,
92
- help="Precompute so-called patterns needed for fast processing"
93
- " of queries like SELECT ?p (COUNT(DISTINCT ?s) AS ?c) "
94
- "WHERE { ?s ?p [] ... } GROUP BY ?p")
127
+ "--use-patterns",
128
+ action="store_true",
129
+ default=True,
130
+ help="Precompute so-called patterns needed for fast processing"
131
+ " of queries like SELECT ?p (COUNT(DISTINCT ?s) AS ?c) "
132
+ "WHERE { ?s ?p [] ... } GROUP BY ?p",
133
+ )
95
134
  index_args["text_index"] = arg(
96
- "--text-index",
97
- choices=["none", "from_text_records", "from_literals",
98
- "from_text_records_and_literals"],
99
- default="none",
100
- help="Whether to also build an index for text search"
101
- "and for which texts")
135
+ "--text-index",
136
+ choices=[
137
+ "none",
138
+ "from_text_records",
139
+ "from_literals",
140
+ "from_text_records_and_literals",
141
+ ],
142
+ default="none",
143
+ help="Whether to also build an index for text search" "and for which texts",
144
+ )
102
145
  index_args["text_words_file"] = arg(
103
- "--text-words-file", type=str, default=None,
104
- help="File with the words for the text index (one line "
105
- "per word, format: `word or IRI\t0 or 1\tdoc id\t1`)")
146
+ "--text-words-file",
147
+ type=str,
148
+ default=None,
149
+ help="File with the words for the text index (one line "
150
+ "per word, format: `word or IRI\t0 or 1\tdoc id\t1`)",
151
+ )
106
152
  index_args["text_docs_file"] = arg(
107
- "--text-docs-file", type=str, default=None,
108
- help="File with the documents for the text index (one line "
109
- "per document, format: `id\tdocument text`)")
153
+ "--text-docs-file",
154
+ type=str,
155
+ default=None,
156
+ help="File with the documents for the text index (one line "
157
+ "per document, format: `id\tdocument text`)",
158
+ )
110
159
 
111
160
  server_args["server_binary"] = arg(
112
- "--server-binary", type=str, default="ServerMain",
113
- help="The binary for starting the server (this requires "
114
- "that you have compiled QLever on your machine)")
161
+ "--server-binary",
162
+ type=str,
163
+ default="ServerMain",
164
+ help="The binary for starting the server (this requires "
165
+ "that you have compiled QLever on your machine)",
166
+ )
115
167
  server_args["host_name"] = arg(
116
- "--host-name", type=str, default="localhost",
117
- help="The name of the host on which the server listens for "
118
- "requests")
168
+ "--host-name",
169
+ type=str,
170
+ default="localhost",
171
+ help="The name of the host on which the server listens for " "requests",
172
+ )
119
173
  server_args["port"] = arg(
120
- "--port", type=int,
121
- help="The port on which the server listens for requests")
174
+ "--port", type=int, help="The port on which the server listens for requests"
175
+ )
122
176
  server_args["access_token"] = arg(
123
- "--access-token", type=str, default=None,
124
- help="The access token for privileged operations")
177
+ "--access-token",
178
+ type=str,
179
+ default=None,
180
+ help="The access token for privileged operations",
181
+ )
125
182
  server_args["memory_for_queries"] = arg(
126
- "--memory-for-queries", type=str, default="5G",
127
- help="The maximal amount of memory used for query processing"
128
- " (if a query needs more than what is available, the "
129
- "query will not be processed)")
183
+ "--memory-for-queries",
184
+ type=str,
185
+ default="5G",
186
+ help="The maximal amount of memory used for query processing"
187
+ " (if a query needs more than what is available, the "
188
+ "query will not be processed)",
189
+ )
130
190
  server_args["cache_max_size"] = arg(
131
- "--cache-max-size", type=str, default="2G",
132
- help="The maximal amount of memory used for caching")
191
+ "--cache-max-size",
192
+ type=str,
193
+ default="2G",
194
+ help="The maximal amount of memory used for caching",
195
+ )
133
196
  server_args["cache_max_size_single_entry"] = arg(
134
- "--cache-max-size-single-entry", type=str, default="1G",
135
- help="The maximal amount of memory used for caching a single "
136
- "query result")
197
+ "--cache-max-size-single-entry",
198
+ type=str,
199
+ default="1G",
200
+ help="The maximal amount of memory used for caching a single "
201
+ "query result",
202
+ )
137
203
  server_args["cache_max_num_entries"] = arg(
138
- "--cache-max-num-entries", type=int, default=200,
139
- help="The maximal number of entries in the cache"
140
- " (the eviction policy when the cache is full is LRU)")
204
+ "--cache-max-num-entries",
205
+ type=int,
206
+ default=200,
207
+ help="The maximal number of entries in the cache"
208
+ " (the eviction policy when the cache is full is LRU)",
209
+ )
141
210
  server_args["timeout"] = arg(
142
- "--timeout", type=str, default="30s",
143
- help="The maximal time in seconds a query is allowed to run"
144
- " (can be increased per query with the URL parameters "
145
- "`timeout` and `access_token`)")
211
+ "--timeout",
212
+ type=str,
213
+ default="30s",
214
+ help="The maximal time in seconds a query is allowed to run"
215
+ " (can be increased per query with the URL parameters "
216
+ "`timeout` and `access_token`)",
217
+ )
146
218
  server_args["num_threads"] = arg(
147
- "--num-threads", type=int, default=8,
148
- help="The number of threads used for query processing")
219
+ "--num-threads",
220
+ type=int,
221
+ default=8,
222
+ help="The number of threads used for query processing",
223
+ )
149
224
  server_args["only_pso_and_pos_permutations"] = arg(
150
- "--only-pso-and-pos-permutations", action="store_true",
151
- default=False,
152
- help="Only use the PSO and POS permutations (then each "
153
- "triple pattern must have a fixed predicate)")
225
+ "--only-pso-and-pos-permutations",
226
+ action="store_true",
227
+ default=False,
228
+ help="Only use the PSO and POS permutations (then each "
229
+ "triple pattern must have a fixed predicate)",
230
+ )
154
231
  server_args["use_patterns"] = arg(
155
- "--use-patterns", action="store_true", default=True,
156
- help="Use the patterns precomputed during the index build"
157
- " (see `qlever index --help` for their utility)")
232
+ "--use-patterns",
233
+ action="store_true",
234
+ default=True,
235
+ help="Use the patterns precomputed during the index build"
236
+ " (see `qlever index --help` for their utility)",
237
+ )
158
238
  server_args["use_text_index"] = arg(
159
- "--use-text-index", choices=["yes", "no"], default="no",
160
- help="Whether to use the text index (requires that one was "
161
- "built, see `qlever index`)")
239
+ "--use-text-index",
240
+ choices=["yes", "no"],
241
+ default="no",
242
+ help="Whether to use the text index (requires that one was "
243
+ "built, see `qlever index`)",
244
+ )
162
245
  server_args["warmup_cmd"] = arg(
163
- "--warmup-cmd", type=str,
164
- help="Command executed after the server has started "
165
- " (executed as part of `qlever start` unless "
166
- " `--no-warmup` is specified, or with `qlever warmup`)")
246
+ "--warmup-cmd",
247
+ type=str,
248
+ help="Command executed after the server has started "
249
+ " (executed as part of `qlever start` unless "
250
+ " `--no-warmup` is specified, or with `qlever warmup`)",
251
+ )
167
252
 
168
253
  runtime_args["system"] = arg(
169
- "--system", type=str,
170
- choices=Containerize.supported_systems() + ["native"],
171
- default="docker",
172
- help=("Whether to run commands like `index` or `start` "
173
- "natively or in a container, and if in a container, "
174
- "which system to use"))
254
+ "--system",
255
+ type=str,
256
+ choices=Containerize.supported_systems() + ["native"],
257
+ default="docker",
258
+ help=(
259
+ "Whether to run commands like `index` or `start` "
260
+ "natively or in a container, and if in a container, "
261
+ "which system to use"
262
+ ),
263
+ )
175
264
  runtime_args["image"] = arg(
176
- "--image", type=str,
177
- default="docker.io/adfreiburg/qlever",
178
- help="The name of the image when running in a container")
265
+ "--image",
266
+ type=str,
267
+ default="docker.io/adfreiburg/qlever",
268
+ help="The name of the image when running in a container",
269
+ )
179
270
  runtime_args["index_container"] = arg(
180
- "--index-container", type=str,
181
- help="The name of the container used by `qlever index`")
271
+ "--index-container",
272
+ type=str,
273
+ help="The name of the container used by `qlever index`",
274
+ )
182
275
  runtime_args["server_container"] = arg(
183
- "--server-container", type=str,
184
- help="The name of the container used by `qlever start`")
276
+ "--server-container",
277
+ type=str,
278
+ help="The name of the container used by `qlever start`",
279
+ )
185
280
 
186
281
  ui_args["ui_port"] = arg(
187
- "--ui-port", type=int, default=8176,
188
- help="The port of the Qlever UI when running `qlever ui`")
282
+ "--ui-port",
283
+ type=int,
284
+ default=8176,
285
+ help="The port of the Qlever UI when running `qlever ui`",
286
+ )
189
287
  ui_args["ui_config"] = arg(
190
- "--ui-config", type=str, default="default",
191
- help="The name of the backend configuration for the QLever UI"
192
- " (this determines AC queries and example queries)")
288
+ "--ui-config",
289
+ type=str,
290
+ default="default",
291
+ help="The name of the backend configuration for the QLever UI"
292
+ " (this determines AC queries and example queries)",
293
+ )
193
294
  ui_args["ui_system"] = arg(
194
- "--ui-system", type=str,
195
- choices=Containerize.supported_systems(),
196
- default="docker",
197
- help="Which container system to use for `qlever ui`"
198
- " (unlike for `qlever index` and `qlever start`, "
199
- " \"native\" is not yet supported here)")
295
+ "--ui-system",
296
+ type=str,
297
+ choices=Containerize.supported_systems(),
298
+ default="docker",
299
+ help="Which container system to use for `qlever ui`"
300
+ " (unlike for `qlever index` and `qlever start`, "
301
+ ' "native" is not yet supported here)',
302
+ )
200
303
  ui_args["ui_image"] = arg(
201
- "--ui-image", type=str,
202
- default="docker.io/adfreiburg/qlever-ui",
203
- help="The name of the image used for `qlever ui`")
304
+ "--ui-image",
305
+ type=str,
306
+ default="docker.io/adfreiburg/qlever-ui",
307
+ help="The name of the image used for `qlever ui`",
308
+ )
204
309
  ui_args["ui_container"] = arg(
205
- "--ui-container", type=str,
206
- help="The name of the container used for `qlever ui`")
310
+ "--ui-container",
311
+ type=str,
312
+ help="The name of the container used for `qlever ui`",
313
+ )
207
314
 
208
315
  return all_args
209
316
 
@@ -221,8 +328,7 @@ class Qleverfile:
221
328
 
222
329
  # Read the Qleverfile.
223
330
  defaults = {"random": "83724324hztz", "version": "01.01.01"}
224
- config = ConfigParser(interpolation=ExtendedInterpolation(),
225
- defaults=defaults)
331
+ config = ConfigParser(interpolation=ExtendedInterpolation(), defaults=defaults)
226
332
  try:
227
333
  config.read(qleverfile_path)
228
334
  except Exception as e:
@@ -237,13 +343,18 @@ class Qleverfile:
237
343
  if match:
238
344
  try:
239
345
  value = subprocess.check_output(
240
- match.group(1), shell=True, text=True,
241
- stderr=subprocess.STDOUT).strip()
346
+ match.group(1),
347
+ shell=True,
348
+ text=True,
349
+ stderr=subprocess.STDOUT,
350
+ ).strip()
242
351
  except Exception as e:
243
352
  log.info("")
244
- log.error(f"Error evaluating {value} for option "
245
- f"{section}.{option.upper()} in "
246
- f"{qleverfile_path}:")
353
+ log.error(
354
+ f"Error evaluating {value} for option "
355
+ f"{section}.{option.upper()} in "
356
+ f"{qleverfile_path}:"
357
+ )
247
358
  log.info("")
248
359
  log.info(e.output if hasattr(e, "output") else e)
249
360
  exit(1)
@@ -270,8 +381,8 @@ class Qleverfile:
270
381
  if "text_docs_file" not in index:
271
382
  index["text_docs_file"] = f"{name}.docsfile.tsv"
272
383
  server = config["server"]
273
- if index.get("text_index", "none") != "none":
274
- server["use_text_index"] = "yes"
384
+ if index.get("text_index", "none") != "none":
385
+ server["use_text_index"] = "yes"
275
386
 
276
387
  # Return the parsed Qleverfile with the added inherited values.
277
388
  return config
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.1
2
2
  Name: qlever
3
- Version: 0.5.9
3
+ Version: 0.5.11
4
4
  Summary: Script for using the QLever SPARQL engine.
5
5
  Author-email: Hannah Bast <bast@cs.uni-freiburg.de>
6
6
  License: Apache-2.0
@@ -5,7 +5,7 @@ qlever/containerize.py,sha256=bnHmjKIFEe-NcuAMRNnXAFjRVLcLnk9f5JspCCyhgt8,5210
5
5
  qlever/log.py,sha256=2O_RvFymnu_dB10ErBTAOsI8bgjORfdD0tE3USH-siM,1315
6
6
  qlever/qlever_main.py,sha256=tA_xqOs_FjvqlDIvKTprwuysfTwzsUjE7at26gRhCVA,2336
7
7
  qlever/qlever_old.py,sha256=X-JxmepFKYeFgSLLp0TRDNqXSxDwIbc8_0Xstiems8c,62026
8
- qlever/qleverfile.py,sha256=whFQOBCEb7XsCaLwBgI2rleRZaxTVEXe-mDCpgHnvss,13611
8
+ qlever/qleverfile.py,sha256=lygAjI5_wV_e-JoIGIqVTdd4yyvApzZiSlqSsmdlJpU,14529
9
9
  qlever/util.py,sha256=qLxBRyHPT2VTj0xcOCFcP6HV-Lm-g-64QpvOc4V0_a8,8029
10
10
  qlever/Qleverfiles/Qleverfile.dblp,sha256=wXZweNfYgEx-IGF1vIJMgqYUSWanQlzPj1EzUOGVuXA,1340
11
11
  qlever/Qleverfiles/Qleverfile.dblp-plus,sha256=TJHxp8I1P6JKJjbuAllEpB32-huuY1gH0FlenqPVJ5g,1334
@@ -24,7 +24,7 @@ qlever/Qleverfiles/Qleverfile.pubchem,sha256=YuDzWQmukSvL1opu7cf1KX9407_P21lmecY
24
24
  qlever/Qleverfiles/Qleverfile.scientists,sha256=9eZ2c6P9a3E3VHa3RR7LdOQbF4k3oyyrn56Z3u4LZYs,1164
25
25
  qlever/Qleverfiles/Qleverfile.uniprot,sha256=9kAKseomdUnIt7EAZge39g1MTuaLVaSW9JYLHzIMolM,2338
26
26
  qlever/Qleverfiles/Qleverfile.vvz,sha256=cLzm85erKoFCDllH5eFcSi35MdR6Tahj1MgtvGRxanM,922
27
- qlever/Qleverfiles/Qleverfile.wikidata,sha256=BB7GHAY-lV0B10BWabPOUKtqWjEHFPn3UQc6f4i2-14,2474
27
+ qlever/Qleverfiles/Qleverfile.wikidata,sha256=JyWB7haqulineO3aPEsXqx12OpantxfxueeofcvMjpk,2343
28
28
  qlever/Qleverfiles/Qleverfile.wikipathways,sha256=UFEVLrtOBiSQfibBN9xc2wDXrnWcnx5f8PY9khcE6bc,1983
29
29
  qlever/Qleverfiles/Qleverfile.yago-4,sha256=hAS_2ZmC1zxNsKXip7t1F_iqu3CC-6O7v6HZhuFbnWY,1819
30
30
  qlever/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
@@ -33,7 +33,7 @@ qlever/commands/cache_stats.py,sha256=6JjueQstAqc8dNfgY8TP2EitFMxdUvCwrcyd7KUEb2
33
33
  qlever/commands/clear_cache.py,sha256=AnE1MOoj1ZexxrRT8FGeBLlv8rtQIVV4DP8VBn5-X-s,2843
34
34
  qlever/commands/example_queries.py,sha256=rtMOQw7cJe0Aia_1O7UyKcxHbz7ln9BSZYWUQI9OFA8,16389
35
35
  qlever/commands/get_data.py,sha256=f9kjZI3TKad6JHSuXWNkeoajmW8h0Sx8ShvjauDCtNo,1412
36
- qlever/commands/index.py,sha256=Ebb5dSDJ0u_AElKPgMzQN0YxPgpqbeNT1JscM3xGiMo,10256
36
+ qlever/commands/index.py,sha256=G4SPxJ1PW8KsLYl4OBV4rOLKSo-O3aR6nTT_0K6zAgU,10376
37
37
  qlever/commands/index_stats.py,sha256=_BiUNBhmbYd9RPxrlm4HF0oENO6JmqnRiAkwkyOdN4U,11722
38
38
  qlever/commands/log.py,sha256=8Krt3MsTUDapYqVw1zUu5X15SF8mV97Uj0qKOWK8jXk,1861
39
39
  qlever/commands/query.py,sha256=_IDH-M8gKL_f1i5wzu0X452pZSUD0_qXl6bPXC85wX0,2750
@@ -44,9 +44,9 @@ qlever/commands/stop.py,sha256=TZs4bxKHvujlZAU8BZmFjA5eXSZNAa6EeNzvPpEZsuI,4139
44
44
  qlever/commands/system_info.py,sha256=SShsnEV7QROgdbABeJ6Wk4U_CNjqlYO1J5HrpNCVNMs,4615
45
45
  qlever/commands/ui.py,sha256=rZxIYHZr-PqgQKfvVwl8woDnTGR-sFc-f6cPjcORaOk,3611
46
46
  qlever/commands/warmup.py,sha256=WOZSxeV8U_F6pEEnAb6YybXLQMxZFTRJXs4BPHUhsmc,1030
47
- qlever-0.5.9.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
48
- qlever-0.5.9.dist-info/METADATA,sha256=uoi2Wb5N4Co5DdD-gG-uaxgfl1PrWhNY5Twr56clyTk,4582
49
- qlever-0.5.9.dist-info/WHEEL,sha256=P9jw-gEje8ByB7_hXoICnHtVCrEwMQh-630tKvQWehc,91
50
- qlever-0.5.9.dist-info/entry_points.txt,sha256=U_gbYYi0wwdsn884eb0XoOXfvhACOsxhlO330dZ9bi0,87
51
- qlever-0.5.9.dist-info/top_level.txt,sha256=kd3zsYqiFd0--Czh5XTVkfEq6XR-XgRFW35X0v0GT-c,7
52
- qlever-0.5.9.dist-info/RECORD,,
47
+ qlever-0.5.11.dist-info/LICENSE,sha256=xx0jnfkXJvxRnG63LTGOxlggYnIysveWIZ6H3PNdCrQ,11357
48
+ qlever-0.5.11.dist-info/METADATA,sha256=Cy1xk-ZJLRR1r5LPwvAFwzuvJZwdTpDW8puG57Un-0Y,4583
49
+ qlever-0.5.11.dist-info/WHEEL,sha256=PZUExdf71Ui_so67QXpySuHtCi3-J3wvF4ORK6k_S8U,91
50
+ qlever-0.5.11.dist-info/entry_points.txt,sha256=U_gbYYi0wwdsn884eb0XoOXfvhACOsxhlO330dZ9bi0,87
51
+ qlever-0.5.11.dist-info/top_level.txt,sha256=kd3zsYqiFd0--Czh5XTVkfEq6XR-XgRFW35X0v0GT-c,7
52
+ qlever-0.5.11.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (75.3.0)
2
+ Generator: setuptools (75.6.0)
3
3
  Root-Is-Purelib: true
4
4
  Tag: py3-none-any
5
5