iolanta 2.0.8__py3-none-any.whl → 2.1.4__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/cli/main.py +45 -25
- iolanta/data/graph-triples.yamlld +2 -2
- iolanta/data/textual-browser.yaml +23 -22
- iolanta/declension/__init__.py +0 -0
- iolanta/declension/data/declension.yamlld +39 -0
- iolanta/declension/facet.py +44 -0
- iolanta/declension/sparql/declension.sparql +8 -0
- iolanta/facets/cli/record.py +2 -2
- iolanta/facets/facet.py +1 -22
- iolanta/facets/foaf_person_title/facet.py +2 -2
- iolanta/facets/generic/bool_literal.py +3 -3
- iolanta/facets/generic/date_literal.py +1 -1
- iolanta/facets/generic/default.py +2 -2
- iolanta/facets/html/code_literal.py +3 -3
- iolanta/facets/icon.py +1 -1
- iolanta/facets/locator.py +1 -4
- iolanta/facets/qname.py +2 -2
- iolanta/facets/textual_browser/app.py +7 -3
- iolanta/facets/textual_browser/facet.py +1 -1
- iolanta/facets/textual_browser/page_switcher.py +13 -18
- iolanta/facets/textual_class/facets.py +3 -3
- iolanta/facets/textual_class/sparql/instances.sparql +4 -1
- iolanta/facets/textual_default/facets.py +5 -5
- iolanta/facets/textual_default/widgets.py +1 -1
- iolanta/facets/textual_graph/facets.py +3 -3
- iolanta/facets/textual_graph_triples.py +1 -1
- iolanta/facets/textual_link/facet.py +4 -4
- iolanta/facets/textual_nanopublication/facet.py +1 -1
- iolanta/facets/textual_no_facet_found.py +3 -1
- iolanta/facets/textual_ontology/facets.py +3 -3
- iolanta/facets/textual_provenance/facets.py +1 -1
- iolanta/facets/title/facets.py +3 -5
- iolanta/facets/title/sparql/title.sparql +5 -0
- iolanta/facets/wikibase_statement_title/facets.py +2 -2
- iolanta/iolanta.py +35 -68
- iolanta/labeled_triple_set/__init__.py +0 -0
- iolanta/labeled_triple_set/data/labeled_triple_set.yamlld +42 -0
- iolanta/labeled_triple_set/labeled_triple_set.py +137 -0
- iolanta/labeled_triple_set/sparql/triples.sparql +5 -0
- iolanta/mermaid/__init__.py +0 -0
- iolanta/mermaid/facet.py +127 -0
- iolanta/mermaid/mermaid.yamlld +42 -0
- iolanta/mermaid/models.py +156 -0
- iolanta/mermaid/sparql/graph.sparql +5 -0
- iolanta/mermaid/sparql/subgraphs.sparql +3 -0
- iolanta/namespaces.py +1 -1
- iolanta/resolvers/base.py +2 -1
- iolanta/resolvers/dispatch.py +41 -0
- iolanta/resolvers/pypi.py +106 -0
- iolanta/resolvers/python_import.py +9 -32
- iolanta/sparqlspace/processor.py +4 -1
- {iolanta-2.0.8.dist-info → iolanta-2.1.4.dist-info}/METADATA +7 -8
- {iolanta-2.0.8.dist-info → iolanta-2.1.4.dist-info}/RECORD +55 -41
- {iolanta-2.0.8.dist-info → iolanta-2.1.4.dist-info}/WHEEL +1 -1
- iolanta-2.1.4.dist-info/entry_points.txt +33 -0
- iolanta/data/cli.yaml +0 -30
- iolanta/data/html.yaml +0 -15
- iolanta-2.0.8.dist-info/entry_points.txt +0 -10
|
@@ -1,40 +1,17 @@
|
|
|
1
|
-
import
|
|
2
|
-
from typing import Type, cast
|
|
1
|
+
from typing import Type
|
|
3
2
|
|
|
4
3
|
from rdflib import URIRef
|
|
5
4
|
|
|
6
|
-
from iolanta.facets.errors import FacetNotCallable
|
|
7
5
|
from iolanta.facets.facet import Facet
|
|
8
6
|
from iolanta.resolvers.base import Resolver
|
|
9
7
|
|
|
10
8
|
|
|
11
9
|
class PythonImportResolver(Resolver):
|
|
12
|
-
|
|
13
|
-
|
|
14
|
-
|
|
15
|
-
|
|
16
|
-
|
|
17
|
-
|
|
18
|
-
|
|
19
|
-
|
|
20
|
-
'which {url} does not comply to.'.format(
|
|
21
|
-
url=url,
|
|
22
|
-
),
|
|
23
|
-
)
|
|
24
|
-
|
|
25
|
-
# It is impossible to use `yarl` for this operation because it (or,
|
|
26
|
-
# rather, one of upper classes from `urllib` that `yarl` depends
|
|
27
|
-
# upon)
|
|
28
|
-
# will lowercase the URL when parsing it - which means, irreversibly. We
|
|
29
|
-
# have to resort to plain string manipulation.
|
|
30
|
-
import_path = url.replace('python://', '').strip('/')
|
|
31
|
-
|
|
32
|
-
facet = cast(Type['iolanta.Facet'], pydoc.locate(import_path))
|
|
33
|
-
|
|
34
|
-
if not callable(facet):
|
|
35
|
-
raise FacetNotCallable(
|
|
36
|
-
path=import_path,
|
|
37
|
-
facet=facet,
|
|
38
|
-
)
|
|
39
|
-
|
|
40
|
-
return facet
|
|
10
|
+
"""Resolve facet IRIs into classes by importing Python modules."""
|
|
11
|
+
|
|
12
|
+
def resolve(self, uri: URIRef) -> Type[Facet]:
|
|
13
|
+
"""Find a resolver by IRI in python:<module>.<class> format."""
|
|
14
|
+
raise NotImplementedError(
|
|
15
|
+
f'{uri} URL for facet import is unsupported anymore '
|
|
16
|
+
f'due to security reasons.',
|
|
17
|
+
)
|
iolanta/sparqlspace/processor.py
CHANGED
|
@@ -24,7 +24,7 @@ from rdflib.plugins.sparql.parserutils import CompValue
|
|
|
24
24
|
from rdflib.plugins.sparql.sparql import Query
|
|
25
25
|
from rdflib.query import Processor
|
|
26
26
|
from rdflib.term import BNode, Literal, Node
|
|
27
|
-
from requests.exceptions import ConnectionError, InvalidSchema
|
|
27
|
+
from requests.exceptions import ConnectionError, HTTPError, InvalidSchema
|
|
28
28
|
from yaml_ld.document_loaders.content_types import ParserNotFound
|
|
29
29
|
from yaml_ld.errors import NotFound, YAMLLDError
|
|
30
30
|
from yarl import URL
|
|
@@ -687,6 +687,9 @@ class GlobalSPARQLProcessor(Processor): # noqa: WPS338, WPS214
|
|
|
687
687
|
except YAMLLDError as yaml_ld_error:
|
|
688
688
|
self.logger.error(f'{source} | {yaml_ld_error}')
|
|
689
689
|
return Loaded()
|
|
690
|
+
except HTTPError as http_error:
|
|
691
|
+
self.logger.warning(f'{source} | HTTP error: {http_error}')
|
|
692
|
+
return Loaded()
|
|
690
693
|
|
|
691
694
|
try:
|
|
692
695
|
quads = list(
|
|
@@ -1,16 +1,15 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
2
|
Name: iolanta
|
|
3
|
-
Version: 2.
|
|
3
|
+
Version: 2.1.4
|
|
4
4
|
Summary: Semantic Web browser
|
|
5
5
|
License: MIT
|
|
6
6
|
Author: Anatoly Scherbakov
|
|
7
7
|
Author-email: altaisoft@gmail.com
|
|
8
|
-
Requires-Python: >=3.
|
|
8
|
+
Requires-Python: >=3.12,<4.0
|
|
9
9
|
Classifier: License :: OSI Approved :: MIT License
|
|
10
10
|
Classifier: Programming Language :: Python :: 3
|
|
11
|
-
Classifier: Programming Language :: Python :: 3.10
|
|
12
|
-
Classifier: Programming Language :: Python :: 3.11
|
|
13
11
|
Classifier: Programming Language :: Python :: 3.12
|
|
12
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
14
13
|
Provides-Extra: all
|
|
15
14
|
Requires-Dist: boltons (>=24.0.0)
|
|
16
15
|
Requires-Dist: classes (>=0.4.0)
|
|
@@ -21,9 +20,9 @@ Requires-Dist: dominate (>=2.6.0)
|
|
|
21
20
|
Requires-Dist: funcy (>=2.0)
|
|
22
21
|
Requires-Dist: loguru (>=0.7.3)
|
|
23
22
|
Requires-Dist: more-itertools (>=9.0.0)
|
|
24
|
-
Requires-Dist: nanopub (>=2.0.1)
|
|
25
23
|
Requires-Dist: owlrl (>=6.0.2)
|
|
26
24
|
Requires-Dist: oxrdflib (>=0.4.0)
|
|
25
|
+
Requires-Dist: packageurl-python (>=0.17.5)
|
|
27
26
|
Requires-Dist: python-frontmatter (>=0.5.0)
|
|
28
27
|
Requires-Dist: rdflib (<8.0)
|
|
29
28
|
Requires-Dist: reasonable (>=0.2.6)
|
|
@@ -31,8 +30,8 @@ Requires-Dist: requests (>=2.25.1)
|
|
|
31
30
|
Requires-Dist: rich (>=13.3.1)
|
|
32
31
|
Requires-Dist: textual (>=0.83.0)
|
|
33
32
|
Requires-Dist: typer (>=0.9.0)
|
|
34
|
-
Requires-Dist: watchfiles (>=1.0.4
|
|
35
|
-
Requires-Dist: yaml-ld (>=1.1.
|
|
33
|
+
Requires-Dist: watchfiles (>=1.0.4)
|
|
34
|
+
Requires-Dist: yaml-ld (>=1.1.12)
|
|
36
35
|
Requires-Dist: yarl (>=1.9.4)
|
|
37
36
|
Description-Content-Type: text/markdown
|
|
38
37
|
|
|
@@ -6,17 +6,19 @@ iolanta/cli/formatters/choose.py,sha256=LWzsO_9IBSSgYNIyLlItkp8TNvpW3v6YCQ8-6kbI
|
|
|
6
6
|
iolanta/cli/formatters/csv.py,sha256=ceJ_DTz0beqeK-d6FPBQqqjXrziEfF0FRSLoGZCt_fs,760
|
|
7
7
|
iolanta/cli/formatters/json.py,sha256=Og5B9UrSM_0NWqW5Afpsy6WH8ZfYgPMVXYvT3i-43Jc,748
|
|
8
8
|
iolanta/cli/formatters/pretty.py,sha256=IypZRAr2vNqcXFY6NOIc75mpyfpFWh56aCBlOPDDieQ,2901
|
|
9
|
-
iolanta/cli/main.py,sha256=
|
|
9
|
+
iolanta/cli/main.py,sha256=W5huhmJq97adQ7zMMEi4o8ndzxeZUEvCZAtyRLwBl-A,3865
|
|
10
10
|
iolanta/cli/models.py,sha256=cjbpowdzI4wAP0DUk3qoVHyimk6AZwlXi9CGmusZTuM,159
|
|
11
11
|
iolanta/cli/pretty_print.py,sha256=M6E3TmhzA6JY5GeUVmDZLmOh5u70-393PVit4voFKDI,977
|
|
12
12
|
iolanta/context.py,sha256=bZR-tbZIrDQ-Vby01PMDZ6ifxM-0YMK68RJvAsyqCTs,507
|
|
13
13
|
iolanta/conversions.py,sha256=hbLwRF1bAbOxy17eMWLHhYksbdCWN-v4-0y0wn3XSSg,1185
|
|
14
|
-
iolanta/data/cli.yaml,sha256=TsnldYXoY5GIzoNuPDvwBKGw8eAEForZW1FCKqKI0Kg,1029
|
|
15
14
|
iolanta/data/context.yaml,sha256=LUBasiBKgQeGAYjYV_T5XvgPlrdzACeKaZwY_rKzjtI,1636
|
|
16
|
-
iolanta/data/graph-triples.yamlld,sha256=
|
|
17
|
-
iolanta/data/html.yaml,sha256=hVFdLWLy8FMY8xpOrJMYc-tE3S0Nq83xuxVkjRW_7rI,517
|
|
15
|
+
iolanta/data/graph-triples.yamlld,sha256=rtn-HfbijaqbmjCrKv-2pVV_aaJhB_9_OqXA_yLznCs,209
|
|
18
16
|
iolanta/data/iolanta.yaml,sha256=xubIFBNU02lmFXhgOSuyQwUcZD3xCqVfeVAZMvOxKbI,1433
|
|
19
|
-
iolanta/data/textual-browser.yaml,sha256=
|
|
17
|
+
iolanta/data/textual-browser.yaml,sha256=nJbDS0B3G-emM9vCu2DIlWZBhzmWbO3zrWkt_Rmv5uA,3700
|
|
18
|
+
iolanta/declension/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
19
|
+
iolanta/declension/data/declension.yamlld,sha256=fA1OptmhyIK7-mNy3fbK5G07OE4ueBW2x812b7VQkzA,975
|
|
20
|
+
iolanta/declension/facet.py,sha256=7SsPACjeIGnONLhfjB4KBjqt-FRISVpZenshJzqC0A8,1349
|
|
21
|
+
iolanta/declension/sparql/declension.sparql,sha256=T84bfCNDXodmFEH26S45DyOJHoWz3T4cC7hSwtAcFSw,185
|
|
20
22
|
iolanta/ensure_is_context.py,sha256=9aok8asyEx7KPesOR28VBDb3Ch9kfc3eoCpQSJwj07U,717
|
|
21
23
|
iolanta/entry_points.py,sha256=DZbf-udlEwELFGqeWENj0M2BOUPOWlmGJdqyaEtnot0,504
|
|
22
24
|
iolanta/errors.py,sha256=t_RltahnoEvcytVa1BOq2MADgHps3JNd_h5-SFu7_wM,1250
|
|
@@ -24,41 +26,41 @@ iolanta/facets/__init__.py,sha256=u0Ff76kmsXTaaFB8sCEfrgA_fP79rBxSqllh47d8Y0o,39
|
|
|
24
26
|
iolanta/facets/cli/__init__.py,sha256=3XfuW-qgis0sS66lt36R2inY_NGIjNg5oGWK8fchffs,150
|
|
25
27
|
iolanta/facets/cli/base.py,sha256=Fdb5PH_fPHRNexa1UgFChY4-ZFkxxVpGbAkW6yxXuIs,307
|
|
26
28
|
iolanta/facets/cli/default.py,sha256=shxR2yZDGBGUr4RP_xxsX264StPuvrPu09B_hphIZkA,365
|
|
27
|
-
iolanta/facets/cli/record.py,sha256
|
|
29
|
+
iolanta/facets/cli/record.py,sha256=-nIhe6hXkoI5LJtZhqBoT8ZkYGxlLwMDbPc-xmwNhrE,1221
|
|
28
30
|
iolanta/facets/cli/sparql/link.sparql,sha256=WtWEfLAvdGc2gP0IhZil6Vglkydc3VO24vk4GwRnR5I,163
|
|
29
31
|
iolanta/facets/cli/sparql/record.sparql,sha256=GBWkmNelvaSDbvl7v0-LsJHdjFPbsSAW49kNFOUeoGQ,63
|
|
30
32
|
iolanta/facets/errors.py,sha256=sEBmnzhFcRIgOT18hfNwyMMjry0waa6IB-jC2NVTA50,4124
|
|
31
|
-
iolanta/facets/facet.py,sha256=
|
|
33
|
+
iolanta/facets/facet.py,sha256=hV_NzUEIiy25EENXd0qGRyJ1SCRuztVdy1ZFUK3Sc44,2070
|
|
32
34
|
iolanta/facets/foaf_person_title/__init__.py,sha256=oj4MNVQvv8Dysb27xiWjtZCii8-nT7-WFa3WMWUwbtU,67
|
|
33
|
-
iolanta/facets/foaf_person_title/facet.py,sha256=
|
|
35
|
+
iolanta/facets/foaf_person_title/facet.py,sha256=_lKtRosZWuKpjKZ3Ssdq79jVhiLE53jaf22Rnq4HCxs,634
|
|
34
36
|
iolanta/facets/foaf_person_title/sparql/names.sparql,sha256=p_2hHZXhEaJ8IwGlvLoN0vb0vhGqo44uAVRpDyTzflU,107
|
|
35
37
|
iolanta/facets/generic/__init__.py,sha256=DZTysMi4uvDzm642422W6khSvtNaqhqunbtiPyqWTL8,116
|
|
36
|
-
iolanta/facets/generic/bool_literal.py,sha256
|
|
37
|
-
iolanta/facets/generic/date_literal.py,sha256=
|
|
38
|
-
iolanta/facets/generic/default.py,sha256=
|
|
38
|
+
iolanta/facets/generic/bool_literal.py,sha256=0K8HRLFmSjD0gpnEAiTgEw7YylhM_rTr5XmkoVrPnf0,401
|
|
39
|
+
iolanta/facets/generic/date_literal.py,sha256=GFTnbAWa01CnI7yy-OG6j3dx9yZKwdfUGGsl6j8WbpY,558
|
|
40
|
+
iolanta/facets/generic/default.py,sha256=syFQMiypkOSFqvlUMWr1pnlw2Mf_s6WOu2S7ZysfX24,1886
|
|
39
41
|
iolanta/facets/generic/sparql/default.sparql,sha256=6Z-gilWIT69Wx6mlNdKH2ocy5lkvSzkXMXDpAJA3ooU,546
|
|
40
42
|
iolanta/facets/html/__init__.py,sha256=iKwhZnYEP7qe8V_inDehTPz63Qb_MjcR6c6aHHBwWxY,48
|
|
41
43
|
iolanta/facets/html/base.py,sha256=JcpK7YM_QQE9vwH5w5F_EgPkPv-XRzOrcZlVSy4LhIs,163
|
|
42
|
-
iolanta/facets/html/code_literal.py,sha256=
|
|
44
|
+
iolanta/facets/html/code_literal.py,sha256=hdbC304zoa9ar9Lp-dH7w079GxVGlJo8U98SOe6U82g,397
|
|
43
45
|
iolanta/facets/html/default.py,sha256=Dmf_kYiL2M954iigyYsiWrMstwZ1nvxKetuR6aW3xYY,647
|
|
44
|
-
iolanta/facets/icon.py,sha256=
|
|
45
|
-
iolanta/facets/locator.py,sha256=
|
|
46
|
+
iolanta/facets/icon.py,sha256=Dubh9eCvb4kj-ppEJsTno_mn78og8YIRnDrmcefOsgs,495
|
|
47
|
+
iolanta/facets/locator.py,sha256=GE6vPmNiapQrjZy8aYneAl5W9TuvYuVQzABKlsUtsa0,9091
|
|
46
48
|
iolanta/facets/page_title.py,sha256=TwgZK2g_e5UoWYjKNgDzzkmq1EI3cY58680iC8N9kZI,1407
|
|
47
|
-
iolanta/facets/qname.py,sha256=
|
|
49
|
+
iolanta/facets/qname.py,sha256=Z2wjDWV90Z4vuwLj31MSf5EBGTb0dxzjlKl-Iv4dPao,533
|
|
48
50
|
iolanta/facets/textual_browser/__init__.py,sha256=sKgDvXOwib9n9d63kdtKCEv26-FoL0VN6zxDmfcheZ8,104
|
|
49
|
-
iolanta/facets/textual_browser/app.py,sha256=
|
|
50
|
-
iolanta/facets/textual_browser/facet.py,sha256=
|
|
51
|
+
iolanta/facets/textual_browser/app.py,sha256=rF34KbWi0L-Mozwzm-wzBS-3OqCcwbaXl0GZCl4YpAg,3503
|
|
52
|
+
iolanta/facets/textual_browser/facet.py,sha256=5mX1l6P-Ga7buzXmItxSpta6G_D4Fvwv8H6mU8-3g80,742
|
|
51
53
|
iolanta/facets/textual_browser/history.py,sha256=b3jTwVkVe0ZBcYkHGJ_zKIV4MSMScDdabmLQIjOZfes,1087
|
|
52
54
|
iolanta/facets/textual_browser/home.py,sha256=GfDD1G2HiwdLkPkNdcYRqVIxDl5tWH9fewh_FJb8G-I,384
|
|
53
55
|
iolanta/facets/textual_browser/location.py,sha256=w0La8bVTpJiVo1_hFTDQeIUdDdqfhYnoihuZW-f130c,205
|
|
54
56
|
iolanta/facets/textual_browser/models.py,sha256=DqTBjhkkTt5mNwqr4DzNbPSqzV-QtNqfKj7wpn6T3ao,173
|
|
55
57
|
iolanta/facets/textual_browser/page.py,sha256=NkcQ5rSKZRbp63C8ozgsR_iVhcKHGv_SytUCQyGa7ss,786
|
|
56
|
-
iolanta/facets/textual_browser/page_switcher.py,sha256=
|
|
58
|
+
iolanta/facets/textual_browser/page_switcher.py,sha256=7bQWdMjokEmi02jcULWblIt43HJoiyuLSWqYpZZ0iW8,9792
|
|
57
59
|
iolanta/facets/textual_class/__init__.py,sha256=tiL0p-3JspGcBRj4qa3rmoBFAuadk71l2ja2lJN6CEs,75
|
|
58
|
-
iolanta/facets/textual_class/facets.py,sha256=
|
|
59
|
-
iolanta/facets/textual_class/sparql/instances.sparql,sha256=
|
|
60
|
+
iolanta/facets/textual_class/facets.py,sha256=pz7NkT4_5wgMH0NIKxOoURQDk-qhl022OQWgbmtrC8w,6003
|
|
61
|
+
iolanta/facets/textual_class/sparql/instances.sparql,sha256=v0rHyr0Ha-ioZ2ssv0ytqeO8-Qt1xnX9FKfwSstttzI,230
|
|
60
62
|
iolanta/facets/textual_default/__init__.py,sha256=snxA0FEY9qfAxNv3MlZLrJsXugD4dvs5hLStZWV7soM,158
|
|
61
|
-
iolanta/facets/textual_default/facets.py,sha256=
|
|
63
|
+
iolanta/facets/textual_default/facets.py,sha256=Cw5_T7p8G_TNqMhK05FQYE0Bra-Vr4ZdqMBBhLbsOe0,4743
|
|
62
64
|
iolanta/facets/textual_default/sparql/inverse-properties.sparql,sha256=daHNdhmh92Q77CSf7ULbhxg57CuYsRFfMnXQz4VYEug,64
|
|
63
65
|
iolanta/facets/textual_default/sparql/label.sparql,sha256=IWAkkgMKtIZ7Zpg8LUJ5fDZ9tiI8fiRYZo-zT61Fong,121
|
|
64
66
|
iolanta/facets/textual_default/sparql/nodes-for-property.sparql,sha256=J9vg0Pz2HXDlPCeZ6IS2C0wODrpYDuNeD6DYT6UdNsU,68
|
|
@@ -66,56 +68,68 @@ iolanta/facets/textual_default/sparql/properties.sparql,sha256=stDbvFP4g6YKYphpN
|
|
|
66
68
|
iolanta/facets/textual_default/tcss/default.tcss,sha256=v6k6LvZMndRW4t9Iq-7QF59U_LJTdohRsyavwTY5ruI,69
|
|
67
69
|
iolanta/facets/textual_default/templates/default.md,sha256=CuD5lISsE2eAVnm2z6kfNff-vEgrNG95Wi5LTgkieWY,21
|
|
68
70
|
iolanta/facets/textual_default/triple_uri_ref.py,sha256=XfuNPaAe-YxH8IyrdrHQ641aWh5zVMVs0L0WC3D6A4M,1279
|
|
69
|
-
iolanta/facets/textual_default/widgets.py,sha256=
|
|
71
|
+
iolanta/facets/textual_default/widgets.py,sha256=w6wk_x72CANmZk9XHS7G0YOT3h3IoitKkrFBuyTI81o,9177
|
|
70
72
|
iolanta/facets/textual_graph/__init__.py,sha256=DWd2gljzL8SiyYKQdBH78HouF1EMqgCH-w0K5OEmL2I,59
|
|
71
|
-
iolanta/facets/textual_graph/facets.py,sha256=
|
|
73
|
+
iolanta/facets/textual_graph/facets.py,sha256=ed6zt7DnAlwWkOB2D3MDQrtKB3tNiegPpZbRKIoz5Zg,876
|
|
72
74
|
iolanta/facets/textual_graph/sparql/triples.sparql,sha256=5rFVGcvZzEHZj2opQQp0YlxJLpEdl-r1RjkPwo8j7t0,145
|
|
73
|
-
iolanta/facets/textual_graph_triples.py,sha256
|
|
75
|
+
iolanta/facets/textual_graph_triples.py,sha256=-Z3aKOMsWjprvU9563Z8OwaHz8KchHN_dxhKslliywo,3865
|
|
74
76
|
iolanta/facets/textual_link/__init__.py,sha256=ShlMaq2nrpinGZFutjGNKaZQhGKQGOz_VUQzUqq3U7o,95
|
|
75
|
-
iolanta/facets/textual_link/facet.py,sha256=
|
|
77
|
+
iolanta/facets/textual_link/facet.py,sha256=l4gbNoJrZpp3qUAyn5AfXHRj_GdMxnjqZ14GPYhJWHk,659
|
|
76
78
|
iolanta/facets/textual_nanopublication/__init__.py,sha256=ZYYw08MZbIiTpX4xm8AJ3eJnu9GgdOeuRDVibBDOtZc,114
|
|
77
|
-
iolanta/facets/textual_nanopublication/facet.py,sha256=
|
|
79
|
+
iolanta/facets/textual_nanopublication/facet.py,sha256=jor9FwB9muJpRr6EImjoQ0SuiUVNXOJRiwHMkRCfSFQ,370
|
|
78
80
|
iolanta/facets/textual_nanopublication/models.py,sha256=MphggSvKmYac6v866GOKW5lcQjNIbGvwIuJonKuQRVs,177
|
|
79
81
|
iolanta/facets/textual_nanopublication/nanopublication_widget.py,sha256=sQPgEx25XJ15VqB5zjZuz2q2bf_B5GWXEp32FAufxQ4,2387
|
|
80
82
|
iolanta/facets/textual_nanopublication/term_list_widget.py,sha256=NZNATKjFmgI2sE5R0ebyQh5Qk2g-kf-MT4YZ-Vw78M4,992
|
|
81
83
|
iolanta/facets/textual_nanopublication/term_widget.py,sha256=uI5msCTSIYumAIS3I8nBfUz57_vRzvCKkouevrS3Qwk,3536
|
|
82
|
-
iolanta/facets/textual_no_facet_found.py,sha256=
|
|
84
|
+
iolanta/facets/textual_no_facet_found.py,sha256=DZJKHUy-bARGi5UG0gOh70q4-uEpS_R3C-XO4pF3oiE,2608
|
|
83
85
|
iolanta/facets/textual_ontology/__init__.py,sha256=3H6bfYaEbXFr90C6ZpGWC4O-24uaO18tnTXx7mckQSA,94
|
|
84
|
-
iolanta/facets/textual_ontology/facets.py,sha256=
|
|
86
|
+
iolanta/facets/textual_ontology/facets.py,sha256=jc56d_M7CJ2lUbiohdux8KGrtF-pcS_jsNBOIx7UXsE,3341
|
|
85
87
|
iolanta/facets/textual_ontology/sparql/terms.sparql,sha256=oVLxN452nqog_95qRaTWnvar6rxPNxPrRonSo7oFFTg,324
|
|
86
88
|
iolanta/facets/textual_ontology/sparql/visualization-vocab.sparql,sha256=q9TmU15deL0da28mpo_8W8fgMSEcENfYeqLyM0zVbTg,65
|
|
87
89
|
iolanta/facets/textual_property_pairs_table.py,sha256=Drqc_G_6QhzNmrrfDU170eKTGrVmvQ6JMYu4ir--iUk,4176
|
|
88
90
|
iolanta/facets/textual_provenance/__init__.py,sha256=k5-_iK8Lrdwr5ZEJaDxq-UhGYe4G_adXVqGfOA5DAP8,114
|
|
89
|
-
iolanta/facets/textual_provenance/facets.py,sha256=
|
|
91
|
+
iolanta/facets/textual_provenance/facets.py,sha256=7n4PalKdOWqCoYKocto9H6RinSBmWWyV-jgXs6t7q94,3768
|
|
90
92
|
iolanta/facets/textual_provenance/sparql/graphs.sparql,sha256=B45uKFd-1vrBuMDSbTURjUUEjHt51vAbqdL4tUcgMvk,103
|
|
91
93
|
iolanta/facets/textual_provenance/sparql/triples.sparql,sha256=V-EdVuWbGHY3MspbJIMpwxPQautLDqJJV-AmihDjSHc,53
|
|
92
94
|
iolanta/facets/title/__init__.py,sha256=fxpkG-YvHDp6eiVL3o7BbwhPMZZe-1R2Qi6S36QCTf8,77
|
|
93
|
-
iolanta/facets/title/facets.py,sha256=
|
|
94
|
-
iolanta/facets/title/sparql/title.sparql,sha256=
|
|
95
|
+
iolanta/facets/title/facets.py,sha256=0XfdI1FKETXV8vo92FssTf4e0MTThlVJRfuC8RC67m8,744
|
|
96
|
+
iolanta/facets/title/sparql/title.sparql,sha256=VKHeE9NvV6sFgVGvsLQD9z__J4APj8TDHLT4Rk-Ascc,1102
|
|
95
97
|
iolanta/facets/wikibase_statement_title/__init__.py,sha256=_yk1akxgSJOiUBJIc8QGrD2vovvmx_iw_vJDuv1rD7M,91
|
|
96
|
-
iolanta/facets/wikibase_statement_title/facets.py,sha256=
|
|
98
|
+
iolanta/facets/wikibase_statement_title/facets.py,sha256=gNRqiwOTMxyyHYvb_vIrfd-4ipb8wfyJ4GgPcQdyy9E,726
|
|
97
99
|
iolanta/facets/wikibase_statement_title/sparql/statement-title.sparql,sha256=n07DQWxKqB5c3CA4kacq2HSN0R0dLgnMnLP1AxMo5YA,320
|
|
98
|
-
iolanta/iolanta.py,sha256=
|
|
100
|
+
iolanta/iolanta.py,sha256=ONIjejjidXfRIe9pVjCxEyI5Jo1yZdn-XGLuo73tcSw,11074
|
|
101
|
+
iolanta/labeled_triple_set/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
102
|
+
iolanta/labeled_triple_set/data/labeled_triple_set.yamlld,sha256=RqVhaXTIDA2Fip32E1TlH4cn_sDLC7H-NGZ5XpK-hio,1015
|
|
103
|
+
iolanta/labeled_triple_set/labeled_triple_set.py,sha256=o4IgvTvPd0mzBtpgHYd4n1xpujYdAvWBr6gIYwp5vnA,4061
|
|
104
|
+
iolanta/labeled_triple_set/sparql/triples.sparql,sha256=VsCmYN5AX7jSIiFm-SqLcRcOvUVj8yyZI4PSzKROtQw,82
|
|
105
|
+
iolanta/mermaid/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
106
|
+
iolanta/mermaid/facet.py,sha256=0SMzwkjtB3xjCQRW-XwOB5P7zVJdUCDv8c_XmanvqP0,4068
|
|
107
|
+
iolanta/mermaid/mermaid.yamlld,sha256=j5yQ6A1M_Fn4cq5WYISz8MfWw6skYdoB0lvcI68ahyw,968
|
|
108
|
+
iolanta/mermaid/models.py,sha256=X9EadiTUw2btDlYAE9G_2kaoqP-GGZHys1NpSv0qM8s,4197
|
|
109
|
+
iolanta/mermaid/sparql/graph.sparql,sha256=mDGf05od3CUFhzI6rcqt5ZMVy-gSKDu-WxmV_zpIsVI,62
|
|
110
|
+
iolanta/mermaid/sparql/subgraphs.sparql,sha256=VuoOYr_ZtKXXRrBpAEJek0mBRzR9EV-KnKENgAbkzCs,71
|
|
99
111
|
iolanta/models.py,sha256=M-1dTxPwjTyUgQ4VCOiH6Q7ltNJiDPG0l1XQH430Omo,3250
|
|
100
|
-
iolanta/namespaces.py,sha256=
|
|
112
|
+
iolanta/namespaces.py,sha256=H_qYyxCqbIGMOczpT9vUBHumTW9QJ-Y6qXHbJgFwFP8,1210
|
|
101
113
|
iolanta/node_to_qname.py,sha256=a82_qpgT87cbekY_76tTkl4Z-6Rz6am4UGIQChUf9Y0,794
|
|
102
114
|
iolanta/parse_quads.py,sha256=nKUGS_OVpCA6PFA5rOd6Qa5ik_eQhCL-Mlv1zDXk_Co,4541
|
|
103
115
|
iolanta/plugin.py,sha256=MSxpuOIx93AgBahfS8bYh31MEgcwtUSQhj4Js7fgdSI,1096
|
|
104
116
|
iolanta/query_result.py,sha256=VLLBkewUEymtzfB0jeIeRE3Np6pAgo959RPgNsEmiq8,1545
|
|
105
117
|
iolanta/reformat_blank_nodes.py,sha256=MAVcXusUioKzAoTEHAMume5Gt9vBEpxJGrngqFzmkJI,712
|
|
106
118
|
iolanta/resolvers/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
107
|
-
iolanta/resolvers/base.py,sha256=
|
|
108
|
-
iolanta/resolvers/
|
|
119
|
+
iolanta/resolvers/base.py,sha256=gkPHP85xRawmvZZtkZzFM0JjDRbZUKaTM_Zg2cdZWHk,293
|
|
120
|
+
iolanta/resolvers/dispatch.py,sha256=L2-ZQfusUgi-VuFdn0UA19ecEG1bZzV9PD2z2QJye1s,1204
|
|
121
|
+
iolanta/resolvers/pypi.py,sha256=BJA7PGPaFFIxisCp-1-pjWZYNTDRVA5am5Nn8O2WddM,3498
|
|
122
|
+
iolanta/resolvers/python_import.py,sha256=hFs2Fi7BDjdKllgrGJhTaqjfcT7Vaj0j1b45CJt21B0,522
|
|
109
123
|
iolanta/sparqlspace/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
124
|
iolanta/sparqlspace/cli.py,sha256=pb6q03lzrU8OaZ4A3QAQEmaFYcQ_-sHUrPhRs6GE88w,1590
|
|
111
125
|
iolanta/sparqlspace/inference/wikibase-claim.sparql,sha256=JSawj3VTc9ZPoU9mvh1w1AMYb3cWyZ3x1rEYWUsKZ6A,209
|
|
112
126
|
iolanta/sparqlspace/inference/wikibase-statement-property.sparql,sha256=SkSHZZlxWVDwBM3aLo0Q7hLuOj9BsIQnXtcuAuwaxqU,240
|
|
113
|
-
iolanta/sparqlspace/processor.py,sha256=
|
|
127
|
+
iolanta/sparqlspace/processor.py,sha256=se7yNzmwyc0v2wspPjQvar7qOZaf3A1kk3OS2cJ58EY,24146
|
|
114
128
|
iolanta/sparqlspace/sparqlspace.py,sha256=Y8_ZPXwuGEXbEes6XQjaQWA2Zv9y8SWxMPDFdqVBGFo,796
|
|
115
129
|
iolanta/widgets/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
130
|
iolanta/widgets/description.py,sha256=98Qd3FwT9r8sYqKjl9ZEptaVX9jJ2ULWf0uy3j52p5o,800
|
|
117
131
|
iolanta/widgets/mixin.py,sha256=nDRCOc-gizCf1a5DAcYs4hW8eZEd6pHBPFsfm0ncv7E,251
|
|
118
|
-
iolanta-2.
|
|
119
|
-
iolanta-2.
|
|
120
|
-
iolanta-2.
|
|
121
|
-
iolanta-2.
|
|
132
|
+
iolanta-2.1.4.dist-info/METADATA,sha256=ynvL1uzlCJZC4KPdThYYMYTseZ5aciKwiL_D6OI_9MY,2184
|
|
133
|
+
iolanta-2.1.4.dist-info/WHEEL,sha256=b4K_helf-jlQoXBBETfwnf4B04YC67LOev0jo4fX5m8,88
|
|
134
|
+
iolanta-2.1.4.dist-info/entry_points.txt,sha256=Z8zw4191usRgXrS-AiH1aOYDA0Nq9W3S-VBH44EBFNg,1594
|
|
135
|
+
iolanta-2.1.4.dist-info/RECORD,,
|
|
@@ -0,0 +1,33 @@
|
|
|
1
|
+
[console_scripts]
|
|
2
|
+
iolanta=iolanta.cli:app
|
|
3
|
+
sparqlspace=iolanta.sparqlspace.cli:app
|
|
4
|
+
|
|
5
|
+
[iolanta.facets]
|
|
6
|
+
boolean=iolanta.facets.generic:BoolLiteral
|
|
7
|
+
icon=iolanta.facets.icon:IconFacet
|
|
8
|
+
labeled-triple-set=iolanta.labeled_triple_set.labeled_triple_set:LabeledTripleSet
|
|
9
|
+
mermaid-graph=iolanta.mermaid.facet:Mermaid
|
|
10
|
+
qname=iolanta.facets.qname:QNameFacet
|
|
11
|
+
rich-declension-table=iolanta.declension.facet:RichDeclensionTable
|
|
12
|
+
textual-browser=iolanta.facets.textual_browser:TextualBrowserFacet
|
|
13
|
+
textual-class=iolanta.facets.textual_class:Class
|
|
14
|
+
textual-graph=iolanta.facets.textual_graph:GraphFacet
|
|
15
|
+
textual-graph-triples=iolanta.facets.textual_graph_triples:GraphTriplesFacet
|
|
16
|
+
textual-inverse-properties=iolanta.facets.textual_default:InverseProperties
|
|
17
|
+
textual-link=iolanta.facets.textual_link:TextualLinkFacet
|
|
18
|
+
textual-nanopublication=iolanta.facets.textual_nanopublication:NanopublicationFacet
|
|
19
|
+
textual-no-facet-found=iolanta.facets.textual_no_facet_found:TextualNoFacetFound
|
|
20
|
+
textual-ontology=iolanta.facets.textual_ontology:OntologyFacet
|
|
21
|
+
textual-properties=iolanta.facets.textual_default:TextualDefaultFacet
|
|
22
|
+
textual-property-pairs=iolanta.facets.textual_property_pairs_table:TextualPropertyPairsTableFacet
|
|
23
|
+
textual-provenance=iolanta.facets.textual_provenance:TextualProvenanceFacet
|
|
24
|
+
title=iolanta.facets.title:TitleFacet
|
|
25
|
+
title-foaf-person=iolanta.facets.foaf_person_title:FOAFPersonTitle
|
|
26
|
+
wikibase-statement-title=iolanta.facets.wikibase_statement_title:WikibaseStatementTitle
|
|
27
|
+
|
|
28
|
+
[iolanta.plugins]
|
|
29
|
+
base=iolanta:IolantaBase
|
|
30
|
+
|
|
31
|
+
[rdf.plugins.queryprocessor]
|
|
32
|
+
sparqlspace=iolanta.sparqlspace.processor:GlobalSPARQLProcessor
|
|
33
|
+
|
iolanta/data/cli.yaml
DELETED
|
@@ -1,30 +0,0 @@
|
|
|
1
|
-
"@context":
|
|
2
|
-
"@import": https://json-ld.org/contexts/dollar-convenience.jsonld
|
|
3
|
-
vann: https://purl.org/vocab/vann/
|
|
4
|
-
foaf: https://xmlns.com/foaf/0.1/
|
|
5
|
-
owl: https://www.w3.org/2002/07/owl#
|
|
6
|
-
iolanta: https://iolanta.tech/
|
|
7
|
-
rdfs: "https://www.w3.org/2000/01/rdf-schema#"
|
|
8
|
-
rdf: https://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
9
|
-
|
|
10
|
-
$included:
|
|
11
|
-
- $id: python://iolanta.facets.cli.Default
|
|
12
|
-
rdfs:label: For the CLI, display a link to the node or (at least) its human readable label.
|
|
13
|
-
|
|
14
|
-
- $id: iolanta:cli
|
|
15
|
-
$type: iolanta:OutputDatatype
|
|
16
|
-
iolanta:hasDefaultFacet:
|
|
17
|
-
$id: python://iolanta.facets.cli.Record
|
|
18
|
-
rdfs:label: Show properties of a node
|
|
19
|
-
|
|
20
|
-
- $id: https://iolanta.tech/cli/record/title
|
|
21
|
-
iolanta:hasDefaultFacet:
|
|
22
|
-
$id: python://iolanta.facets.cli.Default
|
|
23
|
-
|
|
24
|
-
- $id: https://iolanta.tech/cli/record/property
|
|
25
|
-
iolanta:hasDefaultFacet:
|
|
26
|
-
$id: python://iolanta.facets.cli.Default
|
|
27
|
-
|
|
28
|
-
- $id: https://iolanta.tech/cli/record/value
|
|
29
|
-
iolanta:hasDefaultFacet:
|
|
30
|
-
$id: python://iolanta.facets.cli.Default
|
iolanta/data/html.yaml
DELETED
|
@@ -1,15 +0,0 @@
|
|
|
1
|
-
"@context":
|
|
2
|
-
"@import": https://json-ld.org/contexts/dollar-convenience.jsonld
|
|
3
|
-
vann: https://purl.org/vocab/vann/
|
|
4
|
-
foaf: https://xmlns.com/foaf/0.1/
|
|
5
|
-
owl: https://www.w3.org/2002/07/owl#
|
|
6
|
-
iolanta: https://iolanta.tech/
|
|
7
|
-
rdfs: "https://www.w3.org/2000/01/rdf-schema#"
|
|
8
|
-
rdf: https://www.w3.org/1999/02/22-rdf-syntax-ns#
|
|
9
|
-
|
|
10
|
-
$included:
|
|
11
|
-
- $id: iolanta:html
|
|
12
|
-
$type: iolanta:OutputDatatype
|
|
13
|
-
owl:sameAs:
|
|
14
|
-
$id: https://html.spec.whatwg.org/
|
|
15
|
-
iolanta:hasDefaultFacet: python://iolanta.facets.html.Default
|