dsp-tools 9.1.0.post11__py3-none-any.whl → 18.3.0.post13__py3-none-any.whl
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- dsp_tools/__init__.py +4 -0
- dsp_tools/cli/args.py +36 -0
- dsp_tools/cli/call_action.py +51 -231
- dsp_tools/cli/call_action_files_only.py +101 -0
- dsp_tools/cli/call_action_with_network.py +207 -0
- dsp_tools/cli/create_parsers.py +156 -58
- dsp_tools/cli/entry_point.py +56 -26
- dsp_tools/cli/utils.py +87 -0
- dsp_tools/clients/CLAUDE.md +420 -0
- dsp_tools/clients/authentication_client.py +14 -0
- dsp_tools/clients/authentication_client_live.py +66 -0
- dsp_tools/{utils → clients}/connection.py +2 -18
- dsp_tools/clients/connection_live.py +233 -0
- dsp_tools/clients/fuseki_metrics.py +60 -0
- dsp_tools/clients/group_user_clients.py +35 -0
- dsp_tools/clients/group_user_clients_live.py +181 -0
- dsp_tools/clients/legal_info_client.py +23 -0
- dsp_tools/clients/legal_info_client_live.py +132 -0
- dsp_tools/clients/list_client.py +49 -0
- dsp_tools/clients/list_client_live.py +166 -0
- dsp_tools/clients/metadata_client.py +24 -0
- dsp_tools/clients/metadata_client_live.py +47 -0
- dsp_tools/clients/ontology_clients.py +49 -0
- dsp_tools/clients/ontology_create_client_live.py +166 -0
- dsp_tools/clients/ontology_get_client_live.py +80 -0
- dsp_tools/clients/permissions_client.py +68 -0
- dsp_tools/clients/project_client.py +16 -0
- dsp_tools/clients/project_client_live.py +66 -0
- dsp_tools/commands/create/communicate_problems.py +24 -0
- dsp_tools/commands/create/create.py +134 -0
- dsp_tools/commands/create/create_on_server/cardinalities.py +111 -0
- dsp_tools/commands/create/create_on_server/classes.py +99 -0
- dsp_tools/commands/create/create_on_server/complete_ontologies.py +116 -0
- dsp_tools/commands/create/create_on_server/default_permissions.py +134 -0
- dsp_tools/commands/create/create_on_server/group_users.py +165 -0
- dsp_tools/commands/create/create_on_server/lists.py +163 -0
- dsp_tools/commands/create/create_on_server/mappers.py +12 -0
- dsp_tools/commands/create/create_on_server/onto_utils.py +74 -0
- dsp_tools/commands/create/create_on_server/ontology.py +52 -0
- dsp_tools/commands/create/create_on_server/project.py +68 -0
- dsp_tools/commands/create/create_on_server/properties.py +119 -0
- dsp_tools/commands/create/exceptions.py +29 -0
- dsp_tools/commands/create/lists_only.py +66 -0
- dsp_tools/commands/create/models/create_problems.py +87 -0
- dsp_tools/commands/create/models/parsed_ontology.py +88 -0
- dsp_tools/commands/create/models/parsed_project.py +81 -0
- dsp_tools/commands/create/models/rdf_ontology.py +12 -0
- dsp_tools/commands/create/models/server_project_info.py +100 -0
- dsp_tools/commands/create/parsing/parse_lists.py +45 -0
- dsp_tools/commands/create/parsing/parse_ontology.py +243 -0
- dsp_tools/commands/create/parsing/parse_project.py +149 -0
- dsp_tools/commands/create/parsing/parsing_utils.py +40 -0
- dsp_tools/commands/create/project_validate.py +595 -0
- dsp_tools/commands/create/serialisation/ontology.py +119 -0
- dsp_tools/commands/create/serialisation/project.py +44 -0
- dsp_tools/commands/excel2json/CLAUDE.md +101 -0
- dsp_tools/commands/excel2json/json_header.py +57 -23
- dsp_tools/commands/excel2json/{new_lists → lists}/compliance_checks.py +26 -26
- dsp_tools/commands/excel2json/{new_lists/make_new_lists.py → lists/make_lists.py} +19 -18
- dsp_tools/commands/excel2json/{new_lists → lists}/models/input_error.py +1 -12
- dsp_tools/commands/excel2json/{new_lists → lists}/models/serialise.py +9 -5
- dsp_tools/commands/excel2json/{new_lists → lists}/utils.py +4 -4
- dsp_tools/commands/excel2json/models/input_error.py +31 -11
- dsp_tools/commands/excel2json/models/json_header.py +53 -15
- dsp_tools/commands/excel2json/models/ontology.py +4 -3
- dsp_tools/commands/excel2json/{lists.py → old_lists.py} +26 -112
- dsp_tools/commands/excel2json/project.py +78 -34
- dsp_tools/commands/excel2json/properties.py +57 -36
- dsp_tools/commands/excel2json/resources.py +32 -12
- dsp_tools/commands/excel2json/utils.py +20 -1
- dsp_tools/commands/excel2xml/__init__.py +2 -2
- dsp_tools/commands/excel2xml/excel2xml_cli.py +7 -15
- dsp_tools/commands/excel2xml/excel2xml_lib.py +138 -493
- dsp_tools/commands/excel2xml/propertyelement.py +5 -5
- dsp_tools/commands/{project → get}/get.py +29 -13
- dsp_tools/commands/get/get_permissions.py +257 -0
- dsp_tools/commands/get/get_permissions_legacy.py +89 -0
- dsp_tools/commands/{project/models → get/legacy_models}/context.py +6 -6
- dsp_tools/commands/{project/models → get/legacy_models}/group.py +5 -10
- dsp_tools/commands/{project/models → get/legacy_models}/listnode.py +5 -35
- dsp_tools/commands/{project/models → get/legacy_models}/model.py +1 -1
- dsp_tools/commands/{project/models → get/legacy_models}/ontology.py +9 -14
- dsp_tools/commands/{project/models → get/legacy_models}/project.py +13 -6
- dsp_tools/commands/{project/models → get/legacy_models}/propertyclass.py +9 -16
- dsp_tools/commands/{project/models → get/legacy_models}/resourceclass.py +8 -46
- dsp_tools/commands/{project/models → get/legacy_models}/user.py +19 -60
- dsp_tools/commands/get/models/permissions_models.py +10 -0
- dsp_tools/commands/id2iri.py +20 -10
- dsp_tools/commands/ingest_xmlupload/bulk_ingest_client.py +81 -56
- dsp_tools/commands/ingest_xmlupload/create_resources/apply_ingest_id.py +4 -10
- dsp_tools/commands/ingest_xmlupload/create_resources/upload_xml.py +97 -37
- dsp_tools/commands/ingest_xmlupload/create_resources/user_information.py +2 -2
- dsp_tools/commands/ingest_xmlupload/ingest_files/ingest_files.py +9 -10
- dsp_tools/commands/ingest_xmlupload/upload_files/filechecker.py +3 -3
- dsp_tools/commands/ingest_xmlupload/upload_files/input_error.py +2 -10
- dsp_tools/commands/ingest_xmlupload/upload_files/upload_failures.py +12 -2
- dsp_tools/commands/ingest_xmlupload/upload_files/upload_files.py +8 -9
- dsp_tools/commands/resume_xmlupload/resume_xmlupload.py +18 -18
- dsp_tools/commands/start_stack.py +126 -77
- dsp_tools/commands/update_legal/CLAUDE.md +344 -0
- dsp_tools/commands/update_legal/__init__.py +0 -0
- dsp_tools/commands/update_legal/core.py +182 -0
- dsp_tools/commands/update_legal/csv_operations.py +135 -0
- dsp_tools/commands/update_legal/models.py +87 -0
- dsp_tools/commands/update_legal/xml_operations.py +247 -0
- dsp_tools/commands/validate_data/CLAUDE.md +159 -0
- dsp_tools/commands/validate_data/__init__.py +0 -0
- dsp_tools/commands/validate_data/constants.py +59 -0
- dsp_tools/commands/validate_data/mappers.py +143 -0
- dsp_tools/commands/validate_data/models/__init__.py +0 -0
- dsp_tools/commands/validate_data/models/api_responses.py +45 -0
- dsp_tools/commands/validate_data/models/input_problems.py +119 -0
- dsp_tools/commands/validate_data/models/rdf_like_data.py +117 -0
- dsp_tools/commands/validate_data/models/validation.py +106 -0
- dsp_tools/commands/validate_data/prepare_data/__init__.py +0 -0
- dsp_tools/commands/validate_data/prepare_data/get_rdf_like_data.py +296 -0
- dsp_tools/commands/validate_data/prepare_data/make_data_graph.py +91 -0
- dsp_tools/commands/validate_data/prepare_data/prepare_data.py +184 -0
- dsp_tools/commands/validate_data/process_validation_report/__init__.py +0 -0
- dsp_tools/commands/validate_data/process_validation_report/get_user_validation_message.py +358 -0
- dsp_tools/commands/validate_data/process_validation_report/query_validation_result.py +507 -0
- dsp_tools/commands/validate_data/process_validation_report/reformat_validation_results.py +150 -0
- dsp_tools/commands/validate_data/shacl_cli_validator.py +70 -0
- dsp_tools/commands/validate_data/sparql/__init__.py +0 -0
- dsp_tools/commands/{xml_validate/sparql/resource_shacl.py → validate_data/sparql/cardinality_shacl.py} +45 -47
- dsp_tools/commands/validate_data/sparql/construct_shacl.py +92 -0
- dsp_tools/commands/validate_data/sparql/legal_info_shacl.py +36 -0
- dsp_tools/commands/validate_data/sparql/value_shacl.py +357 -0
- dsp_tools/commands/validate_data/utils.py +59 -0
- dsp_tools/commands/validate_data/validate_data.py +283 -0
- dsp_tools/commands/validate_data/validation/__init__.py +0 -0
- dsp_tools/commands/validate_data/validation/check_duplicate_files.py +55 -0
- dsp_tools/commands/validate_data/validation/check_for_unknown_classes.py +67 -0
- dsp_tools/commands/validate_data/validation/get_validation_report.py +94 -0
- dsp_tools/commands/validate_data/validation/validate_ontology.py +107 -0
- dsp_tools/commands/xmlupload/CLAUDE.md +292 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/__init__.py +0 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/constants.py +63 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/jsonld_utils.py +44 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/make_file_value.py +77 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/make_resource_and_values.py +114 -0
- dsp_tools/commands/xmlupload/make_rdf_graph/make_values.py +262 -0
- dsp_tools/commands/xmlupload/models/bitstream_info.py +18 -0
- dsp_tools/commands/xmlupload/models/formatted_text_value.py +0 -25
- dsp_tools/commands/xmlupload/models/ingest.py +56 -70
- dsp_tools/commands/xmlupload/models/input_problems.py +6 -14
- dsp_tools/commands/xmlupload/models/lookup_models.py +21 -0
- dsp_tools/commands/xmlupload/models/permission.py +0 -39
- dsp_tools/commands/xmlupload/models/{deserialise/xmlpermission.py → permissions_parsed.py} +2 -2
- dsp_tools/commands/xmlupload/models/processed/__init__.py +0 -0
- dsp_tools/commands/xmlupload/models/processed/file_values.py +29 -0
- dsp_tools/commands/xmlupload/models/processed/res.py +27 -0
- dsp_tools/commands/xmlupload/models/processed/values.py +101 -0
- dsp_tools/commands/xmlupload/models/rdf_models.py +26 -0
- dsp_tools/commands/xmlupload/models/upload_clients.py +3 -3
- dsp_tools/commands/xmlupload/models/upload_state.py +2 -4
- dsp_tools/commands/xmlupload/prepare_xml_input/__init__.py +0 -0
- dsp_tools/commands/xmlupload/{ark2iri.py → prepare_xml_input/ark2iri.py} +1 -1
- dsp_tools/commands/xmlupload/prepare_xml_input/get_processed_resources.py +252 -0
- dsp_tools/commands/xmlupload/{iiif_uri_validator.py → prepare_xml_input/iiif_uri_validator.py} +2 -14
- dsp_tools/commands/xmlupload/{list_client.py → prepare_xml_input/list_client.py} +15 -10
- dsp_tools/commands/xmlupload/prepare_xml_input/prepare_xml_input.py +67 -0
- dsp_tools/commands/xmlupload/prepare_xml_input/read_validate_xml_file.py +58 -0
- dsp_tools/commands/xmlupload/prepare_xml_input/transform_input_values.py +118 -0
- dsp_tools/commands/xmlupload/resource_create_client.py +7 -468
- dsp_tools/commands/xmlupload/richtext_id2iri.py +37 -0
- dsp_tools/commands/xmlupload/stash/{construct_and_analyze_graph.py → analyse_circular_reference_graph.py} +64 -157
- dsp_tools/commands/xmlupload/stash/create_info_for_graph.py +53 -0
- dsp_tools/commands/xmlupload/stash/graph_models.py +13 -8
- dsp_tools/commands/xmlupload/stash/stash_circular_references.py +48 -115
- dsp_tools/commands/xmlupload/stash/stash_models.py +4 -9
- dsp_tools/commands/xmlupload/stash/upload_stashed_resptr_props.py +34 -40
- dsp_tools/commands/xmlupload/stash/upload_stashed_xml_texts.py +98 -108
- dsp_tools/commands/xmlupload/upload_config.py +8 -0
- dsp_tools/commands/xmlupload/write_diagnostic_info.py +14 -9
- dsp_tools/commands/xmlupload/xmlupload.py +214 -192
- dsp_tools/config/__init__.py +0 -0
- dsp_tools/config/logger_config.py +69 -0
- dsp_tools/{utils → config}/warnings_config.py +4 -1
- dsp_tools/error/__init__.py +0 -0
- dsp_tools/error/custom_warnings.py +39 -0
- dsp_tools/error/exceptions.py +204 -0
- dsp_tools/error/problems.py +10 -0
- dsp_tools/error/xmllib_errors.py +20 -0
- dsp_tools/error/xmllib_warnings.py +54 -0
- dsp_tools/error/xmllib_warnings_util.py +159 -0
- dsp_tools/error/xsd_validation_error_msg.py +19 -0
- dsp_tools/legacy_models/__init__.py +0 -0
- dsp_tools/{models → legacy_models}/datetimestamp.py +7 -7
- dsp_tools/{models → legacy_models}/langstring.py +1 -1
- dsp_tools/{models → legacy_models}/projectContext.py +4 -4
- dsp_tools/resources/schema/data.xsd +108 -83
- dsp_tools/resources/schema/lists-only.json +4 -23
- dsp_tools/resources/schema/project.json +80 -35
- dsp_tools/resources/schema/properties-only.json +1 -4
- dsp_tools/resources/start-stack/docker-compose.override-host.j2 +11 -0
- dsp_tools/resources/start-stack/docker-compose.yml +34 -30
- dsp_tools/resources/start-stack/dsp-app-config.json +45 -0
- dsp_tools/resources/start-stack/dsp-app-config.override-host.j2 +26 -0
- dsp_tools/resources/validate_data/api-shapes-resource-cardinalities.ttl +191 -0
- dsp_tools/resources/validate_data/api-shapes.ttl +804 -0
- dsp_tools/resources/validate_data/shacl-cli-image.yml +4 -0
- dsp_tools/resources/validate_data/validate-ontology.ttl +99 -0
- dsp_tools/utils/ansi_colors.py +32 -0
- dsp_tools/utils/data_formats/__init__.py +0 -0
- dsp_tools/utils/{date_util.py → data_formats/date_util.py} +13 -1
- dsp_tools/utils/data_formats/iri_util.py +30 -0
- dsp_tools/utils/{shared.py → data_formats/shared.py} +1 -35
- dsp_tools/utils/{uri_util.py → data_formats/uri_util.py} +12 -2
- dsp_tools/utils/fuseki_bloating.py +63 -0
- dsp_tools/utils/json_parsing.py +22 -0
- dsp_tools/utils/rdf_constants.py +42 -0
- dsp_tools/utils/rdflib_utils.py +10 -0
- dsp_tools/utils/replace_id_with_iri.py +66 -0
- dsp_tools/utils/request_utils.py +238 -0
- dsp_tools/utils/xml_parsing/__init__.py +0 -0
- dsp_tools/utils/xml_parsing/get_lookups.py +32 -0
- dsp_tools/utils/xml_parsing/get_parsed_resources.py +325 -0
- dsp_tools/utils/xml_parsing/models/__init__.py +0 -0
- dsp_tools/utils/xml_parsing/models/parsed_resource.py +76 -0
- dsp_tools/utils/xml_parsing/parse_clean_validate_xml.py +137 -0
- dsp_tools/xmllib/CLAUDE.md +302 -0
- dsp_tools/xmllib/__init__.py +49 -0
- dsp_tools/xmllib/general_functions.py +877 -0
- dsp_tools/xmllib/internal/__init__.py +0 -0
- dsp_tools/xmllib/internal/checkers.py +162 -0
- dsp_tools/xmllib/internal/circumvent_circular_imports.py +36 -0
- dsp_tools/xmllib/internal/constants.py +46 -0
- dsp_tools/xmllib/internal/input_converters.py +155 -0
- dsp_tools/xmllib/internal/serialise_file_value.py +57 -0
- dsp_tools/xmllib/internal/serialise_resource.py +177 -0
- dsp_tools/xmllib/internal/serialise_values.py +152 -0
- dsp_tools/xmllib/internal/type_aliases.py +11 -0
- dsp_tools/xmllib/models/config_options.py +28 -0
- dsp_tools/xmllib/models/date_formats.py +48 -0
- dsp_tools/xmllib/models/dsp_base_resources.py +1380 -400
- dsp_tools/xmllib/models/internal/__init__.py +0 -0
- dsp_tools/xmllib/models/internal/file_values.py +172 -0
- dsp_tools/xmllib/models/internal/geometry.py +162 -0
- dsp_tools/xmllib/models/{migration_metadata.py → internal/migration_metadata.py} +14 -10
- dsp_tools/xmllib/models/internal/serialise_permissions.py +66 -0
- dsp_tools/xmllib/models/internal/values.py +342 -0
- dsp_tools/xmllib/models/licenses/__init__.py +0 -0
- dsp_tools/xmllib/models/licenses/other.py +59 -0
- dsp_tools/xmllib/models/licenses/recommended.py +107 -0
- dsp_tools/xmllib/models/permissions.py +41 -0
- dsp_tools/xmllib/models/res.py +1782 -0
- dsp_tools/xmllib/models/root.py +313 -26
- dsp_tools/xmllib/value_checkers.py +310 -47
- dsp_tools/xmllib/value_converters.py +765 -8
- dsp_tools-18.3.0.post13.dist-info/METADATA +90 -0
- dsp_tools-18.3.0.post13.dist-info/RECORD +286 -0
- dsp_tools-18.3.0.post13.dist-info/WHEEL +4 -0
- {dsp_tools-9.1.0.post11.dist-info → dsp_tools-18.3.0.post13.dist-info}/entry_points.txt +1 -0
- dsp_tools/commands/project/create/project_create.py +0 -1107
- dsp_tools/commands/project/create/project_create_lists.py +0 -204
- dsp_tools/commands/project/create/project_validate.py +0 -453
- dsp_tools/commands/project/models/project_definition.py +0 -12
- dsp_tools/commands/rosetta.py +0 -124
- dsp_tools/commands/template.py +0 -30
- dsp_tools/commands/xml_validate/api_connection.py +0 -122
- dsp_tools/commands/xml_validate/deserialise_input.py +0 -135
- dsp_tools/commands/xml_validate/make_data_rdf.py +0 -193
- dsp_tools/commands/xml_validate/models/data_deserialised.py +0 -108
- dsp_tools/commands/xml_validate/models/data_rdf.py +0 -214
- dsp_tools/commands/xml_validate/models/input_problems.py +0 -191
- dsp_tools/commands/xml_validate/models/validation.py +0 -29
- dsp_tools/commands/xml_validate/reformat_validaton_result.py +0 -89
- dsp_tools/commands/xml_validate/sparql/construct_shapes.py +0 -16
- dsp_tools/commands/xml_validate/xml_validate.py +0 -151
- dsp_tools/commands/xmlupload/check_consistency_with_ontology.py +0 -253
- dsp_tools/commands/xmlupload/models/deserialise/deserialise_value.py +0 -236
- dsp_tools/commands/xmlupload/models/deserialise/xmlresource.py +0 -171
- dsp_tools/commands/xmlupload/models/namespace_context.py +0 -39
- dsp_tools/commands/xmlupload/models/ontology_lookup_models.py +0 -161
- dsp_tools/commands/xmlupload/models/ontology_problem_models.py +0 -178
- dsp_tools/commands/xmlupload/models/serialise/jsonld_serialiser.py +0 -40
- dsp_tools/commands/xmlupload/models/serialise/serialise_value.py +0 -51
- dsp_tools/commands/xmlupload/ontology_client.py +0 -92
- dsp_tools/commands/xmlupload/project_client.py +0 -91
- dsp_tools/commands/xmlupload/read_validate_xml_file.py +0 -99
- dsp_tools/models/custom_warnings.py +0 -31
- dsp_tools/models/exceptions.py +0 -90
- dsp_tools/resources/0100-template-repo/template.json +0 -45
- dsp_tools/resources/0100-template-repo/template.xml +0 -27
- dsp_tools/resources/start-stack/docker-compose-validation.yml +0 -5
- dsp_tools/resources/start-stack/start-stack-config.yml +0 -4
- dsp_tools/resources/xml_validate/api-shapes.ttl +0 -411
- dsp_tools/resources/xml_validate/replace_namespace.xslt +0 -61
- dsp_tools/utils/connection_live.py +0 -383
- dsp_tools/utils/iri_util.py +0 -14
- dsp_tools/utils/logger_config.py +0 -41
- dsp_tools/utils/set_encoder.py +0 -20
- dsp_tools/utils/xml_utils.py +0 -145
- dsp_tools/utils/xml_validation.py +0 -197
- dsp_tools/utils/xml_validation_models.py +0 -68
- dsp_tools/xmllib/models/file_values.py +0 -78
- dsp_tools/xmllib/models/resource.py +0 -415
- dsp_tools/xmllib/models/values.py +0 -428
- dsp_tools-9.1.0.post11.dist-info/METADATA +0 -130
- dsp_tools-9.1.0.post11.dist-info/RECORD +0 -167
- dsp_tools-9.1.0.post11.dist-info/WHEEL +0 -4
- dsp_tools-9.1.0.post11.dist-info/licenses/LICENSE +0 -674
- /dsp_tools/{commands/excel2json/new_lists → clients}/__init__.py +0 -0
- /dsp_tools/commands/{excel2json/new_lists/models → create}/__init__.py +0 -0
- /dsp_tools/commands/{project → create/create_on_server}/__init__.py +0 -0
- /dsp_tools/commands/{project/create → create/models}/__init__.py +0 -0
- /dsp_tools/commands/{project/models → create/parsing}/__init__.py +0 -0
- /dsp_tools/commands/{xml_validate → create/serialisation}/__init__.py +0 -0
- /dsp_tools/commands/{xml_validate/models → excel2json/lists}/__init__.py +0 -0
- /dsp_tools/commands/{xml_validate/sparql → excel2json/lists/models}/__init__.py +0 -0
- /dsp_tools/commands/excel2json/{new_lists → lists}/models/deserialise.py +0 -0
- /dsp_tools/commands/{xmlupload/models/deserialise → get}/__init__.py +0 -0
- /dsp_tools/commands/{xmlupload/models/serialise → get/legacy_models}/__init__.py +0 -0
- /dsp_tools/commands/{project/models → get/legacy_models}/helpers.py +0 -0
- /dsp_tools/{models → commands/get/models}/__init__.py +0 -0
|
@@ -0,0 +1,90 @@
|
|
|
1
|
+
Metadata-Version: 2.3
|
|
2
|
+
Name: dsp-tools
|
|
3
|
+
Version: 18.3.0.post13
|
|
4
|
+
Summary: DSP-TOOLS is a Python package with a command line interface that helps you interact with a DaSCH service platform (DSP) server.
|
|
5
|
+
Author: DaSCH - Swiss National Data and Service Center for the Humanities
|
|
6
|
+
Author-email: DaSCH - Swiss National Data and Service Center for the Humanities <info@dasch.swiss>
|
|
7
|
+
Classifier: Programming Language :: Python :: 3.12
|
|
8
|
+
Classifier: Programming Language :: Python :: 3.13
|
|
9
|
+
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
|
|
10
|
+
Classifier: Operating System :: OS Independent
|
|
11
|
+
Requires-Dist: argparse
|
|
12
|
+
Requires-Dist: jinja2
|
|
13
|
+
Requires-Dist: jsonpath-ng
|
|
14
|
+
Requires-Dist: jsonschema
|
|
15
|
+
Requires-Dist: loguru~=0.7.3
|
|
16
|
+
Requires-Dist: lxml
|
|
17
|
+
Requires-Dist: networkx
|
|
18
|
+
Requires-Dist: openpyxl
|
|
19
|
+
Requires-Dist: packaging
|
|
20
|
+
Requires-Dist: pandas[excel]
|
|
21
|
+
Requires-Dist: polars
|
|
22
|
+
Requires-Dist: pyld
|
|
23
|
+
Requires-Dist: python-dotenv
|
|
24
|
+
Requires-Dist: pyyaml
|
|
25
|
+
Requires-Dist: rdflib
|
|
26
|
+
Requires-Dist: regex
|
|
27
|
+
Requires-Dist: requests
|
|
28
|
+
Requires-Dist: rustworkx~=0.17.1
|
|
29
|
+
Requires-Dist: tqdm
|
|
30
|
+
Requires-Dist: typing-extensions
|
|
31
|
+
Requires-Python: >=3.12, <3.14.1
|
|
32
|
+
Project-URL: Documentation, https://docs.dasch.swiss/latest/DSP-TOOLS/
|
|
33
|
+
Project-URL: Homepage, https://www.dasch.swiss/
|
|
34
|
+
Project-URL: Repository, https://github.com/dasch-swiss/dsp-tools.git
|
|
35
|
+
Description-Content-Type: text/markdown
|
|
36
|
+
|
|
37
|
+
[](https://pypi.org/project/dsp-tools/)
|
|
38
|
+
[](https://pypi.org/project/dsp-tools/)
|
|
39
|
+
[](https://pypi.org/project/dsp-tools/)
|
|
40
|
+
[](https://github.com/astral-sh/ruff)
|
|
41
|
+
[](https://github.com/astral-sh/uv)
|
|
42
|
+
[](https://github.com/python/mypy)
|
|
43
|
+
|
|
44
|
+
# DSP-TOOLS Documentation
|
|
45
|
+
|
|
46
|
+
## Installing `dsp-tools`
|
|
47
|
+
|
|
48
|
+
To install the latest version, run:
|
|
49
|
+
|
|
50
|
+
```bash
|
|
51
|
+
pip3 install dsp-tools
|
|
52
|
+
```
|
|
53
|
+
|
|
54
|
+
To update to the latest version run:
|
|
55
|
+
|
|
56
|
+
```bash
|
|
57
|
+
pip3 install --upgrade dsp-tools
|
|
58
|
+
```
|
|
59
|
+
|
|
60
|
+
> 🚨 If your Python version is older than ours,
|
|
61
|
+
> pip will silently install an outdated version of DSP-TOOLS.
|
|
62
|
+
> DSP-TOOLS requires one of these Python versions:
|
|
63
|
+
> [](https://pypi.org/project/dsp-tools/)
|
|
64
|
+
> The most recent version of DSP-TOOLS is
|
|
65
|
+
> [](https://pypi.org/project/dsp-tools/)
|
|
66
|
+
|
|
67
|
+
|
|
68
|
+
|
|
69
|
+
The `dsp-tools` package provides you with functionalities in the command line
|
|
70
|
+
to interact with the [DSP-API](https://github.com/dasch-swiss/dsp-api), both remote and locally.
|
|
71
|
+
Additionally, it contains the `xmllib` which helps you construct the XML file required for a mass upload.
|
|
72
|
+
|
|
73
|
+
|
|
74
|
+
## Where To Start?
|
|
75
|
+
|
|
76
|
+
`dsp-tools` provides you with the following core functionalities.
|
|
77
|
+
|
|
78
|
+
- **Running a Local Stack:** If you want to run your own DSP stack locally, take a look [here](./local-stack.md).
|
|
79
|
+
- **Data Modelling:** There are several ways to create a data model with `dsp-tools`
|
|
80
|
+
- Take a look at the technical specification for the [JSON file](./data-model/json-project/overview.md).
|
|
81
|
+
- Or take a look at our tool to [convert Excel files into the JSON format](./data-model/excel2json.md).
|
|
82
|
+
- You can create a data model on the DSP-APP. To re-use that data model on another server
|
|
83
|
+
you can use the CLI command described [here](./data-model/data-model-cli.md#get).
|
|
84
|
+
- **Data for Mass-Upload:**
|
|
85
|
+
- If you want to create the XML file required for a mass-upload onto DSP, take a look at the [`xmllib`](./xmllib-docs/overview.md).
|
|
86
|
+
- You can find an in-depth explanation of our XML file format [here](./data-file/xml-data-file.md).
|
|
87
|
+
Please note, that we recommend to use the `xmllib` library to create the file
|
|
88
|
+
as we will ensure interoperability between the DSP-API requirements and your input.
|
|
89
|
+
- If you want to validate and upload your XML file take a look [here](./data-file/data-file-commands.md).
|
|
90
|
+
Please note, that only DaSCH employees are permitted to upload data on a production server.
|
|
@@ -0,0 +1,286 @@
|
|
|
1
|
+
dsp_tools/__init__.py,sha256=XdzLhY_8FUFmPtUEawAvEA8apQ_jlgspb2HpmNjlDV8,158
|
|
2
|
+
dsp_tools/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
+
dsp_tools/cli/args.py,sha256=qUoEQVULA3eaCkI1xSdEhEcM26rku0lejnjSnKoevGU,1038
|
|
4
|
+
dsp_tools/cli/call_action.py,sha256=9ByXJc3uEZvN9JZWC4X11nSC_-V5xlWbXKBbmaVHgWE,3416
|
|
5
|
+
dsp_tools/cli/call_action_files_only.py,sha256=uZBXIt9euWbeDedaE0ob3ikk4Ytb7xPJ-QIw3Qk7JAE,3748
|
|
6
|
+
dsp_tools/cli/call_action_with_network.py,sha256=0-ZEX3cdQeOlTq2os7Z9gUjGSOShPmT9NWY6qJpem-8,8606
|
|
7
|
+
dsp_tools/cli/create_parsers.py,sha256=WvIPGzby9CEms18026zqYcdD0LQwsFXdUvvYP1p8GuQ,21259
|
|
8
|
+
dsp_tools/cli/entry_point.py,sha256=KeqiaBezJFkaSkS6PJA05nNV15aIfwKuTivPUOKWc-k,11395
|
|
9
|
+
dsp_tools/cli/utils.py,sha256=vMRsiyorcIZ1swzor89JH9Pg-48MlHG2O_TUjhsDy1w,3085
|
|
10
|
+
dsp_tools/clients/CLAUDE.md,sha256=ZMU_QnVrx4A3R-blaQzzeiarl4DE10OBbFAC5PcuR1M,13129
|
|
11
|
+
dsp_tools/clients/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
12
|
+
dsp_tools/clients/authentication_client.py,sha256=A9nTlOdUE4Ez0psWX6qXwuypNBAA2eSVfHIEPzRmoCs,267
|
|
13
|
+
dsp_tools/clients/authentication_client_live.py,sha256=kVF3yi0cCWqA_7O9mfmY0aLADF6fRFZqXDTdTz4HDTs,2418
|
|
14
|
+
dsp_tools/clients/connection.py,sha256=clbTUaCWlirNAa1DvZ2oUJnlreOejgFBUSs4Lq1VVQo,770
|
|
15
|
+
dsp_tools/clients/connection_live.py,sha256=Y0T-F93FFGnY2Z7qHhG56v3Ajg7U7ATq4QHIVCGo2yo,9459
|
|
16
|
+
dsp_tools/clients/fuseki_metrics.py,sha256=Vy_aWOusnzlD0EnbyHZcTtPIpMEfRA_ihtYbysTq7sQ,2059
|
|
17
|
+
dsp_tools/clients/group_user_clients.py,sha256=vDdVXnLzY6WvQ8o2cesBa8QzDLunn5cpNa0IfVPz0EQ,1104
|
|
18
|
+
dsp_tools/clients/group_user_clients_live.py,sha256=48Jf69pEC7uxpbdF7UTspGDYP5MF_ukdFpXoua2FuE8,8325
|
|
19
|
+
dsp_tools/clients/legal_info_client.py,sha256=itDvGQf1VV1WiH2oHVcH1epSUSdJPRDwdRUvmCw8P4s,742
|
|
20
|
+
dsp_tools/clients/legal_info_client_live.py,sha256=euikH8J59lJcZgrPzDT8bVls7i7ReWwAfrsgSpgH5w4,5339
|
|
21
|
+
dsp_tools/clients/list_client.py,sha256=L1CcbUcmzwkJVKbrbXa7EB2myJ-sCchjZywwuPh2uS8,1118
|
|
22
|
+
dsp_tools/clients/list_client_live.py,sha256=KMyhlY6yGiyABUOM2xZsaklUriQtwPD3dSZOAwI71Iw,6545
|
|
23
|
+
dsp_tools/clients/metadata_client.py,sha256=GD4uYXP3kEym59JAqSub61xXDZSmZaQ2lKRF1_MgYS0,623
|
|
24
|
+
dsp_tools/clients/metadata_client_live.py,sha256=QcnaD9HwH1JqJt1px_glFv6yx9NXLEhha35mYVrmYV0,2119
|
|
25
|
+
dsp_tools/clients/ontology_clients.py,sha256=z5lJ81Q-ggDrWVfUYGDKVtVBVEbRc_UGBrAzaHKQmNk,1583
|
|
26
|
+
dsp_tools/clients/ontology_create_client_live.py,sha256=fGK0-f1cK_VgAct6Oq3_bX44ZvydvJQF5c9FiwmWMPs,6658
|
|
27
|
+
dsp_tools/clients/ontology_get_client_live.py,sha256=7imzainXkiyIqgj4t0ftcbReUSU7QSybNO7pRsYFBYM,3266
|
|
28
|
+
dsp_tools/clients/permissions_client.py,sha256=v_Y02kTWFi7l9JE18lUxkyjc-vyt8KK7h8MN8MtsgXw,2494
|
|
29
|
+
dsp_tools/clients/project_client.py,sha256=R2aQuEAtvtk8b-Gp_wVvhOGww200feg-Cnp2H0MTqhc,443
|
|
30
|
+
dsp_tools/clients/project_client_live.py,sha256=RHPFo-qfJBzpkrGb_0ADeHXkA0h1D52ppsE33Anf7Ds,2810
|
|
31
|
+
dsp_tools/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
32
|
+
dsp_tools/commands/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
33
|
+
dsp_tools/commands/create/communicate_problems.py,sha256=6m1vmewwNkEAEaHvdZ9MsPBY2mMk9Sc7Wm391yOIGag,1033
|
|
34
|
+
dsp_tools/commands/create/create.py,sha256=0OilWOOZ5jDJT706yrySpSGmwPV3s_cQSsIPcnlQhLk,5830
|
|
35
|
+
dsp_tools/commands/create/create_on_server/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
36
|
+
dsp_tools/commands/create/create_on_server/cardinalities.py,sha256=6v_OGCK-doVb4fEKULPrZHJWSL0riOqfmIx1kVm7BMw,4877
|
|
37
|
+
dsp_tools/commands/create/create_on_server/classes.py,sha256=oFNr8vb_te5wqXSStvP88nfRGakbLOQM1hrbkcopRpM,4799
|
|
38
|
+
dsp_tools/commands/create/create_on_server/complete_ontologies.py,sha256=3E8tQwNMTsty8DwHqDkOCG4ncMRj8tdfYuaV5x2Ecqc,4873
|
|
39
|
+
dsp_tools/commands/create/create_on_server/default_permissions.py,sha256=j3GLLAVJOSrrkGHaeq9PVhHldcxlEO0xAKK9u-WsCZ4,6158
|
|
40
|
+
dsp_tools/commands/create/create_on_server/group_users.py,sha256=u1oc-1JQPFVFmIe2y_snNtAjdzR6TuFI3QxNcxspE14,7312
|
|
41
|
+
dsp_tools/commands/create/create_on_server/lists.py,sha256=n7H3YIiVFqynd--_7KAZXkMqXm2d_eQcHGB09BuV_6A,6783
|
|
42
|
+
dsp_tools/commands/create/create_on_server/mappers.py,sha256=Lu2DJAICOZu7WP_1UDvyvRAi0T9ZGO88kvx0UfI6v5I,564
|
|
43
|
+
dsp_tools/commands/create/create_on_server/onto_utils.py,sha256=ybP5GxHftQ1hjC3lLNKY-pZn6sLB3LfUKjvcGO_sNAw,2877
|
|
44
|
+
dsp_tools/commands/create/create_on_server/ontology.py,sha256=4Yb1q2r39dv9adkbntXkSbiF89u_9TW5ZOPjxlCWQY8,2232
|
|
45
|
+
dsp_tools/commands/create/create_on_server/project.py,sha256=jsjLHOmiJ2pJmYtLJjnr4Q49sOuWJNkpJgUZzj5KnxI,2849
|
|
46
|
+
dsp_tools/commands/create/create_on_server/properties.py,sha256=leYdQWFm31uMs9I8sEVElzbUMFC8Yl1yhNvsJpOR-ls,5847
|
|
47
|
+
dsp_tools/commands/create/exceptions.py,sha256=wTnjXH06megdAVkMHvZ2yqmIoTMbOaR6U8UNVGeuqvE,804
|
|
48
|
+
dsp_tools/commands/create/lists_only.py,sha256=Sox2mSl6G3nEKYZUGSo4XUiYOa2y6GEEFr_XmTwu3M8,3102
|
|
49
|
+
dsp_tools/commands/create/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
50
|
+
dsp_tools/commands/create/models/create_problems.py,sha256=KxaEVMdSMAIlyvp7meZYDdfAe4m-sklT1BZ5Ozf4GQ4,3638
|
|
51
|
+
dsp_tools/commands/create/models/parsed_ontology.py,sha256=eJGNOXWVlAzcVABFDh-3h73t9U_rmlHB01x-rTy7H4o,2207
|
|
52
|
+
dsp_tools/commands/create/models/parsed_project.py,sha256=O3eMfYU4SJMrk4T2pNvqM1V_XA5dczyk3_gKwPnypX8,1500
|
|
53
|
+
dsp_tools/commands/create/models/rdf_ontology.py,sha256=c51riv5ZwlIIblr9Wn7QStr4AjtO4Bo1-2bPMKSsTH8,226
|
|
54
|
+
dsp_tools/commands/create/models/server_project_info.py,sha256=vUwfDOH1VXr5b81LOsBHpjNTh0Hmq86T04wHltpip8c,3173
|
|
55
|
+
dsp_tools/commands/create/parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
56
|
+
dsp_tools/commands/create/parsing/parse_lists.py,sha256=eJGHuhFn_O6f8pN4yky6xuvbnUruvnq_EPSctePiRAk,2088
|
|
57
|
+
dsp_tools/commands/create/parsing/parse_ontology.py,sha256=ZDyDnJ0nAnuYBn3d9consRyc_M0RYXpw8686f8XO6hQ,8952
|
|
58
|
+
dsp_tools/commands/create/parsing/parse_project.py,sha256=kUEcOCZ85l-KXuxICs2rqkRG3AfRbal_PqOgzZiJoYo,6032
|
|
59
|
+
dsp_tools/commands/create/parsing/parsing_utils.py,sha256=ziTNfTIpKmEAfU0fu3DfKkZvvOGbC-UGDzeLd0-ED5o,1557
|
|
60
|
+
dsp_tools/commands/create/project_validate.py,sha256=uzSSJrfMQmi-X4wadSSTIXKcZ3ZIFDH7TuN2o0m_qQM,26723
|
|
61
|
+
dsp_tools/commands/create/serialisation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
62
|
+
dsp_tools/commands/create/serialisation/ontology.py,sha256=mXFpsq_UCZ8L0WWgU8sWTajy00EhwF5xIMIuvU_X-jw,4925
|
|
63
|
+
dsp_tools/commands/create/serialisation/project.py,sha256=39oQCsCTD6XtWGLsvUXfnmyFUOJbd-phY1lfubX80s8,1466
|
|
64
|
+
dsp_tools/commands/excel2json/CLAUDE.md,sha256=y7ZcmrHbewN48sV0wyZhNfXDXdERG4PRvdz02Mqh0gg,3399
|
|
65
|
+
dsp_tools/commands/excel2json/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
66
|
+
dsp_tools/commands/excel2json/json_header.py,sha256=3PkhYHloGhuK9_zl7XrqboRksquWzGsdNNNo7-LC2c8,13543
|
|
67
|
+
dsp_tools/commands/excel2json/lists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
68
|
+
dsp_tools/commands/excel2json/lists/compliance_checks.py,sha256=qPn4P0ZQGn1__fts85c032krp9bPNGoTx2yP3MzOsIc,13955
|
|
69
|
+
dsp_tools/commands/excel2json/lists/make_lists.py,sha256=jgboXW1MdnJs6D0tOcP08uO7NWyd4Ag-Spxv-yijh3g,10546
|
|
70
|
+
dsp_tools/commands/excel2json/lists/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
+
dsp_tools/commands/excel2json/lists/models/deserialise.py,sha256=T7Zt-_hEn8kGxp2We0TbIe-027CgU5U_6vmbNRc2q5I,544
|
|
72
|
+
dsp_tools/commands/excel2json/lists/models/input_error.py,sha256=2MIRaP50UlpC6fq8k__Y1qEuZjTBhuoHcllZp6avDiM,7254
|
|
73
|
+
dsp_tools/commands/excel2json/lists/models/serialise.py,sha256=Ph8tfbmcU5ehyiNemG-IzDUANwmTLux5PUjyY0qyLcQ,1757
|
|
74
|
+
dsp_tools/commands/excel2json/lists/utils.py,sha256=5ydsm8poSHksGL-r3uK5F7bEmZc1Bpa7RFJZ6m9mS7c,3039
|
|
75
|
+
dsp_tools/commands/excel2json/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
76
|
+
dsp_tools/commands/excel2json/models/input_error.py,sha256=V6MMtjcSj4EODmCs7asmtqTsHJRCnWndGyKHCuLQFTI,13537
|
|
77
|
+
dsp_tools/commands/excel2json/models/json_header.py,sha256=KLTWtssTsGAPh12RkNYtX4rWuGTbWDQ2sumXzjG4Mwg,4465
|
|
78
|
+
dsp_tools/commands/excel2json/models/list_node_name.py,sha256=hY7LQihUwkqBUEsNwHgNJPniiYLIIZ2XdIJTocghHIk,501
|
|
79
|
+
dsp_tools/commands/excel2json/models/ontology.py,sha256=VBEdfvJD94CuhHyK7hwHgdtsfk-v9t_HLu_ROOnaK2k,2070
|
|
80
|
+
dsp_tools/commands/excel2json/old_lists.py,sha256=aoxsA1oPGPx-DRBJzmNO8JX934doNNyXnipyRU7UW10,12547
|
|
81
|
+
dsp_tools/commands/excel2json/project.py,sha256=8x16UJz5SygSjIaQjZc5uXU3-cxWAvJo8seTYaOzSSI,11644
|
|
82
|
+
dsp_tools/commands/excel2json/properties.py,sha256=sdlseESYVhrklsiDNV_Uw8H5K35JIi6Ivrwm0sXUldw,14517
|
|
83
|
+
dsp_tools/commands/excel2json/resources.py,sha256=xX-ZxGFQYmA9ZPnacKo6nqfvDcZbUUviE5w_-VZLquk,14226
|
|
84
|
+
dsp_tools/commands/excel2json/utils.py,sha256=yVap58SRdwo1K8qteSe0Ji_8h1-f-3akmg3Va9NXEaA,15396
|
|
85
|
+
dsp_tools/commands/excel2xml/__init__.py,sha256=LIVLAjl3NhZZcNt9mOnTphN2cbShb_XzCqj21Yac3RU,492
|
|
86
|
+
dsp_tools/commands/excel2xml/excel2xml_cli.py,sha256=IsocGGFLBq9jg3PTjzx2POVHTra0xSIml25g9U2zuf0,20743
|
|
87
|
+
dsp_tools/commands/excel2xml/excel2xml_lib.py,sha256=gZPdE-Ktc43UtoT0JKXaa6URcEYR_pkTYXXLeb_qz50,76620
|
|
88
|
+
dsp_tools/commands/excel2xml/propertyelement.py,sha256=lASbKLzLFRj162rB_if0x3W_ILaqf4X-EPA0xmJ3K2s,1966
|
|
89
|
+
dsp_tools/commands/get/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
90
|
+
dsp_tools/commands/get/get.py,sha256=trKVPFu6YoBzqJ2gytrTtPAmzmVHmlamxtswLYwZjWw,6419
|
|
91
|
+
dsp_tools/commands/get/get_permissions.py,sha256=L0wT3xIXP4uT2vGppQSjY93RenHuXxoCxxCGmaxjrvA,12912
|
|
92
|
+
dsp_tools/commands/get/get_permissions_legacy.py,sha256=UkZ-mB-2_2VLfkwYR88x9CnM0bjR7NqeALNMXGHFhP8,3293
|
|
93
|
+
dsp_tools/commands/get/legacy_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
94
|
+
dsp_tools/commands/get/legacy_models/context.py,sha256=ycVxgBtqaKVGtHQwukYWm8PLd2Tzol_Nj4sSVbOVkDw,12182
|
|
95
|
+
dsp_tools/commands/get/legacy_models/group.py,sha256=SNBhSJp3BjrvalUDKBTQR40dR2-cLs3UjWhio1TifKo,8130
|
|
96
|
+
dsp_tools/commands/get/legacy_models/helpers.py,sha256=pU5jUeeRZnEi9Y_fm0xAayBmpOAxvU8XD9CXwRSFNgA,850
|
|
97
|
+
dsp_tools/commands/get/legacy_models/listnode.py,sha256=tssN1aZgNIdmXNKGtKoVxsnF1J2n9U5YtQjUI1SNItQ,13830
|
|
98
|
+
dsp_tools/commands/get/legacy_models/model.py,sha256=AzxebBc5Y19kPFvsr4cPLWrKxZj6aGeT_te8NkgaRl4,247
|
|
99
|
+
dsp_tools/commands/get/legacy_models/ontology.py,sha256=sD8g3fm2Gev6bfxL-3VbLdqjxuTy5l-cWnHa9DPSp7I,12533
|
|
100
|
+
dsp_tools/commands/get/legacy_models/project.py,sha256=PlJX5HfuK4dQdp9CDZH3rwCVU9u_kUl0TViHKbayykg,12008
|
|
101
|
+
dsp_tools/commands/get/legacy_models/propertyclass.py,sha256=YgGzApxVDh4h50Eap5O8RKduNBGMDSt-rBgU_W4n_9A,16938
|
|
102
|
+
dsp_tools/commands/get/legacy_models/resourceclass.py,sha256=0hQHUcWAu1cDTfAMrU6EcgzQqxoBuV0CGBeKgRhi2QU,26587
|
|
103
|
+
dsp_tools/commands/get/legacy_models/user.py,sha256=P3mrK95Be6QDBbrgumNEAukSXGF4d90jplfjQIFjTsU,15636
|
|
104
|
+
dsp_tools/commands/get/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
105
|
+
dsp_tools/commands/get/models/permissions_models.py,sha256=gBbo7QH4A36PMojGMeKMvVIHHXNS4F5ssQSxOvjNHik,274
|
|
106
|
+
dsp_tools/commands/id2iri.py,sha256=hiJUuzlo30ZzzOUtEC2FYPLyJ61uMkbChsdC2VChaec,8813
|
|
107
|
+
dsp_tools/commands/ingest_xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
+
dsp_tools/commands/ingest_xmlupload/bulk_ingest_client.py,sha256=0QCiv4aiuhWNMpl69eVnn8DMjH_vipRny25gt3XHet8,7971
|
|
109
|
+
dsp_tools/commands/ingest_xmlupload/create_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
110
|
+
dsp_tools/commands/ingest_xmlupload/create_resources/apply_ingest_id.py,sha256=AM6nSDKQc0Oqrv2Z0Uyaz8ztcPJrUGnwN5tlpvBzaBg,2579
|
|
111
|
+
dsp_tools/commands/ingest_xmlupload/create_resources/upload_xml.py,sha256=_DxDE65OkEcM7yOLpN0VH82e7ijk7xGbUjZ9gLa7R2U,7738
|
|
112
|
+
dsp_tools/commands/ingest_xmlupload/create_resources/user_information.py,sha256=wR6PGR2DQvPS0YXELzCJ70fvzQnFvIzek3VFWVPoZk0,4883
|
|
113
|
+
dsp_tools/commands/ingest_xmlupload/ingest_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
114
|
+
dsp_tools/commands/ingest_xmlupload/ingest_files/ingest_files.py,sha256=ML_k_KyuNOYBcwy6nrqJ077vj72b_a04MbJRy95KPcA,2306
|
|
115
|
+
dsp_tools/commands/ingest_xmlupload/upload_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
116
|
+
dsp_tools/commands/ingest_xmlupload/upload_files/filechecker.py,sha256=vF_lb26A1mRtPBqu4GP-DiQumRintb7WvqdTcpxtBus,852
|
|
117
|
+
dsp_tools/commands/ingest_xmlupload/upload_files/input_error.py,sha256=fE0sc-jYKoXckII5RVREooIdDnrxh1Dhxjaso3YbHpk,2232
|
|
118
|
+
dsp_tools/commands/ingest_xmlupload/upload_files/upload_failures.py,sha256=flvuriyzFtpeid_EG3FIoRj56-0FaDlG4pncp-b8vjI,2393
|
|
119
|
+
dsp_tools/commands/ingest_xmlupload/upload_files/upload_files.py,sha256=QXj58UiTXHk58mtGf04fK5TwqN-npTLsaqxDjxdpZ4o,2739
|
|
120
|
+
dsp_tools/commands/resume_xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
121
|
+
dsp_tools/commands/resume_xmlupload/resume_xmlupload.py,sha256=7_o_B0twpXXs4K-vpR4Y2hsrdhDH3an3_yJG1XGKG4c,4270
|
|
122
|
+
dsp_tools/commands/start_stack.py,sha256=RBa7u1pOhE23zKtiDuqWYd2HA_oufNHsTFEtjr4LAZU,20731
|
|
123
|
+
dsp_tools/commands/update_legal/CLAUDE.md,sha256=h0xKO6C_cugv9j-V8sMu6IKi8xpoqcNojlI4OxnPG28,13313
|
|
124
|
+
dsp_tools/commands/update_legal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
125
|
+
dsp_tools/commands/update_legal/core.py,sha256=mInMeYQwA2QFNH5M7AWiuhCL-K0c0afwWn0GRVMrRmw,7352
|
|
126
|
+
dsp_tools/commands/update_legal/csv_operations.py,sha256=-UjC066JsBalHy6Rffo1ytYz9Mep-xJu1ogBu8T2xrM,4851
|
|
127
|
+
dsp_tools/commands/update_legal/models.py,sha256=OvlIKMEJHha0_LjzUVQs71Y92VP093X8XTgU7Vqd_LA,2515
|
|
128
|
+
dsp_tools/commands/update_legal/xml_operations.py,sha256=nPoBZ0bb0GDGckGIlMwV0o_lJg59GGX1cWwHW1U105E,10033
|
|
129
|
+
dsp_tools/commands/validate_data/CLAUDE.md,sha256=dQYFJtiayYh45kwrtFZWCVDMfPhkqSCTpQ7EUAuO6pc,7733
|
|
130
|
+
dsp_tools/commands/validate_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
131
|
+
dsp_tools/commands/validate_data/constants.py,sha256=5nqNnrgFJV0JEKmWGuRXQnpOwKvtK9FMxifOcMQYf_E,2506
|
|
132
|
+
dsp_tools/commands/validate_data/mappers.py,sha256=4UZqhOIff74o45SWkmIHQznMN4V-LKB_qL8ZIIHlqVk,7764
|
|
133
|
+
dsp_tools/commands/validate_data/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
134
|
+
dsp_tools/commands/validate_data/models/api_responses.py,sha256=_Zs96nAC3pPY0hkfoJMzhpBZy8V5R1-1J2iJkiKSN7I,753
|
|
135
|
+
dsp_tools/commands/validate_data/models/input_problems.py,sha256=QwUHcqONqveQbXaedKqbpqjpYNHSJbn0zDag0iQrCJg,3323
|
|
136
|
+
dsp_tools/commands/validate_data/models/rdf_like_data.py,sha256=1TccR7UwC5idgrny6CQoFd-lPGzx7BdI8sorqWxgCv0,3313
|
|
137
|
+
dsp_tools/commands/validate_data/models/validation.py,sha256=NsMM1ovqK8hibfIHlSBE17GtnGJurOB3il3oMUzgpOc,2293
|
|
138
|
+
dsp_tools/commands/validate_data/prepare_data/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
139
|
+
dsp_tools/commands/validate_data/prepare_data/get_rdf_like_data.py,sha256=sU_VmMAvvNsjKkld6Coc_HJLt32nzXOimvKRxIbte-o,11620
|
|
140
|
+
dsp_tools/commands/validate_data/prepare_data/make_data_graph.py,sha256=NoxkWHI_GDtLhtn6b_J5S_0D4XrwSJy9-TDVBPppdqc,4095
|
|
141
|
+
dsp_tools/commands/validate_data/prepare_data/prepare_data.py,sha256=InynDbZCurJn5mE6KMcTWeauU_NpfkHRVBjqzhMLF4M,8406
|
|
142
|
+
dsp_tools/commands/validate_data/process_validation_report/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
143
|
+
dsp_tools/commands/validate_data/process_validation_report/get_user_validation_message.py,sha256=W5VYJPs8J3VvJAaFDBGBuCQ3Xtonhn1iRUOxwgO7xV0,16148
|
|
144
|
+
dsp_tools/commands/validate_data/process_validation_report/query_validation_result.py,sha256=BOJ3yvGafC3bLdRoQyy09ussT2ulzbJn0NnvpYNGams,22287
|
|
145
|
+
dsp_tools/commands/validate_data/process_validation_report/reformat_validation_results.py,sha256=6WkkgQ1FCUPU0qvVC2I99N-ED_c2rCRcwUwVYW0FCNM,6550
|
|
146
|
+
dsp_tools/commands/validate_data/shacl_cli_validator.py,sha256=qMr0RjnDoidLJ3xuLa0-a82flgmf63mT8UIUvA3ldfc,3082
|
|
147
|
+
dsp_tools/commands/validate_data/sparql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
148
|
+
dsp_tools/commands/validate_data/sparql/cardinality_shacl.py,sha256=V45pljnAx6jvsE1VRDKMZjZ1HdmwoMUnPUCQrQIYHMU,7218
|
|
149
|
+
dsp_tools/commands/validate_data/sparql/construct_shacl.py,sha256=pB8sHn8FiAEiweeIYHROUAJH0YeCk8NWbzEI98YuEIQ,3553
|
|
150
|
+
dsp_tools/commands/validate_data/sparql/legal_info_shacl.py,sha256=2yhn5HfCJFJpOTB-3XNWfxP1KwW3zKxDfqPdhN_Sazg,1522
|
|
151
|
+
dsp_tools/commands/validate_data/sparql/value_shacl.py,sha256=ssbDPo3Nd52CqtBWNSH1uTjjG3VPxI1AYo8ZBio97GY,13035
|
|
152
|
+
dsp_tools/commands/validate_data/utils.py,sha256=J9vSan0czf0Lh9QSb218Qe59mdIHSZb7zeCEZ3rB2Cc,1987
|
|
153
|
+
dsp_tools/commands/validate_data/validate_data.py,sha256=3Zf_hwG5EwdVqweBneW8IdZadBJ0xIw_YqMG5P_oB8s,13563
|
|
154
|
+
dsp_tools/commands/validate_data/validation/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
155
|
+
dsp_tools/commands/validate_data/validation/check_duplicate_files.py,sha256=8HU7GZkTMXj68WrVTXadtQujjEP_MvkOnQb4iVtEHt4,2228
|
|
156
|
+
dsp_tools/commands/validate_data/validation/check_for_unknown_classes.py,sha256=po1PSEv1PQl5XrRcmKOiRMRw6_V5TGklvySXDH8Bn-c,2972
|
|
157
|
+
dsp_tools/commands/validate_data/validation/get_validation_report.py,sha256=bDJQwouHBqCzaGm4qMajoPrWrb-45T3Mr5xrjSQ84oQ,4226
|
|
158
|
+
dsp_tools/commands/validate_data/validation/validate_ontology.py,sha256=_G31b7KxLHzQO1uEoMbT8Bafe6N8E30eKnZ1W68kXis,4805
|
|
159
|
+
dsp_tools/commands/xmlupload/CLAUDE.md,sha256=EOmh0nPs5ne9iAFCdhG6LHYaYBn4hMkM86G8UfMMsaU,10547
|
|
160
|
+
dsp_tools/commands/xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
161
|
+
dsp_tools/commands/xmlupload/iri_resolver.py,sha256=1vHj4jMNCG6ZB0-opDfuLwL0guieTQXMmWYfbCdhoUI,625
|
|
162
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
163
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/constants.py,sha256=7REB-iXD5WYfaGVRdIouD6nksHPjQN3qfRkAB7VMYeA,3923
|
|
164
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/jsonld_utils.py,sha256=alHBhzo6OOZGm2H8Oh4PXskIu1b6WcShZIzwGXcWB_I,1586
|
|
165
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/make_file_value.py,sha256=4TO0mpxHiLb_MGrN3-LtC8BMeQA9uK2N0BdK13mkBjU,2842
|
|
166
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/make_resource_and_values.py,sha256=2Cx4A1RFU6bIWxZN7JK-GWS-Kw0xyYCPbq8ei1GL4Tw,4424
|
|
167
|
+
dsp_tools/commands/xmlupload/make_rdf_graph/make_values.py,sha256=hvSKxVWvDON93yfJWNHakol4Od-UboKU3nq9P2iHr_U,10262
|
|
168
|
+
dsp_tools/commands/xmlupload/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
169
|
+
dsp_tools/commands/xmlupload/models/bitstream_info.py,sha256=LQHmaSauocNlCmnKSn89tG05dza1rkH671Ii5LocoQQ,464
|
|
170
|
+
dsp_tools/commands/xmlupload/models/formatted_text_value.py,sha256=fBHctT5cHbDCNIAKs6IlgsY93v1qkKAyMeVwNg5d8g8,200
|
|
171
|
+
dsp_tools/commands/xmlupload/models/ingest.py,sha256=BnhPlwblD4KyPwYjoxZbruXZJ1fAq0lhghl5xqPO5Bw,5869
|
|
172
|
+
dsp_tools/commands/xmlupload/models/input_problems.py,sha256=VuocS9X11cozwMUC5rEt7hPuBSdtmCZSLbCmSquz4Vk,2020
|
|
173
|
+
dsp_tools/commands/xmlupload/models/lookup_models.py,sha256=2rt1-tqvE-El-QDtDtxTGYMn3ZUN2JsHFwrmC01W4Kg,477
|
|
174
|
+
dsp_tools/commands/xmlupload/models/permission.py,sha256=ptHV3sY5T0YVPf1zAboxKint4SajEfOI67OVl6YzfUY,1058
|
|
175
|
+
dsp_tools/commands/xmlupload/models/permissions_parsed.py,sha256=frflZBEGKmcoz7-JZDBvYUamw5hSKuJe5R20Oq-umXE,3648
|
|
176
|
+
dsp_tools/commands/xmlupload/models/processed/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
177
|
+
dsp_tools/commands/xmlupload/models/processed/file_values.py,sha256=ewxf153271lYmqZU2SVDboahG6L_hYoRRvQDAWLkUvk,622
|
|
178
|
+
dsp_tools/commands/xmlupload/models/processed/res.py,sha256=YoEvEgyb2UzhSRJcTGnpLQ7ypw7TnKesUZcvn_HhyfU,870
|
|
179
|
+
dsp_tools/commands/xmlupload/models/processed/values.py,sha256=aIrytaKuUTbgGDmRKyLnR6ENHZUTr-wdJAHeQ1fq2zM,1748
|
|
180
|
+
dsp_tools/commands/xmlupload/models/rdf_models.py,sha256=GwnO3m_z49wXzT5WCuStXzGJbU4i0oy-LzUterhW950,439
|
|
181
|
+
dsp_tools/commands/xmlupload/models/upload_clients.py,sha256=EgKSszJfDnXC5OXybQheU5YQ703RtK8eGSgsiTiCXos,456
|
|
182
|
+
dsp_tools/commands/xmlupload/models/upload_state.py,sha256=zKO1_yCt3ZNiOJURSSrf9l-v5AISc3iurkBgHG3lMns,711
|
|
183
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
184
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/ark2iri.py,sha256=xAFTkYpYiW1WkKlpYxpYpC0WRu-S-tTP12gEQ-eJo7A,2349
|
|
185
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/get_processed_resources.py,sha256=hzOmoOLcBrBkcgcgQjeYKm2fP1LWD2saS9i5azyY7OA,12811
|
|
186
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/iiif_uri_validator.py,sha256=l8JdF0XW9LO3JWuXG_DVI4qCjQVtmQnXnnJ8bdF4Xo4,1794
|
|
187
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/list_client.py,sha256=ihRgLaYothAJOpH4ipiUm9w6OcBEiw4J5zt28VaUSF0,3843
|
|
188
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/prepare_xml_input.py,sha256=3Brd1scfA1HYzGb5RsH7b0_8fkGwlkOvz4BXvzmhoPE,3269
|
|
189
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/read_validate_xml_file.py,sha256=y5ZQgpCpPCwCCQt3AYo5sknj6vFN1KJHHj5FBjiYrp4,2236
|
|
190
|
+
dsp_tools/commands/xmlupload/prepare_xml_input/transform_input_values.py,sha256=HB1iuiAK38P36ja95XOHSzxlnC2T2JjIV4U8sN0xo94,4386
|
|
191
|
+
dsp_tools/commands/xmlupload/resource_create_client.py,sha256=NQAbqBh2VOf1Unw7Q9qpItsCBkCJPiey1toNzwbq24U,819
|
|
192
|
+
dsp_tools/commands/xmlupload/richtext_id2iri.py,sha256=GnVW-z36k3NDDS-vYya8af1DQBLva09pCDWhweI9img,1346
|
|
193
|
+
dsp_tools/commands/xmlupload/stash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
194
|
+
dsp_tools/commands/xmlupload/stash/analyse_circular_reference_graph.py,sha256=88x7TG5FiY5Sw_eK8qJ3JxqiBbqmtZG9FMuXpU9bejs,9648
|
|
195
|
+
dsp_tools/commands/xmlupload/stash/create_info_for_graph.py,sha256=9oO_TwsrLmwXOHEKA_WBQb5SXRz9Wq0qap3thcJFrto,2177
|
|
196
|
+
dsp_tools/commands/xmlupload/stash/graph_models.py,sha256=fwBcefO4qLlN7L-yVxstw_rPhNS9jov-mQ9g3nfEtvM,2473
|
|
197
|
+
dsp_tools/commands/xmlupload/stash/stash_circular_references.py,sha256=EFcROk78BqtZbOZuFqQO77wrs0InPlYb4ZUFvTqgNCg,3166
|
|
198
|
+
dsp_tools/commands/xmlupload/stash/stash_models.py,sha256=zIYKUyRIGY6SMiQRgA2AozyOKJwEwiq8nyXV06bEMiI,3300
|
|
199
|
+
dsp_tools/commands/xmlupload/stash/upload_stashed_resptr_props.py,sha256=PTk-d9ZlSxMdrlE2gbd1k5WuHvROFn-e2pYhJJCi5sM,4212
|
|
200
|
+
dsp_tools/commands/xmlupload/stash/upload_stashed_xml_texts.py,sha256=zMKUa2lx7zZ26bbL6uF-8vVypi8KKLgwBXqF-DADVV4,7460
|
|
201
|
+
dsp_tools/commands/xmlupload/upload_config.py,sha256=7lz3PcrHOsTvEBBzDWTvygtNRaf6luAKo_qoOxJp0Ks,2586
|
|
202
|
+
dsp_tools/commands/xmlupload/write_diagnostic_info.py,sha256=ODjCAdKZyxHYDUhpIVpdEwIzjP-2HFySrzWN6Tddb1A,1281
|
|
203
|
+
dsp_tools/commands/xmlupload/xmlupload.py,sha256=f_T6ehKX4Li5QKKgpr0WM1TKVWqZO8NCSrj6bHwXt2w,22250
|
|
204
|
+
dsp_tools/config/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
205
|
+
dsp_tools/config/logger_config.py,sha256=i8z7rT1AaZE0srtPOh0y_D_q9crFCrLldiDjYxjw_G0,2134
|
|
206
|
+
dsp_tools/config/warnings_config.py,sha256=15_Lt227HLqhdn6v-zJbi1KG9Fo6Zi1_4fp_a-iY72w,1142
|
|
207
|
+
dsp_tools/error/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
208
|
+
dsp_tools/error/custom_warnings.py,sha256=BPwvzZ9dxFMWYlWwIaDvTjdv24JFaDZU9-HW6MG5DK4,1294
|
|
209
|
+
dsp_tools/error/exceptions.py,sha256=aqc-aA6lSeTMTejwbGtmSHpKMoMv-_e38n8YvFY_TyQ,7042
|
|
210
|
+
dsp_tools/error/problems.py,sha256=DotzVg3MYvMJmernd9tTBmDHoT1MOkHdiWVv8iMoFSk,265
|
|
211
|
+
dsp_tools/error/xmllib_errors.py,sha256=DpYCsBIx_GmsBAUlfk2VMqtzD5IGMRbd2yXTcrJFHR4,549
|
|
212
|
+
dsp_tools/error/xmllib_warnings.py,sha256=sS9jJXGJtQqCiJ9P2zCM5gpIhTpChbujQz_fPvxLm8g,1557
|
|
213
|
+
dsp_tools/error/xmllib_warnings_util.py,sha256=mobBwHk0ZoNx48wk_bwzVce-D1fV6Ze-V7GtmuruE9k,5941
|
|
214
|
+
dsp_tools/error/xsd_validation_error_msg.py,sha256=G5oOl-hWQmEsWoKr816aNP0t9sNl062R02XClX9zhKs,500
|
|
215
|
+
dsp_tools/legacy_models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
216
|
+
dsp_tools/legacy_models/datetimestamp.py,sha256=AoXQHr1fcP8l18JrQfDxZ_RyVdVlF4aCd8ys9OyGOP8,2863
|
|
217
|
+
dsp_tools/legacy_models/langstring.py,sha256=kTeey-CJ2ZXvIAdjhPfowTpUkXvFtNTKJLhHTaKVJzU,8456
|
|
218
|
+
dsp_tools/legacy_models/projectContext.py,sha256=UhZ7MCblGHFB0kl_VlsOxTkdg-GPXi1XwccVTQa-_Y4,1783
|
|
219
|
+
dsp_tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
220
|
+
dsp_tools/resources/schema/data.xsd,sha256=N10NW46kOO_Z3pVbnm-oBDkrjcQEbSCJ-FdEToR_itI,28716
|
|
221
|
+
dsp_tools/resources/schema/lists-only.json,sha256=bPU2eyAAKznGGnLF-fASQsVNFC2ra1N9WCp0OkEBpSE,2175
|
|
222
|
+
dsp_tools/resources/schema/project.json,sha256=sArMYfa5ARyDsALx9uGi1m0EFd5G3vWtNkG8Pl7y8Xs,44304
|
|
223
|
+
dsp_tools/resources/schema/properties-only.json,sha256=a2APFD6mTiaM15VMktN2eZr6LIu2K_ZSkR8q2vdBapQ,32301
|
|
224
|
+
dsp_tools/resources/schema/resources-only.json,sha256=PCCaZZ1vGEZdgwFcx9iGvNYbQywH_vImG8sDqu_OVQ0,4207
|
|
225
|
+
dsp_tools/resources/start-stack/docker-compose.override-host.j2,sha256=ev36TSCZ7xFpnb7Fcw-s3iQLJkweHhNP2k3golvqcbs,255
|
|
226
|
+
dsp_tools/resources/start-stack/docker-compose.override.yml,sha256=YsoEIWH6U2-M9wV5MkHR_xGpIppP3SDB8xDVWcVg3no,213
|
|
227
|
+
dsp_tools/resources/start-stack/docker-compose.yml,sha256=ba3A8gM0rwL4_9W6ghDILfcz1ZL2GGIBKr2yeJkq_9I,2944
|
|
228
|
+
dsp_tools/resources/start-stack/dsp-app-config.json,sha256=ZPaOWG-lRgxpfEZYIMefhJjJYrdfTTvh94WK_z3Ct2U,1023
|
|
229
|
+
dsp_tools/resources/start-stack/dsp-app-config.override-host.j2,sha256=cVz6ybmJBcgF1FG7y6P4XjzbpMxqC6qKlrbcqAMOB2I,616
|
|
230
|
+
dsp_tools/resources/validate_data/api-shapes-resource-cardinalities.ttl,sha256=xBG6zH9h6qakDeE7Yj28NmHvWpg-vYQ4k5e64WRdKn8,6861
|
|
231
|
+
dsp_tools/resources/validate_data/api-shapes.ttl,sha256=irPS80i3CEH4qUuokS5Y4jRs4fJDgLejR4f45rvVPL0,34105
|
|
232
|
+
dsp_tools/resources/validate_data/shacl-cli-image.yml,sha256=xqjLfZOq1PbNFN9pfq4wN4Y1eSvkhHL6hbvY59uP2pM,125
|
|
233
|
+
dsp_tools/resources/validate_data/validate-ontology.ttl,sha256=bPRUlPWJ4GQKzXWM3eKgs3pwcak-crDUeMp8g2j6xzU,4341
|
|
234
|
+
dsp_tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
235
|
+
dsp_tools/utils/ansi_colors.py,sha256=aCMfANQ8lNtuJ33WgjNkTegI26ISGq8MElrLXrJua4s,1759
|
|
236
|
+
dsp_tools/utils/data_formats/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
237
|
+
dsp_tools/utils/data_formats/date_util.py,sha256=VLNQnSsUX6NB1IY3Ry5KCxCLgHHYN0TSSBRn8hyXN-4,4714
|
|
238
|
+
dsp_tools/utils/data_formats/iri_util.py,sha256=oFcc3gcikmgJOf7iMhT4tfdUQg9wE7lUW5aysfHjylM,1030
|
|
239
|
+
dsp_tools/utils/data_formats/shared.py,sha256=9AybXCAboojvRULZPud5e6B7UkjQOuN6f5fiVxwuZe8,2618
|
|
240
|
+
dsp_tools/utils/data_formats/uri_util.py,sha256=9UGrbtxHVI0Ka0ttxd39KDhGeeP0xOdVLjt6HyV-Ic8,3257
|
|
241
|
+
dsp_tools/utils/fuseki_bloating.py,sha256=euGeQMMe-L9uTrsaNZxnEhK57bhi1phCTjFiQsQ6nlc,2536
|
|
242
|
+
dsp_tools/utils/json_parsing.py,sha256=2GuKw3MEuzIso8FebwoC2AXhVHmi2bSTaGRBpR_mSd0,725
|
|
243
|
+
dsp_tools/utils/rdf_constants.py,sha256=RNxhAFkSPHlZf7wSAzaDTQsyIhKwHTWAOtxzWulfe_M,1142
|
|
244
|
+
dsp_tools/utils/rdflib_utils.py,sha256=M9UCXMe8W3SDQ0DYh4i6lRwYkyWozrWLl19NP5A-RlY,284
|
|
245
|
+
dsp_tools/utils/replace_id_with_iri.py,sha256=5M5vXWJIQ0oO4ELwIt_5QeYBvyGESBc2smuNThHiQUY,2928
|
|
246
|
+
dsp_tools/utils/request_utils.py,sha256=7y4TwAKb430fZOgXeKziMq_zzFr40u8dEtLbtVrXAFQ,8615
|
|
247
|
+
dsp_tools/utils/xml_parsing/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
248
|
+
dsp_tools/utils/xml_parsing/get_lookups.py,sha256=RaBX_wWTmhxpvP1Ow5lbzNxekSyZ4SbuGZTFc18H1jQ,1386
|
|
249
|
+
dsp_tools/utils/xml_parsing/get_parsed_resources.py,sha256=hWx4XvgNyyi5uINrfxFhKbtyeophqAnfG-IbiQ-Y2mg,13517
|
|
250
|
+
dsp_tools/utils/xml_parsing/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
251
|
+
dsp_tools/utils/xml_parsing/models/parsed_resource.py,sha256=Fmw--ehXNgnndgqCrl7rsjncSoAZAvuaPyGL8RtZuz8,1640
|
|
252
|
+
dsp_tools/utils/xml_parsing/parse_clean_validate_xml.py,sha256=692GKTByqEmJhhraJNEQ2C9gjnPmQ7rteDZejAgbgsQ,5773
|
|
253
|
+
dsp_tools/xmllib/CLAUDE.md,sha256=qTmS2b3_eMozhLMxMr8DQphaAxcD3UwqV61AysZfHlg,8760
|
|
254
|
+
dsp_tools/xmllib/__init__.py,sha256=grpOIBuGO--uxyvDzU7z7ml7OSyTiQh8J_F4NyEa1cs,3406
|
|
255
|
+
dsp_tools/xmllib/general_functions.py,sha256=W8EuIKhLsW2bMKGZvOT-YYRvn1ASYK3rAY8vxrtUIiw,32622
|
|
256
|
+
dsp_tools/xmllib/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
257
|
+
dsp_tools/xmllib/internal/checkers.py,sha256=Nt-TWwulyTUsmxvsX8Vq9oKX_gJJX0eJRvmxwb9x-yI,5933
|
|
258
|
+
dsp_tools/xmllib/internal/circumvent_circular_imports.py,sha256=jkXHY08lXo6QPhyJCvW3vp4FWu7pFD4GLsq8TNfhCEs,1397
|
|
259
|
+
dsp_tools/xmllib/internal/constants.py,sha256=15A_UUwunDSME8k0vKIATGwcZQ_dDTn9uiXNTVcke-c,1094
|
|
260
|
+
dsp_tools/xmllib/internal/input_converters.py,sha256=16QMD2m38SgxYLCj0D_d6tnO0bbFHsugJrwIw7Y-Sqs,4982
|
|
261
|
+
dsp_tools/xmllib/internal/serialise_file_value.py,sha256=IR8icA8hrrV2A3K7PgGcx9HwXtroaKkIMRuLxpmj8pE,2303
|
|
262
|
+
dsp_tools/xmllib/internal/serialise_resource.py,sha256=ZR9AEqAKKNR8RkWVG2qlUUsVuvjxtyF-zCjODdnj9ro,7805
|
|
263
|
+
dsp_tools/xmllib/internal/serialise_values.py,sha256=B2xsXv0uVt7NNYwfATnYndVy4r9Hvr3Qc9GTkR5VvmI,6285
|
|
264
|
+
dsp_tools/xmllib/internal/type_aliases.py,sha256=2K_7PbKk0h7-oH0nDyqVQrALWuv302Nkyke6wVrMPic,511
|
|
265
|
+
dsp_tools/xmllib/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
266
|
+
dsp_tools/xmllib/models/config_options.py,sha256=9lne-1nhoyxlFTgfyywUP0VOMV9TDuuChSLIiuVRCoI,784
|
|
267
|
+
dsp_tools/xmllib/models/date_formats.py,sha256=FLOujz06j7UFLvyYKOF5_f5jjdDoZvEL3bmuikSJF8o,1108
|
|
268
|
+
dsp_tools/xmllib/models/dsp_base_resources.py,sha256=L8DLi6kUq8lLJZwVCkqz49jqs68WjwiuX20Ll1cbjfA,52901
|
|
269
|
+
dsp_tools/xmllib/models/internal/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
270
|
+
dsp_tools/xmllib/models/internal/file_values.py,sha256=lhcZOqeI3oFoQMtDkKZ_T7azG_wqN8SGGwBm6r8di7I,6211
|
|
271
|
+
dsp_tools/xmllib/models/internal/geometry.py,sha256=1F7mDoqE9ww7Hfzd8eUZKf_H_Vaae3TimT10GGA87fs,5240
|
|
272
|
+
dsp_tools/xmllib/models/internal/migration_metadata.py,sha256=RRO98NwlsLFCb3bQVugRHZPTNznZ5t61LtWwBHjbBX0,2178
|
|
273
|
+
dsp_tools/xmllib/models/internal/serialise_permissions.py,sha256=hgNEqdtwZdCZN0aPcn7PvlLJ8dMAR_OU_1FQk62jvpY,2169
|
|
274
|
+
dsp_tools/xmllib/models/internal/values.py,sha256=ZVwC3UkamPcy3pvGFeslSZfEXItV7iE3DHq1uVDtCaE,11757
|
|
275
|
+
dsp_tools/xmllib/models/licenses/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
276
|
+
dsp_tools/xmllib/models/licenses/other.py,sha256=mORAtMbROjnwhORnHPcmqhavmiIuy7bh1aw9JF_AuAk,2143
|
|
277
|
+
dsp_tools/xmllib/models/licenses/recommended.py,sha256=mxMg0wYrad_7vCbbtsLk7C3JwUeTse7wT-_mpiPVCKw,3924
|
|
278
|
+
dsp_tools/xmllib/models/permissions.py,sha256=6pamw3q6CNV73OoFcIBZn6YibGTsSXnMoGy6AdkZI7o,1145
|
|
279
|
+
dsp_tools/xmllib/models/res.py,sha256=rCLBFu-Myz3xv2m9feKn7a0uszramYfL25qm2OdTESs,61260
|
|
280
|
+
dsp_tools/xmllib/models/root.py,sha256=0xkpFRNxGAgGWfXoHfmGxGVlxL2uE1vtYctC_qzZLd8,13629
|
|
281
|
+
dsp_tools/xmllib/value_checkers.py,sha256=G3goJvRy7QJgcYX8qvTOXPskflfsPjZ89H8X4K3RxdM,11385
|
|
282
|
+
dsp_tools/xmllib/value_converters.py,sha256=WMYS5hd1VlrLLBXnf6pv9yYoPBsv_2MxOO6xv-QsRW4,29218
|
|
283
|
+
dsp_tools-18.3.0.post13.dist-info/WHEEL,sha256=93kfTGt3a0Dykt_T-gsjtyS5_p8F_d6CE1NwmBOirzo,79
|
|
284
|
+
dsp_tools-18.3.0.post13.dist-info/entry_points.txt,sha256=qjRfEbkeAwLU_AE2Q-l4Y9irPNmu4Wna-3bfRp1bqV4,62
|
|
285
|
+
dsp_tools-18.3.0.post13.dist-info/METADATA,sha256=KYtB8yPJ6EWvdB95w86vuRv6kIiW3oywbT65Dz_KiiQ,4316
|
|
286
|
+
dsp_tools-18.3.0.post13.dist-info/RECORD,,
|