iolanta 2.1.8__py3-none-any.whl → 2.1.10__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.
- iolanta/data/iolanta.yaml +12 -4
- iolanta/data/textual-browser.yaml +0 -9
- iolanta/facets/textual_browser/page_switcher.py +9 -4
- iolanta/facets/textual_default/facets.py +2 -0
- iolanta/facets/textual_default/textual-inverse-properties.yamlld +25 -0
- iolanta/facets/title/facets.py +4 -0
- iolanta/facets/title/title.yamlld +33 -0
- iolanta/namespaces.py +2 -2
- iolanta/sparqlspace/processor.py +15 -4
- {iolanta-2.1.8.dist-info → iolanta-2.1.10.dist-info}/METADATA +1 -1
- {iolanta-2.1.8.dist-info → iolanta-2.1.10.dist-info}/RECORD +13 -11
- {iolanta-2.1.8.dist-info → iolanta-2.1.10.dist-info}/WHEEL +0 -0
- {iolanta-2.1.8.dist-info → iolanta-2.1.10.dist-info}/entry_points.txt +0 -0
iolanta/data/iolanta.yaml
CHANGED
|
@@ -1,15 +1,23 @@
|
|
|
1
1
|
"@context":
|
|
2
2
|
"@import": https://json-ld.org/contexts/dollar-convenience.jsonld
|
|
3
|
-
vann:
|
|
4
|
-
foaf:
|
|
5
|
-
owl:
|
|
3
|
+
vann: http://purl.org/vocab/vann/
|
|
4
|
+
foaf: http://xmlns.com/foaf/0.1/
|
|
5
|
+
owl: http://www.w3.org/2002/07/owl#
|
|
6
6
|
iolanta: https://iolanta.tech/
|
|
7
7
|
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
|
|
8
8
|
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
9
9
|
|
|
10
|
+
owl:onProperty:
|
|
11
|
+
"@type": "@id"
|
|
12
|
+
|
|
10
13
|
$included:
|
|
11
14
|
- $id: iolanta:Facet
|
|
12
|
-
$type:
|
|
15
|
+
$type: owl:Class
|
|
16
|
+
rdfs:subClassOf:
|
|
17
|
+
$type: owl:Restriction
|
|
18
|
+
owl:onProperty: iolanta:outputs
|
|
19
|
+
owl:minCardinality: 1
|
|
20
|
+
|
|
13
21
|
label: Application capable to represent certain nodes of a semantic graph in a form suitable for certain user to interact with.
|
|
14
22
|
|
|
15
23
|
- $id: iolanta:OutputDatatype
|
|
@@ -70,15 +70,6 @@
|
|
|
70
70
|
FILTER (?graph != <iolanta://_meta>)
|
|
71
71
|
}
|
|
72
72
|
|
|
73
|
-
- $id: pkg:pypi/iolanta#textual-inverse-properties
|
|
74
|
-
$: Inverse Properties
|
|
75
|
-
→: https://iolanta.tech/cli/textual
|
|
76
|
-
↦: |
|
|
77
|
-
ASK WHERE {
|
|
78
|
-
GRAPH ?graph { ?something ?property $this }
|
|
79
|
-
FILTER (?graph != <iolanta://_meta>)
|
|
80
|
-
}
|
|
81
|
-
|
|
82
73
|
- $id: "urn:"
|
|
83
74
|
iolanta:hasFacetByPrefix:
|
|
84
75
|
$id: pkg:pypi/iolanta#textual-provenance
|
|
@@ -274,12 +274,17 @@ class PageSwitcher(IolantaWidgetMixin, ContentSwitcher): # noqa: WPS214
|
|
|
274
274
|
facet_iri: str | None = None,
|
|
275
275
|
):
|
|
276
276
|
"""Go to an IRI."""
|
|
277
|
-
# Convert string to
|
|
277
|
+
# Convert string to Node if needed.
|
|
278
278
|
# This happens when called via Textual action strings (from keyboard bindings
|
|
279
|
-
# in page.py line 24), which serialize
|
|
280
|
-
# Direct calls (like line 77) pass
|
|
279
|
+
# in page.py line 24), which serialize nodes to strings in f-strings.
|
|
280
|
+
# Direct calls (like line 77) pass Node objects directly.
|
|
281
281
|
if isinstance(this, str):
|
|
282
|
-
|
|
282
|
+
# Check if string represents a blank node (starts with "_:")
|
|
283
|
+
if this.startswith('_:'):
|
|
284
|
+
# Create a BNode with the full string (including the "_:")
|
|
285
|
+
this = BNode(this)
|
|
286
|
+
else:
|
|
287
|
+
this = URIRef(this)
|
|
283
288
|
|
|
284
289
|
self.run_worker(
|
|
285
290
|
functools.partial(
|
|
@@ -1,4 +1,5 @@
|
|
|
1
1
|
import functools
|
|
2
|
+
from pathlib import Path
|
|
2
3
|
from xml.dom import minidom # noqa: S408
|
|
3
4
|
|
|
4
5
|
import funcy
|
|
@@ -177,6 +178,7 @@ class PageFooter(PageTitle):
|
|
|
177
178
|
class InverseProperties(TextualDefaultFacet):
|
|
178
179
|
"""Inverse properties view."""
|
|
179
180
|
|
|
181
|
+
META = Path(__file__).parent / 'textual-inverse-properties.yamlld'
|
|
180
182
|
query_file_name = 'inverse-properties.sparql'
|
|
181
183
|
properties_on_the_right = True
|
|
182
184
|
|
|
@@ -0,0 +1,25 @@
|
|
|
1
|
+
"@context":
|
|
2
|
+
"@import": https://json-ld.org/contexts/dollar-convenience.jsonld
|
|
3
|
+
iolanta: https://iolanta.tech/
|
|
4
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
|
|
5
|
+
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
6
|
+
|
|
7
|
+
$: rdfs:label
|
|
8
|
+
→:
|
|
9
|
+
"@type": "@id"
|
|
10
|
+
"@id": iolanta:outputs
|
|
11
|
+
⪯:
|
|
12
|
+
"@type": "@id"
|
|
13
|
+
"@id": iolanta:is-preferred-over
|
|
14
|
+
↦: iolanta:matches
|
|
15
|
+
|
|
16
|
+
$id: pkg:pypi/iolanta#textual-inverse-properties
|
|
17
|
+
|
|
18
|
+
$: Inverse Properties
|
|
19
|
+
→: https://iolanta.tech/cli/textual
|
|
20
|
+
|
|
21
|
+
↦: |
|
|
22
|
+
ASK WHERE {
|
|
23
|
+
GRAPH ?graph { ?something ?property $this }
|
|
24
|
+
FILTER (?graph != <iolanta://_meta>)
|
|
25
|
+
}
|
iolanta/facets/title/facets.py
CHANGED
|
@@ -1,3 +1,5 @@
|
|
|
1
|
+
from pathlib import Path
|
|
2
|
+
|
|
1
3
|
import funcy
|
|
2
4
|
from rdflib import URIRef
|
|
3
5
|
|
|
@@ -17,6 +19,8 @@ PRIORITIES = [ # noqa: WPS407
|
|
|
17
19
|
class TitleFacet(Facet[str]):
|
|
18
20
|
"""Title of an object."""
|
|
19
21
|
|
|
22
|
+
META = Path(__file__).parent / 'title.yamlld'
|
|
23
|
+
|
|
20
24
|
def show(self) -> str:
|
|
21
25
|
"""Render title of a thing."""
|
|
22
26
|
choices = self.stored_query(
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
"@context":
|
|
2
|
+
"@import": https://json-ld.org/contexts/dollar-convenience.jsonld
|
|
3
|
+
iolanta: https://iolanta.tech/
|
|
4
|
+
rdfs: "http://www.w3.org/2000/01/rdf-schema#"
|
|
5
|
+
rdf: http://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
6
|
+
xsd: http://www.w3.org/2001/XMLSchema#
|
|
7
|
+
|
|
8
|
+
$: rdfs:label
|
|
9
|
+
→:
|
|
10
|
+
"@type": "@id"
|
|
11
|
+
"@id": iolanta:outputs
|
|
12
|
+
⪯:
|
|
13
|
+
"@type": "@id"
|
|
14
|
+
"@id": iolanta:is-preferred-over
|
|
15
|
+
⊆:
|
|
16
|
+
"@type": "@id"
|
|
17
|
+
"@id": rdfs:subClassOf
|
|
18
|
+
iolanta:hasDefaultFacet:
|
|
19
|
+
"@type": "@id"
|
|
20
|
+
|
|
21
|
+
$id: pkg:pypi/iolanta#title
|
|
22
|
+
|
|
23
|
+
$: Title
|
|
24
|
+
→: https://iolanta.tech/datatypes/title
|
|
25
|
+
|
|
26
|
+
"@included":
|
|
27
|
+
- $id: https://iolanta.tech/datatypes/title
|
|
28
|
+
$type: iolanta:OutputDatatype
|
|
29
|
+
$: Title
|
|
30
|
+
rdfs:comment: >
|
|
31
|
+
A short string naming something. Used in links, lists, page titles, property tables, and many other cases.
|
|
32
|
+
⊆: xsd:string
|
|
33
|
+
iolanta:hasDefaultFacet: pkg:pypi/iolanta#title
|
iolanta/namespaces.py
CHANGED
|
@@ -32,11 +32,11 @@ class DCTERMS(rdflib.DCTERMS):
|
|
|
32
32
|
|
|
33
33
|
|
|
34
34
|
class VANN(rdflib.VANN):
|
|
35
|
-
|
|
35
|
+
...
|
|
36
36
|
|
|
37
37
|
|
|
38
38
|
class FOAF(rdflib.FOAF):
|
|
39
|
-
|
|
39
|
+
...
|
|
40
40
|
|
|
41
41
|
|
|
42
42
|
class XSD(rdflib.XSD):
|
iolanta/sparqlspace/processor.py
CHANGED
|
@@ -58,7 +58,7 @@ REDIRECTS = MappingProxyType({
|
|
|
58
58
|
# FIXME This is presently hardcoded; we need to
|
|
59
59
|
# - either find a way to resolve these URLs automatically,
|
|
60
60
|
# - or create a repository of those redirects online.
|
|
61
|
-
'
|
|
61
|
+
'http://purl.org/vocab/vann/': URIRef(
|
|
62
62
|
'https://vocab.org/vann/vann-vocab-20100607.rdf',
|
|
63
63
|
),
|
|
64
64
|
URIRef(DC): URIRef(DCTERMS),
|
|
@@ -66,8 +66,10 @@ REDIRECTS = MappingProxyType({
|
|
|
66
66
|
URIRef(RDFS): URIRef(RDFS),
|
|
67
67
|
URIRef(OWL): URIRef(OWL),
|
|
68
68
|
|
|
69
|
-
#
|
|
70
|
-
URIRef('https
|
|
69
|
+
# Redirect FOAF namespace to GitHub mirror
|
|
70
|
+
URIRef('https?://xmlns.com/foaf/0.1/.+'): URIRef(
|
|
71
|
+
'https://raw.githubusercontent.com/foaf/foaf/refs/heads/master/xmlns.com/htdocs/foaf/0.1/index.rdf',
|
|
72
|
+
),
|
|
71
73
|
URIRef('https://www.nanopub.org/nschema'): URIRef(
|
|
72
74
|
'https://www.nanopub.net/nschema#',
|
|
73
75
|
),
|
|
@@ -123,7 +125,7 @@ def _extract_from_mapping( # noqa: WPS213
|
|
|
123
125
|
term
|
|
124
126
|
for triple in algebra['triples']
|
|
125
127
|
for term in triple
|
|
126
|
-
if
|
|
128
|
+
if isinstance(term, URIRef)
|
|
127
129
|
]
|
|
128
130
|
|
|
129
131
|
case 'Filter' | 'UnaryNot' | 'OrderCondition':
|
|
@@ -540,6 +542,15 @@ class GlobalSPARQLProcessor(Processor): # noqa: WPS338, WPS214
|
|
|
540
542
|
|
|
541
543
|
TODO This function is too big, we have to refactor it.
|
|
542
544
|
"""
|
|
545
|
+
# Blank nodes cannot be loaded from URLs
|
|
546
|
+
if isinstance(source, BNode):
|
|
547
|
+
return Skipped()
|
|
548
|
+
|
|
549
|
+
# Also check if URIRef represents a blank node (can happen if BNode
|
|
550
|
+
# was serialized to string and converted to URIRef)
|
|
551
|
+
if isinstance(source, URIRef) and str(source).startswith('_:'):
|
|
552
|
+
raise ValueError('This is actually a blank node but masked as a URIREF')
|
|
553
|
+
|
|
543
554
|
url = URL(source)
|
|
544
555
|
|
|
545
556
|
if url.scheme in {'file', 'python', 'local', 'urn', 'doi'}:
|
|
@@ -13,8 +13,8 @@ iolanta/context.py,sha256=bZR-tbZIrDQ-Vby01PMDZ6ifxM-0YMK68RJvAsyqCTs,507
|
|
|
13
13
|
iolanta/conversions.py,sha256=hbLwRF1bAbOxy17eMWLHhYksbdCWN-v4-0y0wn3XSSg,1185
|
|
14
14
|
iolanta/data/context.yaml,sha256=U7qs7fb8YRJWTbvKuubsQ_lIltIbWJDEDjLoy53k_Ck,1629
|
|
15
15
|
iolanta/data/graph-triples.yamlld,sha256=rtn-HfbijaqbmjCrKv-2pVV_aaJhB_9_OqXA_yLznCs,209
|
|
16
|
-
iolanta/data/iolanta.yaml,sha256=
|
|
17
|
-
iolanta/data/textual-browser.yaml,sha256=
|
|
16
|
+
iolanta/data/iolanta.yaml,sha256=7jXy1WHGCaTinwwZyGn0oazD02gggEtlNBhknH2RyCU,1582
|
|
17
|
+
iolanta/data/textual-browser.yaml,sha256=1GHa-uoRai1-osOwpNPb-gAZMuA6N8fZaEz1G990n-w,2834
|
|
18
18
|
iolanta/declension/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
19
|
iolanta/declension/data/declension.yamlld,sha256=xpHW458GS6Q2NQJxOzGxqeX-awvtlk6WjAAQUjBmiMw,968
|
|
20
20
|
iolanta/declension/facet.py,sha256=7SsPACjeIGnONLhfjB4KBjqt-FRISVpZenshJzqC0A8,1349
|
|
@@ -60,19 +60,20 @@ iolanta/facets/textual_browser/home.py,sha256=GfDD1G2HiwdLkPkNdcYRqVIxDl5tWH9few
|
|
|
60
60
|
iolanta/facets/textual_browser/location.py,sha256=qWa7xUgaWKYOmiQuwI1TbyvujpKRb1pxJJZ8lFDcjKk,259
|
|
61
61
|
iolanta/facets/textual_browser/models.py,sha256=DqTBjhkkTt5mNwqr4DzNbPSqzV-QtNqfKj7wpn6T3ao,173
|
|
62
62
|
iolanta/facets/textual_browser/page.py,sha256=NkcQ5rSKZRbp63C8ozgsR_iVhcKHGv_SytUCQyGa7ss,786
|
|
63
|
-
iolanta/facets/textual_browser/page_switcher.py,sha256=
|
|
63
|
+
iolanta/facets/textual_browser/page_switcher.py,sha256=M0-bBT8ROvSY84g-NejPiFcSBtb1YuwMJzZXU3WdGF0,10455
|
|
64
64
|
iolanta/facets/textual_class/__init__.py,sha256=tiL0p-3JspGcBRj4qa3rmoBFAuadk71l2ja2lJN6CEs,75
|
|
65
65
|
iolanta/facets/textual_class/facets.py,sha256=MiGTapgt30ME2fapwdrD_yQj4mhkdmyMAjzxaoLW5Dk,6087
|
|
66
66
|
iolanta/facets/textual_class/sparql/instances.sparql,sha256=v0rHyr0Ha-ioZ2ssv0ytqeO8-Qt1xnX9FKfwSstttzI,230
|
|
67
67
|
iolanta/facets/textual_class/textual-class.yamlld,sha256=HBQCC3Kg41rFfPne9Gx1CXsQ3nQPXmwUXh9hr3AQU5A,586
|
|
68
68
|
iolanta/facets/textual_default/__init__.py,sha256=snxA0FEY9qfAxNv3MlZLrJsXugD4dvs5hLStZWV7soM,158
|
|
69
|
-
iolanta/facets/textual_default/facets.py,sha256=
|
|
69
|
+
iolanta/facets/textual_default/facets.py,sha256=D3W9kMxel_BqA8mWoxfWc3IJlHMwdM5ndyZ5SBeYHnA,5721
|
|
70
70
|
iolanta/facets/textual_default/sparql/inverse-properties.sparql,sha256=2m2q3C6jMQ_8o-0cPgIYrT77l6UnY3oqI37-Ed7p4-c,65
|
|
71
71
|
iolanta/facets/textual_default/sparql/label.sparql,sha256=IWAkkgMKtIZ7Zpg8LUJ5fDZ9tiI8fiRYZo-zT61Fong,121
|
|
72
72
|
iolanta/facets/textual_default/sparql/nodes-for-property.sparql,sha256=J9vg0Pz2HXDlPCeZ6IS2C0wODrpYDuNeD6DYT6UdNsU,68
|
|
73
73
|
iolanta/facets/textual_default/sparql/properties.sparql,sha256=fr33KZ4OiwR5PK5QVibcO5azkZYNC2Ollq2FXIb-TTc,334
|
|
74
74
|
iolanta/facets/textual_default/tcss/default.tcss,sha256=v6k6LvZMndRW4t9Iq-7QF59U_LJTdohRsyavwTY5ruI,69
|
|
75
75
|
iolanta/facets/textual_default/templates/default.md,sha256=CuD5lISsE2eAVnm2z6kfNff-vEgrNG95Wi5LTgkieWY,21
|
|
76
|
+
iolanta/facets/textual_default/textual-inverse-properties.yamlld,sha256=xy5x11CjJiqBbkl4UlRO9cpa3liZb9vXCpIxkrg8pbM,594
|
|
76
77
|
iolanta/facets/textual_default/triple_uri_ref.py,sha256=XfuNPaAe-YxH8IyrdrHQ641aWh5zVMVs0L0WC3D6A4M,1279
|
|
77
78
|
iolanta/facets/textual_default/widgets.py,sha256=uusHQzIERESBEyYI0k0bnYirLVZvFtsxikonh195bjw,9362
|
|
78
79
|
iolanta/facets/textual_graph/__init__.py,sha256=DWd2gljzL8SiyYKQdBH78HouF1EMqgCH-w0K5OEmL2I,59
|
|
@@ -102,8 +103,9 @@ iolanta/facets/textual_provenance/facets.py,sha256=7n4PalKdOWqCoYKocto9H6RinSBmW
|
|
|
102
103
|
iolanta/facets/textual_provenance/sparql/graphs.sparql,sha256=B45uKFd-1vrBuMDSbTURjUUEjHt51vAbqdL4tUcgMvk,103
|
|
103
104
|
iolanta/facets/textual_provenance/sparql/triples.sparql,sha256=V-EdVuWbGHY3MspbJIMpwxPQautLDqJJV-AmihDjSHc,53
|
|
104
105
|
iolanta/facets/title/__init__.py,sha256=fxpkG-YvHDp6eiVL3o7BbwhPMZZe-1R2Qi6S36QCTf8,77
|
|
105
|
-
iolanta/facets/title/facets.py,sha256=
|
|
106
|
+
iolanta/facets/title/facets.py,sha256=kp_ztvlXpu7I82Vh_0bL7mKY3kM_q8z8Rmp7M4MrzAQ,821
|
|
106
107
|
iolanta/facets/title/sparql/title.sparql,sha256=VKHeE9NvV6sFgVGvsLQD9z__J4APj8TDHLT4Rk-Ascc,1102
|
|
108
|
+
iolanta/facets/title/title.yamlld,sha256=FjfqNPl3EAzZNLYAZNQ6mHfNmFkfxMm1A43gygftg-4,878
|
|
107
109
|
iolanta/facets/wikibase_statement_title/__init__.py,sha256=_yk1akxgSJOiUBJIc8QGrD2vovvmx_iw_vJDuv1rD7M,91
|
|
108
110
|
iolanta/facets/wikibase_statement_title/facets.py,sha256=gNRqiwOTMxyyHYvb_vIrfd-4ipb8wfyJ4GgPcQdyy9E,726
|
|
109
111
|
iolanta/facets/wikibase_statement_title/sparql/statement-title.sparql,sha256=n07DQWxKqB5c3CA4kacq2HSN0R0dLgnMnLP1AxMo5YA,320
|
|
@@ -124,7 +126,7 @@ iolanta/mermaid/sparql/ask-has-triples.sparql,sha256=mOYJ_rutEG_15PKTCHSv2GqzbkA
|
|
|
124
126
|
iolanta/mermaid/sparql/graph.sparql,sha256=mDGf05od3CUFhzI6rcqt5ZMVy-gSKDu-WxmV_zpIsVI,62
|
|
125
127
|
iolanta/mermaid/sparql/subgraphs.sparql,sha256=VuoOYr_ZtKXXRrBpAEJek0mBRzR9EV-KnKENgAbkzCs,71
|
|
126
128
|
iolanta/models.py,sha256=2VrJGQE1YXbbVB1K5McCXe2CLAlzOUhA8FvbRI10nCc,3131
|
|
127
|
-
iolanta/namespaces.py,sha256=
|
|
129
|
+
iolanta/namespaces.py,sha256=S4fSjWrL33jylItDf6y2_CIJ4B-RQXDhBsZkB-SV9mw,1107
|
|
128
130
|
iolanta/node_to_qname.py,sha256=a82_qpgT87cbekY_76tTkl4Z-6Rz6am4UGIQChUf9Y0,794
|
|
129
131
|
iolanta/parse_quads.py,sha256=X-3hQAFzRD9U8KCuZMQTVOAapJR4OHkPoRbgJYiVbnk,4539
|
|
130
132
|
iolanta/plugin.py,sha256=MSxpuOIx93AgBahfS8bYh31MEgcwtUSQhj4Js7fgdSI,1096
|
|
@@ -139,12 +141,12 @@ iolanta/sparqlspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSu
|
|
|
139
141
|
iolanta/sparqlspace/cli.py,sha256=pb6q03lzrU8OaZ4A3QAQEmaFYcQ_-sHUrPhRs6GE88w,1590
|
|
140
142
|
iolanta/sparqlspace/inference/wikidata-prop-label.sparql,sha256=JYLAs28Z3a77cMcv44aZplwwrdqB-yshZn1dDZmRFAU,250
|
|
141
143
|
iolanta/sparqlspace/inference/wikidata-statement-label.sparql,sha256=_Dp9jKCpCp2pLk0uacNUhUvvQ2Hov-WiMFprtuYTRyY,759
|
|
142
|
-
iolanta/sparqlspace/processor.py,sha256=
|
|
144
|
+
iolanta/sparqlspace/processor.py,sha256=IsN6jc9HAE1B2TgZ-Wkq05WZMPmAvqajxu4peGGQwqo,25554
|
|
143
145
|
iolanta/sparqlspace/sparqlspace.py,sha256=Y8_ZPXwuGEXbEes6XQjaQWA2Zv9y8SWxMPDFdqVBGFo,796
|
|
144
146
|
iolanta/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
145
147
|
iolanta/widgets/description.py,sha256=98Qd3FwT9r8sYqKjl9ZEptaVX9jJ2ULWf0uy3j52p5o,800
|
|
146
148
|
iolanta/widgets/mixin.py,sha256=nDRCOc-gizCf1a5DAcYs4hW8eZEd6pHBPFsfm0ncv7E,251
|
|
147
|
-
iolanta-2.1.
|
|
148
|
-
iolanta-2.1.
|
|
149
|
-
iolanta-2.1.
|
|
150
|
-
iolanta-2.1.
|
|
149
|
+
iolanta-2.1.10.dist-info/METADATA,sha256=6WI92t1Tf07VRH37C_S7Q-iB_PrDEyfxfik2ESuxBJI,2317
|
|
150
|
+
iolanta-2.1.10.dist-info/WHEEL,sha256=zp0Cn7JsFoX2ATtOhtaFYIiE2rmFAD4OcMhtUki8W3U,88
|
|
151
|
+
iolanta-2.1.10.dist-info/entry_points.txt,sha256=Vu0W4D6H74HsTICvD8CDB1wYs6XNSyu55EZVXMo4H84,1718
|
|
152
|
+
iolanta-2.1.10.dist-info/RECORD,,
|
|
File without changes
|
|
File without changes
|