├── .dockerignore ├── .env-full-template ├── .env-required-template ├── .github └── workflows │ ├── manual_tests.yaml │ ├── pr.yaml │ └── release.yaml ├── .gitignore ├── .pre-commit-config.yaml ├── .releaserc.yaml ├── Dockerfile ├── LICENSE ├── README.md ├── azure ├── .funcignore ├── README.md ├── azure_functions.Dockerfile ├── function_app.py ├── host.json ├── local.settings.json ├── patched_asgi_function_wrapper.py └── publish_or_start.sh ├── benchmark └── quads_vs_stores.py ├── changelog.md ├── commitlint.config.js ├── demo ├── docker-compose.yml └── prez-v4-backend │ ├── config.ttl │ ├── docker-compose.yml │ └── readme.md ├── dev ├── cql_functions.http ├── dev-config.ttl ├── dev-setup.py └── http-client.env.json ├── docs ├── custom_endpoints.md ├── development.md ├── examples │ ├── cql │ │ ├── geo_contains.json │ │ ├── geo_contains_filter.json │ │ ├── geo_contains_inverse.json │ │ ├── geo_contains_like.json │ │ ├── geo_crosses.json │ │ ├── geo_disjoint.json │ │ ├── geo_equals.json │ │ ├── geo_intersects.json │ │ ├── geo_overlaps.json │ │ ├── geo_touches.json │ │ └── geo_within.json │ └── custom_endpoints │ │ ├── example_4_levels.trig │ │ └── example_alternate_classes.ttl ├── faceted_search.md ├── fuseki_fts_functionality.md ├── ogc_features.md ├── path_aliases.md └── result_counting.md ├── entrypoint.sh ├── main.py ├── poetry.lock ├── poetry.toml ├── prez-logo.png ├── prez ├── app.py ├── cache.py ├── config.py ├── dependencies.py ├── enums.py ├── exceptions │ └── model_exceptions.py ├── middleware.py ├── models │ ├── endpoint_config.py │ ├── ogc_features.py │ └── query_params.py ├── reference_data │ ├── annotations │ │ ├── bfo-annotations.ttl │ │ ├── bfo2020-annotations.ttl │ │ ├── bibo-annotations.ttl │ │ ├── cito-annotations.ttl │ │ ├── data-roles-annotations.ttl │ │ ├── dcat-annotations.ttl │ │ ├── dcterms-annotations.ttl │ │ ├── dwc-annotations.ttl │ │ ├── geo-annotations.ttl │ │ ├── geojson-annotations.ttl │ │ ├── gml-annotations.ttl │ │ ├── gts2020-annotations.ttl │ │ ├── owl-annotations.ttl │ │ ├── pav-annotations.ttl │ │ ├── prez-ontology.ttl │ │ ├── prof-annotations.ttl │ │ ├── prov-annotations.ttl │ │ ├── qb-annotations.ttl │ │ ├── quantitykinds-annotations.ttl │ │ ├── qudt-annotations.ttl │ │ ├── rdf-annotations.ttl │ │ ├── rdflicenses-annotations.ttl │ │ ├── rdfs-annotations.ttl │ │ ├── rdwg-taxon-name-annotations.ttl │ │ ├── reg-annotations.ttl │ │ ├── reg-statuses-annotations.ttl │ │ ├── sdo-annotations.ttl │ │ ├── shacl-annotations.ttl │ │ ├── skos-annotations.ttl │ │ ├── skos-xl-annotations.ttl │ │ ├── sosa-annotations.ttl │ │ ├── tern-annotations.ttl │ │ ├── time-annotations.ttl │ │ ├── vann-vocab-20100607.ttl │ │ ├── vocab_derivation_modes.ttl │ │ ├── void-annotations.ttl │ │ └── xsd.ttl │ ├── cql │ │ ├── bounded_temporal_interval_relation_matrix.json │ │ ├── bounded_temporal_interval_relation_matrix.schema.json │ │ ├── default_context.json │ │ └── geo_function_mapping.py │ ├── endpoints │ │ ├── base │ │ │ ├── endpoint_metadata.ttl │ │ │ └── endpoint_nodeshapes.ttl │ │ ├── data_endpoints_default │ │ │ └── default_endpoints.ttl │ │ └── features │ │ │ ├── features_metadata.ttl │ │ │ └── features_nodeshapes.ttl │ ├── facet_profiles │ │ └── type.ttl │ ├── jena_fts_shapes │ │ └── README.md │ ├── prefixes │ │ └── standard.ttl │ ├── prez_ns.py │ └── profiles │ │ ├── ogc_features.ttl │ │ ├── ogc_records_profile.ttl │ │ └── prez_default_profiles.ttl ├── renderers │ └── renderer.py ├── repositories │ ├── __init__.py │ ├── base.py │ ├── oxrdflib.py │ ├── pyoxigraph.py │ └── remote_sparql.py ├── routers │ ├── api_extras_examples.py │ ├── base_router.py │ ├── conformance.py │ ├── custom_endpoints.py │ ├── identifier.py │ ├── management.py │ ├── ogc_features_router.py │ ├── rdf_response_examples.json │ └── sparql.py ├── services │ ├── annotations.py │ ├── app_service.py │ ├── classes.py │ ├── connegp_service.py │ ├── curie_functions.py │ ├── exception_catchers.py │ ├── generate_endpoint_rdf.py │ ├── generate_profiles.py │ ├── generate_queryables.py │ ├── link_generation.py │ ├── listings.py │ ├── objects.py │ ├── ogc_functions_data.py │ ├── prez_logging.py │ └── query_generation │ │ ├── annotations.py │ │ ├── classes.py │ │ ├── concept_hierarchy.py │ │ ├── count.py │ │ ├── cql.py │ │ ├── cql_functions.py │ │ ├── datetime_filter.py │ │ ├── facet.py │ │ ├── grammar_helpers.py │ │ ├── homepage.py │ │ ├── identifier.py │ │ ├── prefixes.py │ │ ├── search_default.py │ │ ├── search_fuseki_fts.py │ │ ├── shacl.py │ │ ├── sparql_escaping.py │ │ ├── spatial_filter.py │ │ └── umbrella.py └── static │ └── endpoint_config.html ├── pyproject.toml ├── test_data ├── animal_profiles.ttl ├── animals.ttl ├── bnode_depth-1.ttl ├── bnode_depth-2-2.ttl ├── bnode_depth-2.ttl ├── bnode_depth-4.ttl ├── catprez.ttl ├── cpr.ttl ├── cql │ ├── README.md │ ├── expected_generated_queries │ │ ├── additional_temporal_disjoint_instant.rq │ │ ├── additional_temporal_during_intervals.rq │ │ ├── clause7_12.rq │ │ ├── clause7_13.rq │ │ ├── clause7_17.rq │ │ ├── example20.rq │ │ ├── example21.rq │ │ ├── example22.rq │ │ ├── example27.rq │ │ ├── example53.rq │ │ ├── example54.rq │ │ ├── example55.rq │ │ ├── example56.rq │ │ ├── example57.rq │ │ ├── example58.rq │ │ ├── example59.rq │ │ ├── example60.rq │ │ ├── example61.rq │ │ ├── example62.rq │ │ ├── example63.rq │ │ ├── example64.rq │ │ ├── example65.rq │ │ ├── example66.rq │ │ └── example67.rq │ └── input │ │ ├── additional_temporal_disjoint_instant.json │ │ ├── additional_temporal_during_intervals.json │ │ ├── additional_temporal_intersects_instant.json │ │ ├── clause6_01.json │ │ ├── clause6_02a.json │ │ ├── clause6_02b.json │ │ ├── clause6_02c.json │ │ ├── clause6_02d.json │ │ ├── clause6_03.json │ │ ├── clause7_01.json │ │ ├── clause7_02.json │ │ ├── clause7_03a.json │ │ ├── clause7_03b.json │ │ ├── clause7_04.json │ │ ├── clause7_05.json │ │ ├── clause7_07.json │ │ ├── clause7_10.json │ │ ├── clause7_12.json │ │ ├── clause7_13.json │ │ ├── clause7_15.json │ │ ├── clause7_16.json │ │ ├── clause7_17.json │ │ ├── clause7_18.json │ │ ├── clause7_19.json │ │ ├── example01.json │ │ ├── example02.json │ │ ├── example03.json │ │ ├── example04.json │ │ ├── example05a.json │ │ ├── example05b.json │ │ ├── example06a.json │ │ ├── example06b.json │ │ ├── example07.json │ │ ├── example08.json │ │ ├── example09.json │ │ ├── example10.json │ │ ├── example11.json │ │ ├── example12.json │ │ ├── example13.json │ │ ├── example14.json │ │ ├── example15.json │ │ ├── example16.json │ │ ├── example17.json │ │ ├── example18.json │ │ ├── example19.json │ │ ├── example20.json │ │ ├── example21.json │ │ ├── example22.json │ │ ├── example23.json │ │ ├── example24.json │ │ ├── example25.json │ │ ├── example26.json │ │ ├── example27.json │ │ ├── example28.json │ │ ├── example29.json │ │ ├── example30.json │ │ ├── example31.json │ │ ├── example32.json │ │ ├── example33.json │ │ ├── example34.json │ │ ├── example35.json │ │ ├── example36.json │ │ ├── example37.json │ │ ├── example38.json │ │ ├── example39.json │ │ ├── example40.json │ │ ├── example41.json │ │ ├── example42.json │ │ ├── example43.json │ │ ├── example44.json │ │ ├── example45.json │ │ ├── example46.json │ │ ├── example47.json │ │ ├── example48.json │ │ ├── example49.json │ │ ├── example50.json │ │ ├── example51.json │ │ ├── example52.json │ │ ├── example53.json │ │ ├── example54.json │ │ ├── example55.json │ │ ├── example56.json │ │ ├── example57.json │ │ ├── example58.json │ │ ├── example59.json │ │ ├── example60.json │ │ ├── example61.json │ │ ├── example62.json │ │ ├── example63.json │ │ ├── example64.json │ │ ├── example65.json │ │ ├── example66.json │ │ ├── example67.json │ │ ├── example68.json │ │ ├── example69.json │ │ ├── example70.json │ │ ├── example71.json │ │ ├── example72.json │ │ ├── example73.json │ │ ├── example74.json │ │ ├── example75.json │ │ ├── example76.json │ │ ├── example77.json │ │ ├── example78.json │ │ ├── example79.json │ │ ├── example80.json │ │ ├── example81.json │ │ ├── example82.json │ │ ├── example83.json │ │ ├── example84.json │ │ ├── example85.json │ │ └── example86.json ├── cql_queryable_shapes.ttl ├── cql_queryable_shapes_bdr.ttl ├── custom_endpoints_vanilla_5_level.ttl ├── custom_endpoints_vanilla_5_level_data.ttl ├── facet_object.ttl ├── fts_property_shapes.ttl ├── issue_236 │ ├── endpoints.ttl │ ├── prefixes.ttl │ └── test_data.ttl ├── issue_286.ttl ├── object_catalog_bblocks_catalog.ttl ├── object_vocab_api_bblocks.ttl ├── object_vocab_datatype_bblocks.ttl ├── object_vocab_parameter_bblocks.ttl ├── object_vocab_schema_bblocks.ttl ├── obs.ttl ├── ogc_features.ttl ├── ogc_skos_collection_member_profile │ ├── catalogue.ttl │ └── road-types.ttl ├── redirect-foaf-homepage.ttl ├── sandgate.ttl ├── spaceprez.ttl └── vocprez.ttl └── tests ├── TO_FIX_test_dd_profiles.py ├── TO_FIX_test_endpoints_vocprez.py ├── TO_FIX_test_search.py ├── __init__.py ├── _test_count.py ├── _test_cql_fuseki.py ├── _test_curie_generation.py ├── conftest.py ├── cql-fuseki-config.ttl ├── data └── prefixes │ ├── data_using_prefixes.ttl │ └── remote_prefixes.ttl ├── test_alt_profiles.py ├── test_connegp.py ├── test_cql.py ├── test_cql_queryable.py ├── test_cql_spatial_graphdb.py ├── test_cql_time.py ├── test_crs_extraction.py ├── test_curie_endpoint.py ├── test_endpoints_cache.py ├── test_endpoints_catprez.py ├── test_endpoints_concept_hierarchy.py ├── test_endpoints_management.py ├── test_endpoints_object.py ├── test_endpoints_ok.py ├── test_endpoints_profiles.py ├── test_endpoints_spaceprez.py ├── test_facet_object.py ├── test_facet_query.py ├── test_filter_combinations.py ├── test_filter_shape.py ├── test_geojson_to_wkt.py ├── test_issue_236_link_generation.py ├── test_issue_286.py ├── test_issue_418.py ├── test_listing_count_on_demand.py ├── test_node_selection_shacl.py ├── test_ogc.py ├── test_ogc_features_manual.py ├── test_ogc_skos_collection_member_object_profile.py ├── test_parse_datetimes.py ├── test_path_alias.py ├── test_predicates.py ├── test_property_selection_shacl.py ├── test_pyoxigraph_in_memory_store_storage.py ├── test_pyoxigraph_store_disk_storage.py ├── test_query_construction.py ├── test_redirect_endpoint.py ├── test_remote_prefixes.py ├── test_remote_sparql_timeout.py ├── test_search.py ├── test_search_empty_term.py ├── test_search_fuseki_fts_class.py ├── test_shacl_sequence_alternative_paths.py └── test_sparql.py /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.dockerignore -------------------------------------------------------------------------------- /.env-full-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.env-full-template -------------------------------------------------------------------------------- /.env-required-template: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.env-required-template -------------------------------------------------------------------------------- /.github/workflows/manual_tests.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.github/workflows/manual_tests.yaml -------------------------------------------------------------------------------- /.github/workflows/pr.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.github/workflows/pr.yaml -------------------------------------------------------------------------------- /.github/workflows/release.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.github/workflows/release.yaml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.gitignore -------------------------------------------------------------------------------- /.pre-commit-config.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.pre-commit-config.yaml -------------------------------------------------------------------------------- /.releaserc.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/.releaserc.yaml -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/README.md -------------------------------------------------------------------------------- /azure/.funcignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/.funcignore -------------------------------------------------------------------------------- /azure/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/README.md -------------------------------------------------------------------------------- /azure/azure_functions.Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/azure_functions.Dockerfile -------------------------------------------------------------------------------- /azure/function_app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/function_app.py -------------------------------------------------------------------------------- /azure/host.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/host.json -------------------------------------------------------------------------------- /azure/local.settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/local.settings.json -------------------------------------------------------------------------------- /azure/patched_asgi_function_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/patched_asgi_function_wrapper.py -------------------------------------------------------------------------------- /azure/publish_or_start.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/azure/publish_or_start.sh -------------------------------------------------------------------------------- /benchmark/quads_vs_stores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/benchmark/quads_vs_stores.py -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/changelog.md -------------------------------------------------------------------------------- /commitlint.config.js: -------------------------------------------------------------------------------- 1 | module.exports = { extends: ["@commitlint/config-conventional"] }; -------------------------------------------------------------------------------- /demo/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/demo/docker-compose.yml -------------------------------------------------------------------------------- /demo/prez-v4-backend/config.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/demo/prez-v4-backend/config.ttl -------------------------------------------------------------------------------- /demo/prez-v4-backend/docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/demo/prez-v4-backend/docker-compose.yml -------------------------------------------------------------------------------- /demo/prez-v4-backend/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/demo/prez-v4-backend/readme.md -------------------------------------------------------------------------------- /dev/cql_functions.http: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/dev/cql_functions.http -------------------------------------------------------------------------------- /dev/dev-config.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/dev/dev-config.ttl -------------------------------------------------------------------------------- /dev/dev-setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/dev/dev-setup.py -------------------------------------------------------------------------------- /dev/http-client.env.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/dev/http-client.env.json -------------------------------------------------------------------------------- /docs/custom_endpoints.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/custom_endpoints.md -------------------------------------------------------------------------------- /docs/development.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/development.md -------------------------------------------------------------------------------- /docs/examples/cql/geo_contains.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_contains.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_contains_filter.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_contains_filter.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_contains_inverse.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_contains_inverse.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_contains_like.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_contains_like.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_crosses.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_crosses.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_disjoint.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_disjoint.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_equals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_equals.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_intersects.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_intersects.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_overlaps.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_overlaps.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_touches.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_touches.json -------------------------------------------------------------------------------- /docs/examples/cql/geo_within.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/cql/geo_within.json -------------------------------------------------------------------------------- /docs/examples/custom_endpoints/example_4_levels.trig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/custom_endpoints/example_4_levels.trig -------------------------------------------------------------------------------- /docs/examples/custom_endpoints/example_alternate_classes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/examples/custom_endpoints/example_alternate_classes.ttl -------------------------------------------------------------------------------- /docs/faceted_search.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/faceted_search.md -------------------------------------------------------------------------------- /docs/fuseki_fts_functionality.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/fuseki_fts_functionality.md -------------------------------------------------------------------------------- /docs/ogc_features.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/ogc_features.md -------------------------------------------------------------------------------- /docs/path_aliases.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/path_aliases.md -------------------------------------------------------------------------------- /docs/result_counting.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/docs/result_counting.md -------------------------------------------------------------------------------- /entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/entrypoint.sh -------------------------------------------------------------------------------- /main.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/main.py -------------------------------------------------------------------------------- /poetry.lock: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/poetry.lock -------------------------------------------------------------------------------- /poetry.toml: -------------------------------------------------------------------------------- 1 | [virtualenvs] 2 | in-project = true -------------------------------------------------------------------------------- /prez-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez-logo.png -------------------------------------------------------------------------------- /prez/app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/app.py -------------------------------------------------------------------------------- /prez/cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/cache.py -------------------------------------------------------------------------------- /prez/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/config.py -------------------------------------------------------------------------------- /prez/dependencies.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/dependencies.py -------------------------------------------------------------------------------- /prez/enums.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/enums.py -------------------------------------------------------------------------------- /prez/exceptions/model_exceptions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/exceptions/model_exceptions.py -------------------------------------------------------------------------------- /prez/middleware.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/middleware.py -------------------------------------------------------------------------------- /prez/models/endpoint_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/models/endpoint_config.py -------------------------------------------------------------------------------- /prez/models/ogc_features.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/models/ogc_features.py -------------------------------------------------------------------------------- /prez/models/query_params.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/models/query_params.py -------------------------------------------------------------------------------- /prez/reference_data/annotations/bfo-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/bfo-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/bfo2020-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/bfo2020-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/bibo-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/bibo-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/cito-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/cito-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/data-roles-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/data-roles-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/dcat-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/dcat-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/dcterms-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/dcterms-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/dwc-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/dwc-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/geo-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/geo-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/geojson-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/geojson-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/gml-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/gml-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/gts2020-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/gts2020-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/owl-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/owl-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/pav-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/pav-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/prez-ontology.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/prez-ontology.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/prof-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/prof-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/prov-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/prov-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/qb-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/qb-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/quantitykinds-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/quantitykinds-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/qudt-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/qudt-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/rdf-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/rdf-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/rdflicenses-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/rdflicenses-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/rdfs-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/rdfs-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/rdwg-taxon-name-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/rdwg-taxon-name-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/reg-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/reg-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/reg-statuses-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/reg-statuses-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/sdo-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/sdo-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/shacl-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/shacl-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/skos-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/skos-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/skos-xl-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/skos-xl-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/sosa-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/sosa-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/tern-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/tern-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/time-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/time-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/vann-vocab-20100607.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/vann-vocab-20100607.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/vocab_derivation_modes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/vocab_derivation_modes.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/void-annotations.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/void-annotations.ttl -------------------------------------------------------------------------------- /prez/reference_data/annotations/xsd.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/annotations/xsd.ttl -------------------------------------------------------------------------------- /prez/reference_data/cql/bounded_temporal_interval_relation_matrix.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/cql/bounded_temporal_interval_relation_matrix.json -------------------------------------------------------------------------------- /prez/reference_data/cql/bounded_temporal_interval_relation_matrix.schema.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/cql/bounded_temporal_interval_relation_matrix.schema.json -------------------------------------------------------------------------------- /prez/reference_data/cql/default_context.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/cql/default_context.json -------------------------------------------------------------------------------- /prez/reference_data/cql/geo_function_mapping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/cql/geo_function_mapping.py -------------------------------------------------------------------------------- /prez/reference_data/endpoints/base/endpoint_metadata.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/endpoints/base/endpoint_metadata.ttl -------------------------------------------------------------------------------- /prez/reference_data/endpoints/base/endpoint_nodeshapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/endpoints/base/endpoint_nodeshapes.ttl -------------------------------------------------------------------------------- /prez/reference_data/endpoints/data_endpoints_default/default_endpoints.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/endpoints/data_endpoints_default/default_endpoints.ttl -------------------------------------------------------------------------------- /prez/reference_data/endpoints/features/features_metadata.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/endpoints/features/features_metadata.ttl -------------------------------------------------------------------------------- /prez/reference_data/endpoints/features/features_nodeshapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/endpoints/features/features_nodeshapes.ttl -------------------------------------------------------------------------------- /prez/reference_data/facet_profiles/type.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/facet_profiles/type.ttl -------------------------------------------------------------------------------- /prez/reference_data/jena_fts_shapes/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/jena_fts_shapes/README.md -------------------------------------------------------------------------------- /prez/reference_data/prefixes/standard.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/prefixes/standard.ttl -------------------------------------------------------------------------------- /prez/reference_data/prez_ns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/prez_ns.py -------------------------------------------------------------------------------- /prez/reference_data/profiles/ogc_features.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/profiles/ogc_features.ttl -------------------------------------------------------------------------------- /prez/reference_data/profiles/ogc_records_profile.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/profiles/ogc_records_profile.ttl -------------------------------------------------------------------------------- /prez/reference_data/profiles/prez_default_profiles.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/reference_data/profiles/prez_default_profiles.ttl -------------------------------------------------------------------------------- /prez/renderers/renderer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/renderers/renderer.py -------------------------------------------------------------------------------- /prez/repositories/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/repositories/__init__.py -------------------------------------------------------------------------------- /prez/repositories/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/repositories/base.py -------------------------------------------------------------------------------- /prez/repositories/oxrdflib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/repositories/oxrdflib.py -------------------------------------------------------------------------------- /prez/repositories/pyoxigraph.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/repositories/pyoxigraph.py -------------------------------------------------------------------------------- /prez/repositories/remote_sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/repositories/remote_sparql.py -------------------------------------------------------------------------------- /prez/routers/api_extras_examples.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/api_extras_examples.py -------------------------------------------------------------------------------- /prez/routers/base_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/base_router.py -------------------------------------------------------------------------------- /prez/routers/conformance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/conformance.py -------------------------------------------------------------------------------- /prez/routers/custom_endpoints.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/custom_endpoints.py -------------------------------------------------------------------------------- /prez/routers/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/identifier.py -------------------------------------------------------------------------------- /prez/routers/management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/management.py -------------------------------------------------------------------------------- /prez/routers/ogc_features_router.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/ogc_features_router.py -------------------------------------------------------------------------------- /prez/routers/rdf_response_examples.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/rdf_response_examples.json -------------------------------------------------------------------------------- /prez/routers/sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/routers/sparql.py -------------------------------------------------------------------------------- /prez/services/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/annotations.py -------------------------------------------------------------------------------- /prez/services/app_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/app_service.py -------------------------------------------------------------------------------- /prez/services/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/classes.py -------------------------------------------------------------------------------- /prez/services/connegp_service.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/connegp_service.py -------------------------------------------------------------------------------- /prez/services/curie_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/curie_functions.py -------------------------------------------------------------------------------- /prez/services/exception_catchers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/exception_catchers.py -------------------------------------------------------------------------------- /prez/services/generate_endpoint_rdf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/generate_endpoint_rdf.py -------------------------------------------------------------------------------- /prez/services/generate_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/generate_profiles.py -------------------------------------------------------------------------------- /prez/services/generate_queryables.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/generate_queryables.py -------------------------------------------------------------------------------- /prez/services/link_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/link_generation.py -------------------------------------------------------------------------------- /prez/services/listings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/listings.py -------------------------------------------------------------------------------- /prez/services/objects.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/objects.py -------------------------------------------------------------------------------- /prez/services/ogc_functions_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/ogc_functions_data.py -------------------------------------------------------------------------------- /prez/services/prez_logging.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/prez_logging.py -------------------------------------------------------------------------------- /prez/services/query_generation/annotations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/annotations.py -------------------------------------------------------------------------------- /prez/services/query_generation/classes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/classes.py -------------------------------------------------------------------------------- /prez/services/query_generation/concept_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/concept_hierarchy.py -------------------------------------------------------------------------------- /prez/services/query_generation/count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/count.py -------------------------------------------------------------------------------- /prez/services/query_generation/cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/cql.py -------------------------------------------------------------------------------- /prez/services/query_generation/cql_functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/cql_functions.py -------------------------------------------------------------------------------- /prez/services/query_generation/datetime_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/datetime_filter.py -------------------------------------------------------------------------------- /prez/services/query_generation/facet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/facet.py -------------------------------------------------------------------------------- /prez/services/query_generation/grammar_helpers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/grammar_helpers.py -------------------------------------------------------------------------------- /prez/services/query_generation/homepage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/homepage.py -------------------------------------------------------------------------------- /prez/services/query_generation/identifier.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/identifier.py -------------------------------------------------------------------------------- /prez/services/query_generation/prefixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/prefixes.py -------------------------------------------------------------------------------- /prez/services/query_generation/search_default.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/search_default.py -------------------------------------------------------------------------------- /prez/services/query_generation/search_fuseki_fts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/search_fuseki_fts.py -------------------------------------------------------------------------------- /prez/services/query_generation/shacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/shacl.py -------------------------------------------------------------------------------- /prez/services/query_generation/sparql_escaping.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/sparql_escaping.py -------------------------------------------------------------------------------- /prez/services/query_generation/spatial_filter.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/spatial_filter.py -------------------------------------------------------------------------------- /prez/services/query_generation/umbrella.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/services/query_generation/umbrella.py -------------------------------------------------------------------------------- /prez/static/endpoint_config.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/prez/static/endpoint_config.html -------------------------------------------------------------------------------- /pyproject.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/pyproject.toml -------------------------------------------------------------------------------- /test_data/animal_profiles.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/animal_profiles.ttl -------------------------------------------------------------------------------- /test_data/animals.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/animals.ttl -------------------------------------------------------------------------------- /test_data/bnode_depth-1.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/bnode_depth-1.ttl -------------------------------------------------------------------------------- /test_data/bnode_depth-2-2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/bnode_depth-2-2.ttl -------------------------------------------------------------------------------- /test_data/bnode_depth-2.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/bnode_depth-2.ttl -------------------------------------------------------------------------------- /test_data/bnode_depth-4.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/bnode_depth-4.ttl -------------------------------------------------------------------------------- /test_data/catprez.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/catprez.ttl -------------------------------------------------------------------------------- /test_data/cpr.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cpr.ttl -------------------------------------------------------------------------------- /test_data/cql/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/README.md -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/additional_temporal_disjoint_instant.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/additional_temporal_disjoint_instant.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/additional_temporal_during_intervals.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/additional_temporal_during_intervals.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/clause7_12.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/clause7_12.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/clause7_13.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/clause7_13.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/clause7_17.rq: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example20.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example20.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example21.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example21.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example22.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example22.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example27.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example27.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example53.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example53.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example54.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example54.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example55.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example55.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example56.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example56.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example57.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example57.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example58.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example58.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example59.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example59.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example60.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example60.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example61.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example61.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example62.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example62.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example63.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example63.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example64.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example64.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example65.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example65.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example66.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example66.rq -------------------------------------------------------------------------------- /test_data/cql/expected_generated_queries/example67.rq: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/expected_generated_queries/example67.rq -------------------------------------------------------------------------------- /test_data/cql/input/additional_temporal_disjoint_instant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/additional_temporal_disjoint_instant.json -------------------------------------------------------------------------------- /test_data/cql/input/additional_temporal_during_intervals.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/additional_temporal_during_intervals.json -------------------------------------------------------------------------------- /test_data/cql/input/additional_temporal_intersects_instant.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/additional_temporal_intersects_instant.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_01.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_02a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_02a.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_02b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_02b.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_02c.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_02c.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_02d.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_02d.json -------------------------------------------------------------------------------- /test_data/cql/input/clause6_03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause6_03.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_01.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_02.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_03a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_03a.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_03b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_03b.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_04.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_05.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_05.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_07.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_10.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_12.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_13.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_15.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_16.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_17.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_18.json -------------------------------------------------------------------------------- /test_data/cql/input/clause7_19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/clause7_19.json -------------------------------------------------------------------------------- /test_data/cql/input/example01.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example01.json -------------------------------------------------------------------------------- /test_data/cql/input/example02.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example02.json -------------------------------------------------------------------------------- /test_data/cql/input/example03.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example03.json -------------------------------------------------------------------------------- /test_data/cql/input/example04.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example04.json -------------------------------------------------------------------------------- /test_data/cql/input/example05a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example05a.json -------------------------------------------------------------------------------- /test_data/cql/input/example05b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example05b.json -------------------------------------------------------------------------------- /test_data/cql/input/example06a.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example06a.json -------------------------------------------------------------------------------- /test_data/cql/input/example06b.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example06b.json -------------------------------------------------------------------------------- /test_data/cql/input/example07.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example07.json -------------------------------------------------------------------------------- /test_data/cql/input/example08.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example08.json -------------------------------------------------------------------------------- /test_data/cql/input/example09.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example09.json -------------------------------------------------------------------------------- /test_data/cql/input/example10.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example10.json -------------------------------------------------------------------------------- /test_data/cql/input/example11.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example11.json -------------------------------------------------------------------------------- /test_data/cql/input/example12.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example12.json -------------------------------------------------------------------------------- /test_data/cql/input/example13.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example13.json -------------------------------------------------------------------------------- /test_data/cql/input/example14.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example14.json -------------------------------------------------------------------------------- /test_data/cql/input/example15.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example15.json -------------------------------------------------------------------------------- /test_data/cql/input/example16.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example16.json -------------------------------------------------------------------------------- /test_data/cql/input/example17.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example17.json -------------------------------------------------------------------------------- /test_data/cql/input/example18.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example18.json -------------------------------------------------------------------------------- /test_data/cql/input/example19.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example19.json -------------------------------------------------------------------------------- /test_data/cql/input/example20.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example20.json -------------------------------------------------------------------------------- /test_data/cql/input/example21.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example21.json -------------------------------------------------------------------------------- /test_data/cql/input/example22.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example22.json -------------------------------------------------------------------------------- /test_data/cql/input/example23.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example23.json -------------------------------------------------------------------------------- /test_data/cql/input/example24.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example24.json -------------------------------------------------------------------------------- /test_data/cql/input/example25.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example25.json -------------------------------------------------------------------------------- /test_data/cql/input/example26.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example26.json -------------------------------------------------------------------------------- /test_data/cql/input/example27.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example27.json -------------------------------------------------------------------------------- /test_data/cql/input/example28.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example28.json -------------------------------------------------------------------------------- /test_data/cql/input/example29.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example29.json -------------------------------------------------------------------------------- /test_data/cql/input/example30.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example30.json -------------------------------------------------------------------------------- /test_data/cql/input/example31.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example31.json -------------------------------------------------------------------------------- /test_data/cql/input/example32.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example32.json -------------------------------------------------------------------------------- /test_data/cql/input/example33.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example33.json -------------------------------------------------------------------------------- /test_data/cql/input/example34.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example34.json -------------------------------------------------------------------------------- /test_data/cql/input/example35.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example35.json -------------------------------------------------------------------------------- /test_data/cql/input/example36.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example36.json -------------------------------------------------------------------------------- /test_data/cql/input/example37.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example37.json -------------------------------------------------------------------------------- /test_data/cql/input/example38.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example38.json -------------------------------------------------------------------------------- /test_data/cql/input/example39.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example39.json -------------------------------------------------------------------------------- /test_data/cql/input/example40.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example40.json -------------------------------------------------------------------------------- /test_data/cql/input/example41.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example41.json -------------------------------------------------------------------------------- /test_data/cql/input/example42.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example42.json -------------------------------------------------------------------------------- /test_data/cql/input/example43.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example43.json -------------------------------------------------------------------------------- /test_data/cql/input/example44.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example44.json -------------------------------------------------------------------------------- /test_data/cql/input/example45.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example45.json -------------------------------------------------------------------------------- /test_data/cql/input/example46.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example46.json -------------------------------------------------------------------------------- /test_data/cql/input/example47.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example47.json -------------------------------------------------------------------------------- /test_data/cql/input/example48.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example48.json -------------------------------------------------------------------------------- /test_data/cql/input/example49.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example49.json -------------------------------------------------------------------------------- /test_data/cql/input/example50.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example50.json -------------------------------------------------------------------------------- /test_data/cql/input/example51.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example51.json -------------------------------------------------------------------------------- /test_data/cql/input/example52.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example52.json -------------------------------------------------------------------------------- /test_data/cql/input/example53.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example53.json -------------------------------------------------------------------------------- /test_data/cql/input/example54.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example54.json -------------------------------------------------------------------------------- /test_data/cql/input/example55.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example55.json -------------------------------------------------------------------------------- /test_data/cql/input/example56.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example56.json -------------------------------------------------------------------------------- /test_data/cql/input/example57.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example57.json -------------------------------------------------------------------------------- /test_data/cql/input/example58.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example58.json -------------------------------------------------------------------------------- /test_data/cql/input/example59.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example59.json -------------------------------------------------------------------------------- /test_data/cql/input/example60.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example60.json -------------------------------------------------------------------------------- /test_data/cql/input/example61.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example61.json -------------------------------------------------------------------------------- /test_data/cql/input/example62.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example62.json -------------------------------------------------------------------------------- /test_data/cql/input/example63.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example63.json -------------------------------------------------------------------------------- /test_data/cql/input/example64.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example64.json -------------------------------------------------------------------------------- /test_data/cql/input/example65.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example65.json -------------------------------------------------------------------------------- /test_data/cql/input/example66.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example66.json -------------------------------------------------------------------------------- /test_data/cql/input/example67.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example67.json -------------------------------------------------------------------------------- /test_data/cql/input/example68.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example68.json -------------------------------------------------------------------------------- /test_data/cql/input/example69.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example69.json -------------------------------------------------------------------------------- /test_data/cql/input/example70.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example70.json -------------------------------------------------------------------------------- /test_data/cql/input/example71.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example71.json -------------------------------------------------------------------------------- /test_data/cql/input/example72.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example72.json -------------------------------------------------------------------------------- /test_data/cql/input/example73.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example73.json -------------------------------------------------------------------------------- /test_data/cql/input/example74.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example74.json -------------------------------------------------------------------------------- /test_data/cql/input/example75.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example75.json -------------------------------------------------------------------------------- /test_data/cql/input/example76.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example76.json -------------------------------------------------------------------------------- /test_data/cql/input/example77.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example77.json -------------------------------------------------------------------------------- /test_data/cql/input/example78.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example78.json -------------------------------------------------------------------------------- /test_data/cql/input/example79.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example79.json -------------------------------------------------------------------------------- /test_data/cql/input/example80.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example80.json -------------------------------------------------------------------------------- /test_data/cql/input/example81.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example81.json -------------------------------------------------------------------------------- /test_data/cql/input/example82.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example82.json -------------------------------------------------------------------------------- /test_data/cql/input/example83.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example83.json -------------------------------------------------------------------------------- /test_data/cql/input/example84.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example84.json -------------------------------------------------------------------------------- /test_data/cql/input/example85.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example85.json -------------------------------------------------------------------------------- /test_data/cql/input/example86.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql/input/example86.json -------------------------------------------------------------------------------- /test_data/cql_queryable_shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql_queryable_shapes.ttl -------------------------------------------------------------------------------- /test_data/cql_queryable_shapes_bdr.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/cql_queryable_shapes_bdr.ttl -------------------------------------------------------------------------------- /test_data/custom_endpoints_vanilla_5_level.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/custom_endpoints_vanilla_5_level.ttl -------------------------------------------------------------------------------- /test_data/custom_endpoints_vanilla_5_level_data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/custom_endpoints_vanilla_5_level_data.ttl -------------------------------------------------------------------------------- /test_data/facet_object.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/facet_object.ttl -------------------------------------------------------------------------------- /test_data/fts_property_shapes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/fts_property_shapes.ttl -------------------------------------------------------------------------------- /test_data/issue_236/endpoints.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/issue_236/endpoints.ttl -------------------------------------------------------------------------------- /test_data/issue_236/prefixes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/issue_236/prefixes.ttl -------------------------------------------------------------------------------- /test_data/issue_236/test_data.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/issue_236/test_data.ttl -------------------------------------------------------------------------------- /test_data/issue_286.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/issue_286.ttl -------------------------------------------------------------------------------- /test_data/object_catalog_bblocks_catalog.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/object_catalog_bblocks_catalog.ttl -------------------------------------------------------------------------------- /test_data/object_vocab_api_bblocks.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/object_vocab_api_bblocks.ttl -------------------------------------------------------------------------------- /test_data/object_vocab_datatype_bblocks.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/object_vocab_datatype_bblocks.ttl -------------------------------------------------------------------------------- /test_data/object_vocab_parameter_bblocks.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/object_vocab_parameter_bblocks.ttl -------------------------------------------------------------------------------- /test_data/object_vocab_schema_bblocks.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/object_vocab_schema_bblocks.ttl -------------------------------------------------------------------------------- /test_data/obs.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/obs.ttl -------------------------------------------------------------------------------- /test_data/ogc_features.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/ogc_features.ttl -------------------------------------------------------------------------------- /test_data/ogc_skos_collection_member_profile/catalogue.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/ogc_skos_collection_member_profile/catalogue.ttl -------------------------------------------------------------------------------- /test_data/ogc_skos_collection_member_profile/road-types.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/ogc_skos_collection_member_profile/road-types.ttl -------------------------------------------------------------------------------- /test_data/redirect-foaf-homepage.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/redirect-foaf-homepage.ttl -------------------------------------------------------------------------------- /test_data/sandgate.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/sandgate.ttl -------------------------------------------------------------------------------- /test_data/spaceprez.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/spaceprez.ttl -------------------------------------------------------------------------------- /test_data/vocprez.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/test_data/vocprez.ttl -------------------------------------------------------------------------------- /tests/TO_FIX_test_dd_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/TO_FIX_test_dd_profiles.py -------------------------------------------------------------------------------- /tests/TO_FIX_test_endpoints_vocprez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/TO_FIX_test_endpoints_vocprez.py -------------------------------------------------------------------------------- /tests/TO_FIX_test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/TO_FIX_test_search.py -------------------------------------------------------------------------------- /tests/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tests/_test_count.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/_test_count.py -------------------------------------------------------------------------------- /tests/_test_cql_fuseki.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/_test_cql_fuseki.py -------------------------------------------------------------------------------- /tests/_test_curie_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/_test_curie_generation.py -------------------------------------------------------------------------------- /tests/conftest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/conftest.py -------------------------------------------------------------------------------- /tests/cql-fuseki-config.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/cql-fuseki-config.ttl -------------------------------------------------------------------------------- /tests/data/prefixes/data_using_prefixes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/data/prefixes/data_using_prefixes.ttl -------------------------------------------------------------------------------- /tests/data/prefixes/remote_prefixes.ttl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/data/prefixes/remote_prefixes.ttl -------------------------------------------------------------------------------- /tests/test_alt_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_alt_profiles.py -------------------------------------------------------------------------------- /tests/test_connegp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_connegp.py -------------------------------------------------------------------------------- /tests/test_cql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_cql.py -------------------------------------------------------------------------------- /tests/test_cql_queryable.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_cql_queryable.py -------------------------------------------------------------------------------- /tests/test_cql_spatial_graphdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_cql_spatial_graphdb.py -------------------------------------------------------------------------------- /tests/test_cql_time.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_cql_time.py -------------------------------------------------------------------------------- /tests/test_crs_extraction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_crs_extraction.py -------------------------------------------------------------------------------- /tests/test_curie_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_curie_endpoint.py -------------------------------------------------------------------------------- /tests/test_endpoints_cache.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_cache.py -------------------------------------------------------------------------------- /tests/test_endpoints_catprez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_catprez.py -------------------------------------------------------------------------------- /tests/test_endpoints_concept_hierarchy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_concept_hierarchy.py -------------------------------------------------------------------------------- /tests/test_endpoints_management.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_management.py -------------------------------------------------------------------------------- /tests/test_endpoints_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_object.py -------------------------------------------------------------------------------- /tests/test_endpoints_ok.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_ok.py -------------------------------------------------------------------------------- /tests/test_endpoints_profiles.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_profiles.py -------------------------------------------------------------------------------- /tests/test_endpoints_spaceprez.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_endpoints_spaceprez.py -------------------------------------------------------------------------------- /tests/test_facet_object.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_facet_object.py -------------------------------------------------------------------------------- /tests/test_facet_query.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_facet_query.py -------------------------------------------------------------------------------- /tests/test_filter_combinations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_filter_combinations.py -------------------------------------------------------------------------------- /tests/test_filter_shape.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_filter_shape.py -------------------------------------------------------------------------------- /tests/test_geojson_to_wkt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_geojson_to_wkt.py -------------------------------------------------------------------------------- /tests/test_issue_236_link_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_issue_236_link_generation.py -------------------------------------------------------------------------------- /tests/test_issue_286.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_issue_286.py -------------------------------------------------------------------------------- /tests/test_issue_418.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_issue_418.py -------------------------------------------------------------------------------- /tests/test_listing_count_on_demand.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_listing_count_on_demand.py -------------------------------------------------------------------------------- /tests/test_node_selection_shacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_node_selection_shacl.py -------------------------------------------------------------------------------- /tests/test_ogc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_ogc.py -------------------------------------------------------------------------------- /tests/test_ogc_features_manual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_ogc_features_manual.py -------------------------------------------------------------------------------- /tests/test_ogc_skos_collection_member_object_profile.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_ogc_skos_collection_member_object_profile.py -------------------------------------------------------------------------------- /tests/test_parse_datetimes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_parse_datetimes.py -------------------------------------------------------------------------------- /tests/test_path_alias.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_path_alias.py -------------------------------------------------------------------------------- /tests/test_predicates.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_predicates.py -------------------------------------------------------------------------------- /tests/test_property_selection_shacl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_property_selection_shacl.py -------------------------------------------------------------------------------- /tests/test_pyoxigraph_in_memory_store_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_pyoxigraph_in_memory_store_storage.py -------------------------------------------------------------------------------- /tests/test_pyoxigraph_store_disk_storage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_pyoxigraph_store_disk_storage.py -------------------------------------------------------------------------------- /tests/test_query_construction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_query_construction.py -------------------------------------------------------------------------------- /tests/test_redirect_endpoint.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_redirect_endpoint.py -------------------------------------------------------------------------------- /tests/test_remote_prefixes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_remote_prefixes.py -------------------------------------------------------------------------------- /tests/test_remote_sparql_timeout.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_remote_sparql_timeout.py -------------------------------------------------------------------------------- /tests/test_search.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_search.py -------------------------------------------------------------------------------- /tests/test_search_empty_term.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_search_empty_term.py -------------------------------------------------------------------------------- /tests/test_search_fuseki_fts_class.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_search_fuseki_fts_class.py -------------------------------------------------------------------------------- /tests/test_shacl_sequence_alternative_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_shacl_sequence_alternative_paths.py -------------------------------------------------------------------------------- /tests/test_sparql.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/RDFLib/prez/HEAD/tests/test_sparql.py --------------------------------------------------------------------------------