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
|
@@ -1,167 +0,0 @@
|
|
|
1
|
-
dsp_tools/__init__.py,sha256=SoN1ZAse4EMFT6rtXAMIwpL_-RHU3akeI_CzW398aKQ,41
|
|
2
|
-
dsp_tools/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
3
|
-
dsp_tools/cli/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
4
|
-
dsp_tools/cli/args.py,sha256=u7RSzypupGHVxyPAy4z8aqyLPB0NfpOMLE6Uf-_hCIo,237
|
|
5
|
-
dsp_tools/cli/call_action.py,sha256=H-0-4juCIeAkTcxxNdiDGVCWGghT9zg2QaA7vgQ5sS8,9118
|
|
6
|
-
dsp_tools/cli/create_parsers.py,sha256=0Ok75uFc-dNJ2pSX3-ym9BKfjiJzzkr8oVenKfE4tKA,17185
|
|
7
|
-
dsp_tools/cli/entry_point.py,sha256=MdGbTbbFZGLK9wHbjAzPgxVfupyBZ1v_klpko3Ng8eo,10195
|
|
8
|
-
dsp_tools/commands/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
9
|
-
dsp_tools/commands/id2iri.py,sha256=KBN8eSPXTa3iNHXwIauSiTpKkT6yADVJ_H1HF0hUPwI,8287
|
|
10
|
-
dsp_tools/commands/rosetta.py,sha256=K7ZCHAqc7XwJBLtQyO2vtOcSC6e5qtnPJGNs7wPO-ws,4217
|
|
11
|
-
dsp_tools/commands/start_stack.py,sha256=K31jkAQhYMPErXNJuO3qImWKyh2Y9bh1fsh2CmlFu_U,17517
|
|
12
|
-
dsp_tools/commands/template.py,sha256=ByxQCDvehTx-62RsaNT77i9_lVW3dBc_dWnu3E6puv4,1134
|
|
13
|
-
dsp_tools/commands/excel2json/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
14
|
-
dsp_tools/commands/excel2json/json_header.py,sha256=ZNx7Vr4Pnjy4XNJxjyHS7qE_cpGHTpMnvMdkPP5wzrY,11831
|
|
15
|
-
dsp_tools/commands/excel2json/lists.py,sha256=TsV10RMkI0G1gln5YevjMMBAjd9VLhbyUhW0jB17mj8,16092
|
|
16
|
-
dsp_tools/commands/excel2json/project.py,sha256=dOMU718qYGQ7H0_jE4BkgvC2JJDY3hOZNJ8qUgQPuN4,9579
|
|
17
|
-
dsp_tools/commands/excel2json/properties.py,sha256=kDujVGPeVU2ourhMbivwe3OXnWOeNCiLIY-HxMOKnb8,13770
|
|
18
|
-
dsp_tools/commands/excel2json/resources.py,sha256=o5TKHA552pvBI2EzhxOzLbtQmN5jbjMouMkvwXlsC7s,13099
|
|
19
|
-
dsp_tools/commands/excel2json/utils.py,sha256=IjPmA93FQeEKF_c7SIHYeVDSlUKVHHxAlBRtFinUy5Y,14448
|
|
20
|
-
dsp_tools/commands/excel2json/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
21
|
-
dsp_tools/commands/excel2json/models/input_error.py,sha256=FYNlAdAVwhU3uk7Uq7RH-Xj578zVPsQISvP-umjN1-A,12856
|
|
22
|
-
dsp_tools/commands/excel2json/models/json_header.py,sha256=BuyVKhN_7IABZRWbDlZ_dYQJH2s-nNGYk0Bi2od67Wc,3314
|
|
23
|
-
dsp_tools/commands/excel2json/models/list_node_name.py,sha256=hY7LQihUwkqBUEsNwHgNJPniiYLIIZ2XdIJTocghHIk,501
|
|
24
|
-
dsp_tools/commands/excel2json/models/ontology.py,sha256=Dqr20vDAzo7xbIyJvWgJrODuIRF9VEc_POL6n4Q8UaY,2017
|
|
25
|
-
dsp_tools/commands/excel2json/new_lists/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
26
|
-
dsp_tools/commands/excel2json/new_lists/compliance_checks.py,sha256=wXSJAip8PAGEiPMi6BGN7IXvCmSHR1fv8sqF16mOr8w,14043
|
|
27
|
-
dsp_tools/commands/excel2json/new_lists/make_new_lists.py,sha256=8qxIZkgBDU7099VYHu-Z3rmv9abZoWznq0kdXYjrg-o,10466
|
|
28
|
-
dsp_tools/commands/excel2json/new_lists/utils.py,sha256=7FhnNI45Q2qTjcx8xmKhNOVJr1YTeOVtBq9cUZP5Pc4,3048
|
|
29
|
-
dsp_tools/commands/excel2json/new_lists/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
30
|
-
dsp_tools/commands/excel2json/new_lists/models/deserialise.py,sha256=T7Zt-_hEn8kGxp2We0TbIe-027CgU5U_6vmbNRc2q5I,544
|
|
31
|
-
dsp_tools/commands/excel2json/new_lists/models/input_error.py,sha256=_x6a8QQcbdecIzKSQzEIKqjrZs8H_1Xxh-NSEXoZ8Uc,7632
|
|
32
|
-
dsp_tools/commands/excel2json/new_lists/models/serialise.py,sha256=77bKr9Ah6fqXhMgthOISNXSfi-ST79iIM6cpjoqCQ7Y,1431
|
|
33
|
-
dsp_tools/commands/excel2xml/__init__.py,sha256=nq46GGndlWyKLMxhL3rKQcjLc4cTSCamo6YoZyfvxqg,466
|
|
34
|
-
dsp_tools/commands/excel2xml/excel2xml_cli.py,sha256=mTxqv-NIbFyeraffhwdaHRiEsh439jHXlu37jSCF58w,21243
|
|
35
|
-
dsp_tools/commands/excel2xml/excel2xml_lib.py,sha256=BiCClt5yLBDpz9kVfrVR1kv2wcFUIdMKsWKxA8xOHP0,89596
|
|
36
|
-
dsp_tools/commands/excel2xml/propertyelement.py,sha256=niVyGnPZ6W1asTIHukI8kALiQkNdBqwYF83xqx8jBYs,1995
|
|
37
|
-
dsp_tools/commands/ingest_xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
38
|
-
dsp_tools/commands/ingest_xmlupload/bulk_ingest_client.py,sha256=3DtjbtOwzb9DMpAJbjLIwHSqCepQS3hiLKlniFDaNQU,6493
|
|
39
|
-
dsp_tools/commands/ingest_xmlupload/create_resources/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
40
|
-
dsp_tools/commands/ingest_xmlupload/create_resources/apply_ingest_id.py,sha256=jpGVxEAqNJBhKOBOsWokzCEpx5uAN_LkkUyhpjGTMn0,2918
|
|
41
|
-
dsp_tools/commands/ingest_xmlupload/create_resources/upload_xml.py,sha256=eckvK2xC7yIOkyLlvxDgLcwh5vhNgehkqLf8-DFvq04,4283
|
|
42
|
-
dsp_tools/commands/ingest_xmlupload/create_resources/user_information.py,sha256=_8HIJgDDQGy4EIrATLR59Y90HSkzQY76KzrNdIiCYZw,4879
|
|
43
|
-
dsp_tools/commands/ingest_xmlupload/ingest_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
44
|
-
dsp_tools/commands/ingest_xmlupload/ingest_files/ingest_files.py,sha256=cngptuPK5idopb3rjMbIm-zEjDrSbXbvM078dkqJ-hU,2342
|
|
45
|
-
dsp_tools/commands/ingest_xmlupload/upload_files/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
46
|
-
dsp_tools/commands/ingest_xmlupload/upload_files/filechecker.py,sha256=rfIDYkqqBhIclpfRnhV8uI2_g-XNY0avMry6gC6s6kM,824
|
|
47
|
-
dsp_tools/commands/ingest_xmlupload/upload_files/input_error.py,sha256=wmO1XdXDVm5oanL2HkFVx1McJaqS6u_VE-WjUzgQ9rA,2451
|
|
48
|
-
dsp_tools/commands/ingest_xmlupload/upload_files/upload_failures.py,sha256=luWIJv_x5Tsxa3blkyfEbpMLMhmqCQmZhLIP_xbXDIU,1885
|
|
49
|
-
dsp_tools/commands/ingest_xmlupload/upload_files/upload_files.py,sha256=emkK_LR4GaP25xage07Nd1kfXrrXgkcltaOtDXXFSR8,2745
|
|
50
|
-
dsp_tools/commands/project/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
51
|
-
dsp_tools/commands/project/get.py,sha256=lny5XleyvzxCrnmoKW4znWIW_Gd23KOMeYgGraShuTI,5590
|
|
52
|
-
dsp_tools/commands/project/create/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
53
|
-
dsp_tools/commands/project/create/project_create.py,sha256=MEmIYkgDo4THaqAkia14QePcGqB-NPPIKfVaTQO26sg,45602
|
|
54
|
-
dsp_tools/commands/project/create/project_create_lists.py,sha256=HKfumf8TPff2OvC7z5cjnXliZmLhildLWpJ0O5INz30,8170
|
|
55
|
-
dsp_tools/commands/project/create/project_validate.py,sha256=DyzLKSaJ8XsnA7oo9wyiNw7U9hey9KzpP2baDGigWkg,19703
|
|
56
|
-
dsp_tools/commands/project/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
57
|
-
dsp_tools/commands/project/models/context.py,sha256=0lENFAe0XDiCGygRHtUMh4iwDH_BE6epQV4dMWvGFZk,12173
|
|
58
|
-
dsp_tools/commands/project/models/group.py,sha256=FsWQBDUbKInmv5mi9KqimsucWWJp0G5EjPn829DYkCA,8379
|
|
59
|
-
dsp_tools/commands/project/models/helpers.py,sha256=pU5jUeeRZnEi9Y_fm0xAayBmpOAxvU8XD9CXwRSFNgA,850
|
|
60
|
-
dsp_tools/commands/project/models/listnode.py,sha256=l1kkH2O5-BtHonIWVwRKIrxvBgblwRrfybWMr4sLEes,14910
|
|
61
|
-
dsp_tools/commands/project/models/model.py,sha256=VMdweWKvaf4T510Z2o7xZSP2F5g20LtaMgTlnx-mBS0,245
|
|
62
|
-
dsp_tools/commands/project/models/ontology.py,sha256=z2XtKtgdEmZKP5lEQ_6Q1Xl55cVAvlLKcvZLbY916Go,12710
|
|
63
|
-
dsp_tools/commands/project/models/project.py,sha256=Rs7svS-TCOOryINbh_ElDY70JOAkeVcv3OAEN07v2os,11594
|
|
64
|
-
dsp_tools/commands/project/models/project_definition.py,sha256=qE7w2WImBzCtL8vIcXtGhWSxGYVgXsjhsxXCvpmZGJ8,306
|
|
65
|
-
dsp_tools/commands/project/models/propertyclass.py,sha256=D-1rbTaMFBjhSkg6AZcOzz0ZKY85BU_TP4E-XeT59kg,17252
|
|
66
|
-
dsp_tools/commands/project/models/resourceclass.py,sha256=na-mAI5GvmB0_ioYZKkiKXMR-2T9OKhoXL-176BSVtY,28164
|
|
67
|
-
dsp_tools/commands/project/models/user.py,sha256=b9S5V-JDzCDeP6bwVpa0J4tWWBIkcYSkXhWNto5C1QM,17030
|
|
68
|
-
dsp_tools/commands/resume_xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
69
|
-
dsp_tools/commands/resume_xmlupload/resume_xmlupload.py,sha256=nYYeNKXH4VkyRMzPEFL6zfsb1eFuXfoL4jUspTMhMxo,3907
|
|
70
|
-
dsp_tools/commands/xml_validate/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
71
|
-
dsp_tools/commands/xml_validate/api_connection.py,sha256=kwHizK08bwDq06BRtRXa9Vmaluli1OYOlmzsLOgxp8Q,4537
|
|
72
|
-
dsp_tools/commands/xml_validate/deserialise_input.py,sha256=S_DIEtYDXmtjJGxMGdr-caUNymigfzcbG2_R080HoaU,6418
|
|
73
|
-
dsp_tools/commands/xml_validate/make_data_rdf.py,sha256=F9-ZlLnRPUO0M-hABwwHc-Pn-MnfT08NxG1UAZTUiF8,8993
|
|
74
|
-
dsp_tools/commands/xml_validate/reformat_validaton_result.py,sha256=vnsxfbhzD_PlQ4xWSopR68SpRpKORWfUr5y_sYH6pyw,3960
|
|
75
|
-
dsp_tools/commands/xml_validate/xml_validate.py,sha256=VvczXYi9vSuPgwCyx7kLTXdApnfYU3hhekI8lGYh3c0,6314
|
|
76
|
-
dsp_tools/commands/xml_validate/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
77
|
-
dsp_tools/commands/xml_validate/models/data_deserialised.py,sha256=mnBqHXsjSWnj7CeP07B6kvvfR32lGp-S76HdZsc4NvY,1739
|
|
78
|
-
dsp_tools/commands/xml_validate/models/data_rdf.py,sha256=maO55Z1-ZPaMyUzaNADGcohlvJ_tCQGJ3gOlxmEAZrY,5702
|
|
79
|
-
dsp_tools/commands/xml_validate/models/input_problems.py,sha256=s1R6hwxoVnGRfx15xed8j8cdK6FdUEddbjT3ccSGUDM,5969
|
|
80
|
-
dsp_tools/commands/xml_validate/models/validation.py,sha256=_FfqSiKU7FmiUvleVvajU5_nRysJOecsZZ9fVaRoX30,504
|
|
81
|
-
dsp_tools/commands/xml_validate/sparql/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
82
|
-
dsp_tools/commands/xml_validate/sparql/construct_shapes.py,sha256=JVNGTA8nH9th-x1tjjsrL_4XbE9WwXyCM3HvbRPfolM,381
|
|
83
|
-
dsp_tools/commands/xml_validate/sparql/resource_shacl.py,sha256=Rw5MOR17QmjJcLGOwh4oiMIwBdWGG8i7M5nqx1W16pY,6740
|
|
84
|
-
dsp_tools/commands/xmlupload/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
85
|
-
dsp_tools/commands/xmlupload/ark2iri.py,sha256=tUBfpNKWQRyZqiVCLgBHOqmldc40-q6O_UtnxWRF968,2350
|
|
86
|
-
dsp_tools/commands/xmlupload/check_consistency_with_ontology.py,sha256=nNFYdDo18otbMg-DDrs5oY8dO-CoT_KFpzXrkE_7p-w,10605
|
|
87
|
-
dsp_tools/commands/xmlupload/iiif_uri_validator.py,sha256=3OyYb8Fp91u8Y-WudakscomS6SwOKum3uTPIPkCMP00,2333
|
|
88
|
-
dsp_tools/commands/xmlupload/iri_resolver.py,sha256=1vHj4jMNCG6ZB0-opDfuLwL0guieTQXMmWYfbCdhoUI,625
|
|
89
|
-
dsp_tools/commands/xmlupload/list_client.py,sha256=NIUsKtnC5d1vaPvp3xAiz_Kr317ZSiCZyKFhwvDHqtE,3591
|
|
90
|
-
dsp_tools/commands/xmlupload/ontology_client.py,sha256=S2lQWq9Y0Wvb-RuBFwhVqC7lSfuoj1iLYwuuytKulac,3466
|
|
91
|
-
dsp_tools/commands/xmlupload/project_client.py,sha256=wVsoL2x12psw_XeTfjkEqgbaKTO5oLSuCTx4Y1v8WLA,3135
|
|
92
|
-
dsp_tools/commands/xmlupload/read_validate_xml_file.py,sha256=7IleimEVn3rOVmabfee8xhmvmTEorTjWQnprsgvE-f0,4110
|
|
93
|
-
dsp_tools/commands/xmlupload/resource_create_client.py,sha256=CzeWb77DeriZjTX7x_kEQgwE0R29d3vHgZbYQW0EIaA,19400
|
|
94
|
-
dsp_tools/commands/xmlupload/upload_config.py,sha256=9Rwkke1ehP2BvYf1HegdctHeBBP5inwwJlz0WqrlEiQ,2214
|
|
95
|
-
dsp_tools/commands/xmlupload/write_diagnostic_info.py,sha256=vDjbnd7eNXEB6D7OR8RRaKtxak0eHRBU4um72vqKpwM,858
|
|
96
|
-
dsp_tools/commands/xmlupload/xmlupload.py,sha256=X-P95zG8rKTbwhTd-561GdLXRryy8z1YEWK-wopW8iM,21008
|
|
97
|
-
dsp_tools/commands/xmlupload/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
98
|
-
dsp_tools/commands/xmlupload/models/formatted_text_value.py,sha256=SlgBO_GPQeMIjNykE4JDSlwxSPpMay_1-wluVRUve8M,1337
|
|
99
|
-
dsp_tools/commands/xmlupload/models/ingest.py,sha256=gt5HsjQtOrUUkjTTTmihTcsNAD0KOv_p1vSRZ1oMM9A,6295
|
|
100
|
-
dsp_tools/commands/xmlupload/models/input_problems.py,sha256=mSR0_fa3k29Fey87fplW7QFyclzTWk576pSiTdlEWjM,2177
|
|
101
|
-
dsp_tools/commands/xmlupload/models/namespace_context.py,sha256=ES0Sn8SDveMG8TMQ_V3D0suCq7vShCd73K8gRVnmlyk,1543
|
|
102
|
-
dsp_tools/commands/xmlupload/models/ontology_lookup_models.py,sha256=260u_fKtB8yMPQmHgKzuIRzX6jB-Px2eKqwCiI-rsEc,5567
|
|
103
|
-
dsp_tools/commands/xmlupload/models/ontology_problem_models.py,sha256=WwG_UX0mx6X1SkhZncpAYjQFYQpzA5aLM8O56atqd7E,6970
|
|
104
|
-
dsp_tools/commands/xmlupload/models/permission.py,sha256=bYR2otYADk5b2GdW2sTZ2ucnmj6h9z_pE3IwIWC_xag,2303
|
|
105
|
-
dsp_tools/commands/xmlupload/models/upload_clients.py,sha256=OhYo159PH74tfb3Bd2yb4b9rRLzyVSRbyjXTVJe2hEo,439
|
|
106
|
-
dsp_tools/commands/xmlupload/models/upload_state.py,sha256=xXVYjt6pxP6CShLWo1PLYUTr51pN0hFtFVURztZ-Qlg,827
|
|
107
|
-
dsp_tools/commands/xmlupload/models/deserialise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
108
|
-
dsp_tools/commands/xmlupload/models/deserialise/deserialise_value.py,sha256=K7WUtBp8lw3Ll9tWzeMKQ3fqKD0QI2FR7bOY9HUambo,8756
|
|
109
|
-
dsp_tools/commands/xmlupload/models/deserialise/xmlpermission.py,sha256=jlT5aBpg12ClYwMS4YwetoqVk0Zw9M-zkXHPHbfrK5I,3642
|
|
110
|
-
dsp_tools/commands/xmlupload/models/deserialise/xmlresource.py,sha256=typIAQXZhw1Mq6IjNiHl1_5L3daEIpozPnPsqUBQpls,6641
|
|
111
|
-
dsp_tools/commands/xmlupload/models/serialise/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
112
|
-
dsp_tools/commands/xmlupload/models/serialise/jsonld_serialiser.py,sha256=r4IxFEZXa2B5f2-VBqLw0cPMOnhFOSd9Nhyd3JPlyS8,1273
|
|
113
|
-
dsp_tools/commands/xmlupload/models/serialise/serialise_value.py,sha256=6sRuxkrB0regtUChSTv9ZbhhoJB-cgjaO40LREvXRck,1302
|
|
114
|
-
dsp_tools/commands/xmlupload/stash/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
115
|
-
dsp_tools/commands/xmlupload/stash/construct_and_analyze_graph.py,sha256=lkWMz6mAOuDyUCjuwno5IYoJwvwlWFkAzdWqEMi6zpE,13710
|
|
116
|
-
dsp_tools/commands/xmlupload/stash/graph_models.py,sha256=go_Xn3ziOmkdIMSnlmatG50QtEtmAXqVyG7zDlNVL7M,2452
|
|
117
|
-
dsp_tools/commands/xmlupload/stash/stash_circular_references.py,sha256=ooXLFVeiE36hb0ny6TuYdaDm83BDExxudeMn5txHDuo,5758
|
|
118
|
-
dsp_tools/commands/xmlupload/stash/stash_models.py,sha256=-xx3e_HbzVrF5-sg_OmqHLSxIppEfu0hZyQ8Hz4Ole4,3375
|
|
119
|
-
dsp_tools/commands/xmlupload/stash/upload_stashed_resptr_props.py,sha256=qJHe5IIjPHTSIXwVXd_OfSZi0qWUOdMy0fYKaJ4-PO4,4331
|
|
120
|
-
dsp_tools/commands/xmlupload/stash/upload_stashed_xml_texts.py,sha256=fG3_RsIx57B9HOR26oTWCy0VMwDQDKyPINYuRi5Vkkg,7676
|
|
121
|
-
dsp_tools/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
122
|
-
dsp_tools/models/custom_warnings.py,sha256=3rk6JtYELx8ynu8EWEZ13OfmwdiYHoPDzpkDJmn7e4w,949
|
|
123
|
-
dsp_tools/models/datetimestamp.py,sha256=SwuJGIFiJaGGJ7UzrUxMY3QX_ucvEXAicB2PJOldB8o,2876
|
|
124
|
-
dsp_tools/models/exceptions.py,sha256=tlhI_GRL72c6hvOPQzhMZwIloT9vL9warFaUHRWtivQ,2927
|
|
125
|
-
dsp_tools/models/langstring.py,sha256=tJgV5h2Z66sQ5VmwldDzMbTULaFv-3aGC9CJboz6x7I,8457
|
|
126
|
-
dsp_tools/models/projectContext.py,sha256=2xuMTGYDnM4yPNi557NW5P3hhx6kf8Vyk25SSpVEM6c,1776
|
|
127
|
-
dsp_tools/resources/0100-template-repo/template.json,sha256=EieQFCAzPHqWfPy-mF7TX2-v91vGlVpD5D-8bVWmdjo,1488
|
|
128
|
-
dsp_tools/resources/0100-template-repo/template.xml,sha256=8GhDCFPvp0Mw8LWy3wKJpBFoNLxrY3J2rd6qn69k8rs,1036
|
|
129
|
-
dsp_tools/resources/schema/data.xsd,sha256=klfHVZegP5ZwmVXmhRjato8t_3KwDzmavaVuaaYlsoE,27400
|
|
130
|
-
dsp_tools/resources/schema/lists-only.json,sha256=qfzjgflFCYLA5e9Chdu2f4ZYK5Xlq_Z2uDmZsp6h2WA,2770
|
|
131
|
-
dsp_tools/resources/schema/project.json,sha256=vBeT5NDVJ_3r5yK74VEBnhSOZ0Fn7C75RFZZ7aoW-ZE,42680
|
|
132
|
-
dsp_tools/resources/schema/properties-only.json,sha256=0HnYWhskrjqQV5Bjx3M3VPWnpZUku4UTSQRAk1EIikQ,32411
|
|
133
|
-
dsp_tools/resources/schema/resources-only.json,sha256=PCCaZZ1vGEZdgwFcx9iGvNYbQywH_vImG8sDqu_OVQ0,4207
|
|
134
|
-
dsp_tools/resources/start-stack/docker-compose-validation.yml,sha256=bcY3TqrRNHaJ_6OdAHZ5hdg2t4XWvX6rpRbTXtYaoJw,75
|
|
135
|
-
dsp_tools/resources/start-stack/docker-compose.override.yml,sha256=YsoEIWH6U2-M9wV5MkHR_xGpIppP3SDB8xDVWcVg3no,213
|
|
136
|
-
dsp_tools/resources/start-stack/docker-compose.yml,sha256=B4fJjatk2CxPY31Sp2mZjKGUb1_o1ZFDilV2iuBgoK8,2907
|
|
137
|
-
dsp_tools/resources/start-stack/start-stack-config.yml,sha256=fE8AVfy18ZS4Tk54LBSmHWIJEGGT5BqIN7Afz3YEx4A,164
|
|
138
|
-
dsp_tools/resources/xml_validate/api-shapes.ttl,sha256=e7cMYybRs5itIHxZxiLZ5-XDPkGqnSUEm05StkRRTz8,12226
|
|
139
|
-
dsp_tools/resources/xml_validate/replace_namespace.xslt,sha256=45T_m8KeJod8tj_3HxRhARzRP19B9OsOqx4jNbq1jH4,2939
|
|
140
|
-
dsp_tools/utils/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
141
|
-
dsp_tools/utils/connection.py,sha256=ZrP56CYLIko5khS5g_aXk_XDLR9Jg2luC3_3X4JWuAI,1087
|
|
142
|
-
dsp_tools/utils/connection_live.py,sha256=Ym_jZVu6wQ8_-qVGCYihq52MGwEsEA_6tyTKYQprL30,15035
|
|
143
|
-
dsp_tools/utils/date_util.py,sha256=CnUt5lRD6teHT5TvWZ_hYGSlQ93G80D8ZxCiJNteqj4,4554
|
|
144
|
-
dsp_tools/utils/iri_util.py,sha256=_PXOdfwIDDe2fT1f8k1FBoKdaw1RNnL2Sw8UJrfO-wE,457
|
|
145
|
-
dsp_tools/utils/logger_config.py,sha256=3OLXfle4PDwzj8ZQrHOalb4USV1VawSVeIymSAe-uHs,1195
|
|
146
|
-
dsp_tools/utils/set_encoder.py,sha256=H29xp1IE_VO_fN_A70lWSU8zOWhZht6Nyz9ifxWVpmI,705
|
|
147
|
-
dsp_tools/utils/shared.py,sha256=6gJef3JqHLOjcnZ4UFI9u7kmum77LWBMq7ui7rpb1VM,4043
|
|
148
|
-
dsp_tools/utils/uri_util.py,sha256=hDOxf90-FKHkLY5ur4L9vUFxJKbVBoCLK0ubAfuyQfA,2957
|
|
149
|
-
dsp_tools/utils/warnings_config.py,sha256=9A55jJIHtF8PDU4BR2wsTVoWG6sIJHZEB1O_Pleh2ZQ,978
|
|
150
|
-
dsp_tools/utils/xml_utils.py,sha256=TokItWRrFeym-ovm9D1oWjfb5RWcPifUK_GkGQe6WDQ,4570
|
|
151
|
-
dsp_tools/utils/xml_validation.py,sha256=1-XsWRSTA__zXxd97L1y0R_HBCdqO4FPvXn7i2BZM9k,7302
|
|
152
|
-
dsp_tools/utils/xml_validation_models.py,sha256=rR0-NXWRRY-CyCmIer5MQBkpSkmFrm-IqojnxGkOSkI,2318
|
|
153
|
-
dsp_tools/xmllib/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
154
|
-
dsp_tools/xmllib/value_checkers.py,sha256=0WV8lppF6PIPQMKrfuUMkGduARSYI929RftvLliPfic,4219
|
|
155
|
-
dsp_tools/xmllib/value_converters.py,sha256=MI65j2OExt4wk7MK_gBA9qCSIszmddQcIWxmwJ0OJwk,516
|
|
156
|
-
dsp_tools/xmllib/models/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
|
|
157
|
-
dsp_tools/xmllib/models/dsp_base_resources.py,sha256=AJ0wHUSF2Tnt1RgowgRcqdhx60mRG0YbJeAl05iVKDQ,22466
|
|
158
|
-
dsp_tools/xmllib/models/file_values.py,sha256=MVTyVPcUfLuNnEEpQy_PQEGXiI-QFc-GMNUA709kbKU,2582
|
|
159
|
-
dsp_tools/xmllib/models/migration_metadata.py,sha256=0-siiogse7wVcGaXKTXNjU_7OvoVJ9AAfJOSR2WP7tA,1937
|
|
160
|
-
dsp_tools/xmllib/models/resource.py,sha256=BnEHxCMP49HddTRhdB_GgCYDKIGCF3AHLSNAuUVHDDc,16441
|
|
161
|
-
dsp_tools/xmllib/models/root.py,sha256=Fzn2zrPYCF3YyB1VZni_OxnTFrmCiPZ1KcIqEdokDq4,2076
|
|
162
|
-
dsp_tools/xmllib/models/values.py,sha256=KG8SkbQfIjpO38Erxnsz44ILWeUf_cqvivPleXJ7cEo,14382
|
|
163
|
-
dsp_tools-9.1.0.post11.dist-info/METADATA,sha256=KMIi1iXGnQua3DCqoPX3IbJY2ZBZ4yVYqiVP7HPIi9M,7423
|
|
164
|
-
dsp_tools-9.1.0.post11.dist-info/WHEEL,sha256=1yFddiXMmvYK7QYTqtRNtX66WJ0Mz8PYEiEUoOUUxRY,87
|
|
165
|
-
dsp_tools-9.1.0.post11.dist-info/entry_points.txt,sha256=rXxQDTuClDIl0Vb6ir9DIFjbK8gW-gSwbP5HzwR44gk,61
|
|
166
|
-
dsp_tools-9.1.0.post11.dist-info/licenses/LICENSE,sha256=OXLcl0T2SZ8Pmy2_dmlvKuetivmyPd5m1q-Gyd-zaYY,35149
|
|
167
|
-
dsp_tools-9.1.0.post11.dist-info/RECORD,,
|