From 6d0c30e5b4ec9359cb774b445a576c04172da1a2 Mon Sep 17 00:00:00 2001 From: baifuyu <147798664+baifuyu@users.noreply.github.com> Date: Tue, 21 Nov 2023 17:33:33 +0800 Subject: [PATCH] chore(workflow): add license-checker and pr-title-checker workflow (#8) --- .github/workflows/license-checker.yml | 25 +++++ .github/workflows/openspg-ci.yml | 3 +- .github/workflows/pr-title-checker.yml | 22 +++++ .licenserc.yaml | 44 +++++++++ .../openapi/SPGSchemaControllerTest.groovy | 96 ------------------- .../main/resources/plugins/upsert_edges.cpp | 13 +++ .../resources/plugins/upsert_vertices.cpp | 13 +++ .../test/resources/plugins/upsert_edges.cpp | 13 +++ .../resources/plugins/upsert_vertices.cpp | 13 +++ ...interfaces.computing.ComputingClientDriver | 13 --- ...terfaces.graphstore.GraphStoreClientDriver | 13 --- ...aces.jobscheduler.JobSchedulerClientDriver | 13 --- ...rfaces.objectstore.ObjectStoreClientDriver | 13 --- ...terfaces.repository.RepositoryClientDriver | 13 --- ...terfaces.tablestore.TableStoreClientDriver | 15 +-- dev/release/mysql/Dockerfile | 11 +++ dev/release/mysql/initdb.sql | 11 +++ dev/release/openspg/Dockerfile | 11 +++ dev/test/mysql/sqlscript/initdb.sql | 11 +++ python/knext/.gitignore | 1 - python/knext/client/__init__.py | 14 +-- python/knext/client/command/__init__.py | 14 +-- python/knext/client/command/builder.py | 15 ++- python/knext/client/command/config.py | 15 ++- python/knext/client/command/operator.py | 15 ++- python/knext/client/command/project.py | 15 ++- python/knext/client/command/reasoner.py | 15 ++- python/knext/client/command/schema.py | 15 ++- python/knext/client/exception.py | 15 +-- python/knext/client/knext_cli.py | 15 ++- python/knext/common/__init__.py | 15 +-- python/knext/common/class_loader.py | 15 ++- python/knext/common/class_register.py | 15 ++- python/knext/common/template.py | 15 ++- python/knext/core/__init__.py | 14 +-- python/knext/core/builder/__init__.py | 14 +-- python/knext/core/builder/job/__init__.py | 15 ++- python/knext/core/builder/job/builder.py | 15 ++- .../knext/core/builder/job/model/__init__.py | 14 +-- .../core/builder/job/model/builder_job.py | 15 ++- .../knext/core/builder/job/model/component.py | 16 ++-- .../knext/core/builder/operator/__init__.py | 15 ++- .../core/builder/operator/model/__init__.py | 14 +-- .../builder/operator/model/eval_result.py | 15 ++- .../knext/core/builder/operator/model/op.py | 15 ++- .../core/builder/operator/model/vertex.py | 15 ++- .../knext/core/builder/operator/operator.py | 15 ++- python/knext/core/reasoner/__init__.py | 14 +-- python/knext/core/reasoner/model/__init__.py | 14 +-- python/knext/core/reasoner/reasoner.py | 15 ++- python/knext/core/schema/__init__.py | 15 ++- python/knext/core/schema/concept_rule_ml.py | 15 ++- python/knext/core/schema/model/__init__.py | 14 +-- python/knext/core/schema/model/base.py | 15 ++- python/knext/core/schema/model/property.py | 15 ++- python/knext/core/schema/model/relation.py | 15 ++- python/knext/core/schema/model/spg_type.py | 15 ++- python/knext/core/schema/schema.py | 15 ++- python/knext/core/schema/schema_ml.py | 15 ++- python/knext/core/wrapper/__init__.py | 14 +-- python/knext/core/wrapper/search_client.py | 15 ++- .../examples/medical/builder/job/body_part.py | 15 ++- .../examples/medical/builder/job/disease.py | 15 ++- .../builder/job/hospital_department.py | 15 ++- .../medical/builder/model/arguments.py | 15 ++- .../builder/model/dataset/convert_util.py | 15 ++- .../medical/builder/model/deployer.py | 15 ++- .../examples/medical/builder/model/trainer.py | 15 ++- .../builder/operator/disease_extractor.py | 15 ++- .../medical/schema/medical_schema_helper.py | 17 ++-- .../examples/riskmining/builder/job/app.py | 15 ++- .../examples/riskmining/builder/job/cert.py | 15 ++- .../riskmining/builder/job/company.py | 15 ++- .../examples/riskmining/builder/job/device.py | 15 ++- .../examples/riskmining/builder/job/person.py | 15 ++- .../riskmining/builder/job/tax_of_risk_app.py | 15 ++- .../builder/job/tax_of_risk_user.py | 15 ++- .../builder/operator/cert_link_operator.py | 15 ++- .../schema/riskmining_schema_helper.py | 14 ++- .../supplychain/builder/job/company.py | 15 ++- .../examples/supplychain/builder/job/index.py | 15 ++- .../supplychain/builder/job/industry.py | 15 ++- .../supplychain/builder/job/person.py | 15 ++- .../supplychain/builder/job/product.py | 15 ++- .../builder/job/product_chain_event.py | 15 ++- .../builder/job/tax_of_company_event.py | 15 ++- .../builder/job/tax_of_product_event.py | 15 ++- .../examples/supplychain/builder/job/trend.py | 15 ++- .../builder/operator/company_operator.py | 15 ++- .../schema/supplychain_schema_helper.py | 14 ++- python/knext/rest/__init__.py | 16 ++-- python/knext/rest/api/__init__.py | 14 +-- python/knext/rest/api/builder_api.py | 21 ++-- python/knext/rest/api/concept_api.py | 21 ++-- python/knext/rest/api/editor_api.py | 21 ++-- python/knext/rest/api/object_store_api.py | 21 ++-- python/knext/rest/api/operator_api.py | 21 ++-- python/knext/rest/api/project_api.py | 21 ++-- python/knext/rest/api/reasoner_api.py | 21 ++-- python/knext/rest/api/schema_api.py | 21 ++-- python/knext/rest/api/table_store_api.py | 21 ++-- python/knext/rest/api_client.py | 21 ++-- python/knext/rest/configuration.py | 21 ++-- python/knext/rest/exceptions.py | 21 ++-- python/knext/rest/models/__init__.py | 16 ++-- python/knext/rest/models/builder/__init__.py | 14 +-- .../rest/models/builder/pipeline/__init__.py | 14 +-- .../builder/pipeline/config/__init__.py | 14 +-- .../pipeline/config/base_node_config.py | 21 ++-- .../pipeline/config/csv_source_node_config.py | 21 ++-- .../pipeline/config/extract_node_config.py | 21 ++-- .../config/graph_store_sink_node_config.py | 21 ++-- .../builder/pipeline/config/mapping_config.py | 21 ++-- .../builder/pipeline/config/mapping_filter.py | 21 ++-- .../pipeline/config/mapping_node_config.py | 21 ++-- .../builder/pipeline/config/mapping_schema.py | 21 ++-- .../pipeline/config/operator_config.py | 21 ++-- .../rest/models/builder/pipeline/edge.py | 21 ++-- .../rest/models/builder/pipeline/node.py | 21 ++-- .../rest/models/builder/pipeline/pipeline.py | 21 ++-- .../rest/models/builder/request/__init__.py | 14 +-- .../request/builder_job_submit_request.py | 21 ++-- .../rest/models/builder/response/__init__.py | 14 +-- .../builder/response/base_builder_receipt.py | 21 ++-- .../builder/response/base_builder_result.py | 21 ++-- .../builder/response/builder_job_inst.py | 21 ++-- .../response/failure_builder_result.py | 21 ++-- .../builder/response/job_builder_receipt.py | 21 ++-- .../response/success_builder_result.py | 21 ++-- python/knext/rest/models/common/__init__.py | 14 +-- python/knext/rest/models/common/user_info.py | 21 ++-- python/knext/rest/models/operator/__init__.py | 14 +-- .../rest/models/operator/operator_overview.py | 21 ++-- .../rest/models/operator/operator_version.py | 21 ++-- python/knext/rest/models/reasoner/__init__.py | 14 +-- .../rest/models/reasoner/request/__init__.py | 14 +-- .../reasoner/request/base_reasoner_content.py | 21 ++-- .../request/kgdsl_reasoner_content.py | 21 ++-- .../request/reasoner_dsl_run_request.py | 21 ++-- .../request/reasoner_job_submit_request.py | 21 ++-- .../request/vertex_reasoner_content.py | 21 ++-- .../rest/models/reasoner/response/__init__.py | 14 +-- .../response/base_reasoner_receipt.py | 21 ++-- .../reasoner/response/base_reasoner_result.py | 21 ++-- .../response/failure_reasoner_result.py | 21 ++-- .../reasoner/response/job_reasoner_receipt.py | 21 ++-- .../reasoner/response/reasoner_job_inst.py | 21 ++-- .../response/success_reasoner_result.py | 21 ++-- .../response/table_reasoner_receipt.py | 21 ++-- .../rest/models/reasoner/starting_vertex.py | 21 ++-- python/knext/rest/models/request/__init__.py | 14 +-- .../define_dynamic_taxonomy_request.py | 21 ++-- .../define_logical_causation_request.py | 21 ++-- .../models/request/operator_create_request.py | 21 ++-- .../request/operator_version_request.py | 21 ++-- .../models/request/project_create_request.py | 21 ++-- .../remove_dynamic_taxonomy_request.py | 21 ++-- .../remove_logical_causation_request.py | 21 ++-- .../models/request/schema_alter_request.py | 21 ++-- python/knext/rest/models/response/__init__.py | 14 +-- .../models/response/object_store_response.py | 21 ++-- .../response/operator_create_response.py | 21 ++-- .../response/operator_version_response.py | 21 ++-- python/knext/rest/models/response/project.py | 21 ++-- .../response/search_engine_index_response.py | 21 ++-- python/knext/rest/models/schema/__init__.py | 14 +-- .../rest/models/schema/alter/__init__.py | 14 +-- .../rest/models/schema/alter/schema_draft.py | 21 ++-- .../knext/rest/models/schema/base_ontology.py | 21 ++-- python/knext/rest/models/schema/basic_info.py | 21 ++-- .../rest/models/schema/constraint/__init__.py | 14 +-- .../schema/constraint/base_constraint_item.py | 21 ++-- .../models/schema/constraint/constraint.py | 21 ++-- .../schema/constraint/enum_constraint.py | 21 ++-- .../schema/constraint/multi_val_constraint.py | 21 ++-- .../schema/constraint/not_null_constraint.py | 21 ++-- .../schema/constraint/regular_constraint.py | 21 ++-- .../rest/models/schema/identifier/__init__.py | 14 +-- .../schema/identifier/base_spg_identifier.py | 22 ++--- .../schema/identifier/concept_identifier.py | 21 ++-- .../schema/identifier/operator_identifier.py | 21 ++-- .../schema/identifier/predicate_identifier.py | 21 ++-- .../identifier/spg_triple_identifier.py | 21 ++-- .../schema/identifier/spg_type_identifier.py | 21 ++-- .../knext/rest/models/schema/ontology_id.py | 21 ++-- .../rest/models/schema/predicate/__init__.py | 14 +-- .../predicate/mounted_concept_config.py | 21 ++-- .../rest/models/schema/predicate/property.py | 21 ++-- .../predicate/property_advanced_config.py | 21 ++-- .../models/schema/predicate/property_ref.py | 21 ++-- .../predicate/property_ref_basic_info.py | 21 ++-- .../rest/models/schema/predicate/relation.py | 21 ++-- .../models/schema/predicate/sub_property.py | 21 ++-- .../predicate/sub_property_basic_info.py | 21 ++-- .../rest/models/schema/semantic/__init__.py | 14 +-- .../models/schema/semantic/base_semantic.py | 21 ++-- .../models/schema/semantic/logical_rule.py | 21 ++-- .../schema/semantic/predicate_semantic.py | 21 ++-- .../rest/models/schema/semantic/rule_code.py | 21 ++-- .../knext/rest/models/schema/type/__init__.py | 14 +-- .../models/schema/type/base_advanced_type.py | 21 ++-- .../rest/models/schema/type/base_spg_type.py | 21 ++-- .../rest/models/schema/type/basic_type.py | 21 ++-- .../schema/type/concept_layer_config.py | 21 ++-- .../schema/type/concept_taxonomic_config.py | 21 ++-- .../rest/models/schema/type/concept_type.py | 21 ++-- .../rest/models/schema/type/entity_type.py | 21 ++-- .../rest/models/schema/type/event_type.py | 21 ++-- .../schema/type/multi_version_config.py | 21 ++-- .../rest/models/schema/type/operator_key.py | 21 ++-- .../models/schema/type/parent_type_info.py | 21 ++-- .../rest/models/schema/type/project_schema.py | 21 ++-- .../schema/type/spg_type_advanced_config.py | 21 ++-- .../rest/models/schema/type/spg_type_ref.py | 21 ++-- .../schema/type/spg_type_ref_basic_info.py | 21 ++-- .../rest/models/schema/type/standard_type.py | 21 ++-- .../schema/type/standard_type_basic_info.py | 21 ++-- python/knext/rest/rest.py | 21 ++-- .../builder/operator/demo_extract_op.py | 11 +++ python/setup.py | 15 ++- test/src/main/resources/db/data-h2.sql | 11 +++ test/src/main/resources/db/schema-h2.sql | 11 +++ .../test/resources/plugins/upsert_edges.cpp | 13 +++ .../resources/plugins/upsert_vertices.cpp | 13 +++ 224 files changed, 2079 insertions(+), 1942 deletions(-) create mode 100644 .github/workflows/license-checker.yml create mode 100644 .github/workflows/pr-title-checker.yml create mode 100644 .licenserc.yaml delete mode 100644 api/http-server/src/test/groovy/com/antgroup/openspg/api/http/server/openapi/SPGSchemaControllerTest.groovy delete mode 100644 python/knext/.gitignore diff --git a/.github/workflows/license-checker.yml b/.github/workflows/license-checker.yml new file mode 100644 index 000000000..25e2b5b37 --- /dev/null +++ b/.github/workflows/license-checker.yml @@ -0,0 +1,25 @@ +name: License Checker + +on: + push: + branches: + - master + pull_request: + branches: + - master + +jobs: + check: + name: "License Validation" + runs-on: ubuntu-latest + + steps: + - uses: actions/checkout@v2 + - name: Check License Header + uses: apache/skywalking-eyes@main + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + log: info + - name: Check Dependencies' License + uses: apache/skywalking-eyes/dependency@main \ No newline at end of file diff --git a/.github/workflows/openspg-ci.yml b/.github/workflows/openspg-ci.yml index 340456d5b..52478029d 100644 --- a/.github/workflows/openspg-ci.yml +++ b/.github/workflows/openspg-ci.yml @@ -8,7 +8,8 @@ name: CI -on: [ pull_request ] +on: + pull_request: jobs: build: diff --git a/.github/workflows/pr-title-checker.yml b/.github/workflows/pr-title-checker.yml new file mode 100644 index 000000000..fec1638a2 --- /dev/null +++ b/.github/workflows/pr-title-checker.yml @@ -0,0 +1,22 @@ +name: "Lint PR" + +on: + pull_request_target: + types: + - opened + - edited + - synchronize + +permissions: + pull-requests: write + +jobs: + main: + name: Validate PR title + runs-on: ubuntu-latest + steps: + - uses: amannn/action-semantic-pull-request@v5 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + wip: true \ No newline at end of file diff --git a/.licenserc.yaml b/.licenserc.yaml new file mode 100644 index 000000000..c5e98bb50 --- /dev/null +++ b/.licenserc.yaml @@ -0,0 +1,44 @@ +header: + license: + spdx-id: Apache-2.0 + copyright-owner: Ant Group CO., Ltd. + content: | + Copyright 2023 Ant Group CO., Ltd. + + Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + in compliance with the License. You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software distributed under the License + is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + or implied. + + paths-ignore: + - 'dist' + - 'licenses' + - 'LICENSE' + - 'NOTICE' + - 'KNEXT_VERSION' + - '**/.*' + - '**/*.md' + - '**/*.tmpl' + - '**/*.txt' + - '**/*.csv' + - '**/*.dsl' + - '**/*.cfg' + - '**/*.schema' + - '**/*.rule' + - '**/*.json' + - '**/*.in' + - '**/META-INF/services/*' + - '**/*.conf' + - '**/*.yml' + - '**/*.yaml' + + comment: on-failure + +# If you don't want to check dependencies' license compatibility, remove the following part +dependency: + files: + - pom.xml \ No newline at end of file diff --git a/api/http-server/src/test/groovy/com/antgroup/openspg/api/http/server/openapi/SPGSchemaControllerTest.groovy b/api/http-server/src/test/groovy/com/antgroup/openspg/api/http/server/openapi/SPGSchemaControllerTest.groovy deleted file mode 100644 index 25f0a6342..000000000 --- a/api/http-server/src/test/groovy/com/antgroup/openspg/api/http/server/openapi/SPGSchemaControllerTest.groovy +++ /dev/null @@ -1,96 +0,0 @@ -/* - * Copyright 2023 Ant Group CO., Ltd. - * - * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except - * in compliance with the License. You may obtain a copy of the License at - * - * http://www.apache.org/licenses/LICENSE-2.0 - * - * Unless required by applicable law or agreed to in writing, software distributed under the License - * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express - * or implied. - */ - - -package com.antgroup.openspg.api.http.server.openapi - -import com.antgroup.openspg.api.facade.JSON -import com.antgroup.openspg.api.facade.dto.schema.request.SchemaAlterRequest -import spock.lang.Specification - -/** - * */ -class SPGSchemaControllerTest extends Specification { - - def "testSerDeSchemaAlterRequest"() { - expect: - def json = JSON.deserialize("{\n" + - " \"projectId\": 1000017,\n" + - " \"token\": \"8F665Ef936Ce221a\",\n" + - " \"schemaDraft\": {\n" + - " \"alterSpgTypes\": [\n" + - " {\n" + - " \"@type\": \"CONCEPT_TYPE\",\n" + - " \"alterOperation\": \"CREATE\",\n" + - " \"basicInfo\": {\n" + - " \"name\": {\n" + - " \"nameType\": \"SPG_TYPE\",\n" + - " \"namespace\": \"FraudTest5\",\n" + - " \"nameEn\": \"TaxonomyOfApp\"\n" + - " },\n" + - " \"nameZh\": \"应用程序的分类\",\n" + - " \"desc\": \"应用程序的分类\"\n" + - " },\n" + - " \"spgTypeEnum\": \"CONCEPT_TYPE\",\n" + - " \"properties\": [\n" + - " {\n" + - " \"basicInfo\": {\n" + - " \"name\": {\n" + - " \"nameType\": \"Predicate\",\n" + - " \"name\": \"id\"\n" + - " },\n" + - " \"nameZh\": \"实体主键\"\n" + - " },\n" + - " \"objectTypeRef\": {\n" + - " \"basicInfo\": {\n" + - " \"name\": {\n" + - " \"nameType\": \"SPG_TYPE\",\n" + - " \"nameEn\": \"Text\"\n" + - " },\n" + - " \"nameZh\": \"Text\"\n" + - " },\n" + - " \"spgTypeEnum\": \"BASIC_TYPE\"\n" + - " }\n" + - " },\n" + - " {\n" + - " \"basicInfo\": {\n" + - " \"name\": {\n" + - " \"nameType\": \"Predicate\",\n" + - " \"name\": \"name\"\n" + - " },\n" + - " \"nameZh\": \"名称\"\n" + - " },\n" + - " \"objectTypeRef\": {\n" + - " \"basicInfo\": {\n" + - " \"name\": {\n" + - " \"nameType\": \"SPG_TYPE\",\n" + - " \"nameEn\": \"Text\"\n" + - " },\n" + - " \"nameZh\": \"Text\"\n" + - " },\n" + - " \"spgTypeEnum\": \"BASIC_TYPE\"\n" + - " }\n" + - " }\n" + - " ],\n" + - " \"conceptLayerConfig\": {\n" + - " \"hypernymPredicate\": \"isA\"\n" + - " }\n" + - " }\n" + - " ]\n" + - " }\n" + - "}\n", SchemaAlterRequest.class) - - json.getProjectId() == 1000017L - json.getSchemaDraft().getAlterSpgTypes().size() == 1 - } -} diff --git a/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_edges.cpp b/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_edges.cpp index 4c85a30cc..ee62edab8 100644 --- a/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_edges.cpp +++ b/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_edges.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h" diff --git a/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_vertices.cpp b/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_vertices.cpp index bf5f02f2f..839c8d958 100644 --- a/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_vertices.cpp +++ b/cloudext/impl/graph-store/tugraph/src/main/resources/plugins/upsert_vertices.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h" diff --git a/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_edges.cpp b/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_edges.cpp index 4c85a30cc..ee62edab8 100644 --- a/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_edges.cpp +++ b/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_edges.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h" diff --git a/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_vertices.cpp b/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_vertices.cpp index bf5f02f2f..839c8d958 100644 --- a/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_vertices.cpp +++ b/cloudext/impl/graph-store/tugraph/src/test/resources/plugins/upsert_vertices.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h" diff --git a/cloudext/interface/computing/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.computing.ComputingClientDriver b/cloudext/interface/computing/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.computing.ComputingClientDriver index fe781a64b..98a48d4ad 100644 --- a/cloudext/interface/computing/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.computing.ComputingClientDriver +++ b/cloudext/interface/computing/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.computing.ComputingClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - com.antgroup.openspg.cloudext.impl.computing.local.LocalComputingClientDriver diff --git a/cloudext/interface/graph-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.graphstore.GraphStoreClientDriver b/cloudext/interface/graph-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.graphstore.GraphStoreClientDriver index c8ff0d3d8..a086b1971 100644 --- a/cloudext/interface/graph-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.graphstore.GraphStoreClientDriver +++ b/cloudext/interface/graph-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.graphstore.GraphStoreClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - com.antgroup.openspg.cloudext.impl.graphstore.tugraph.TuGraphStoreClientDriver diff --git a/cloudext/interface/job-scheduler/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.jobscheduler.JobSchedulerClientDriver b/cloudext/interface/job-scheduler/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.jobscheduler.JobSchedulerClientDriver index 399b0dd3b..c2bc6592e 100644 --- a/cloudext/interface/job-scheduler/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.jobscheduler.JobSchedulerClientDriver +++ b/cloudext/interface/job-scheduler/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.jobscheduler.JobSchedulerClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - com.antgroup.openspg.cloudext.impl.jobscheduler.local.LocalJobSchedulerClientDriver diff --git a/cloudext/interface/object-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.objectstore.ObjectStoreClientDriver b/cloudext/interface/object-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.objectstore.ObjectStoreClientDriver index d34d9b436..01c378fa6 100644 --- a/cloudext/interface/object-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.objectstore.ObjectStoreClientDriver +++ b/cloudext/interface/object-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.objectstore.ObjectStoreClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - com.antgroup.openspg.cloudext.impl.objectstore.local.LocalObjectStoreClientDriver diff --git a/cloudext/interface/repository/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.repository.RepositoryClientDriver b/cloudext/interface/repository/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.repository.RepositoryClientDriver index cbe6c16b5..ca6d1eab8 100644 --- a/cloudext/interface/repository/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.repository.RepositoryClientDriver +++ b/cloudext/interface/repository/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.repository.RepositoryClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - com.antgroup.openspg.cloudext.impl.repository.jdbc.JdbcRepositoryClientDriver diff --git a/cloudext/interface/table-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.tablestore.TableStoreClientDriver b/cloudext/interface/table-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.tablestore.TableStoreClientDriver index e4775a475..8c9e3f74f 100644 --- a/cloudext/interface/table-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.tablestore.TableStoreClientDriver +++ b/cloudext/interface/table-store/src/main/resources/META-INF/services/com.antgroup.openspg.cloudext.interfaces.tablestore.TableStoreClientDriver @@ -1,14 +1 @@ -# -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. -# - -com.antgroup.openspg.cloudext.impl.tablestore.local.LocalTableStoreClientDriver \ No newline at end of file +com.antgroup.openspg.cloudext.impl.tablestore.local.LocalTableStoreClientDriver diff --git a/dev/release/mysql/Dockerfile b/dev/release/mysql/Dockerfile index 9ed3e5307..916f5a404 100644 --- a/dev/release/mysql/Dockerfile +++ b/dev/release/mysql/Dockerfile @@ -1,3 +1,14 @@ +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + FROM mariadb:10.5.8 ENV MYSQL_DATABASE=openspg \ diff --git a/dev/release/mysql/initdb.sql b/dev/release/mysql/initdb.sql index d862fb502..34e6037a2 100644 --- a/dev/release/mysql/initdb.sql +++ b/dev/release/mysql/initdb.sql @@ -1,3 +1,14 @@ +-- Copyright 2023 Ant Group CO., Ltd. +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +-- in compliance with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software distributed under the License +-- is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +-- or implied. + use openspg; CREATE TABLE `kg_project_info` ( diff --git a/dev/release/openspg/Dockerfile b/dev/release/openspg/Dockerfile index e4730616d..55d3cf9cf 100644 --- a/dev/release/openspg/Dockerfile +++ b/dev/release/openspg/Dockerfile @@ -1,3 +1,14 @@ +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # Image for building OpenSPG releases. Based on Ubuntu 20.04. # # Includes: diff --git a/dev/test/mysql/sqlscript/initdb.sql b/dev/test/mysql/sqlscript/initdb.sql index 7e255c874..f01d017d5 100644 --- a/dev/test/mysql/sqlscript/initdb.sql +++ b/dev/test/mysql/sqlscript/initdb.sql @@ -1,3 +1,14 @@ +-- Copyright 2023 Ant Group CO., Ltd. +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +-- in compliance with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software distributed under the License +-- is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +-- or implied. + use openspg; CREATE TABLE `kg_project_info` ( diff --git a/python/knext/.gitignore b/python/knext/.gitignore deleted file mode 100644 index 57e0ebf34..000000000 --- a/python/knext/.gitignore +++ /dev/null @@ -1 +0,0 @@ -./debug_operators diff --git a/python/knext/client/__init__.py b/python/knext/client/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/client/__init__.py +++ b/python/knext/client/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/client/command/__init__.py b/python/knext/client/command/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/client/command/__init__.py +++ b/python/knext/client/command/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/client/command/builder.py b/python/knext/client/command/builder.py index a6578076f..58e33d003 100644 --- a/python/knext/client/command/builder.py +++ b/python/knext/client/command/builder.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import sys diff --git a/python/knext/client/command/config.py b/python/knext/client/command/config.py index e66d1b634..bc5c6a901 100644 --- a/python/knext/client/command/config.py +++ b/python/knext/client/command/config.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import sys diff --git a/python/knext/client/command/operator.py b/python/knext/client/command/operator.py index 68d6a59a2..530c8d9d6 100644 --- a/python/knext/client/command/operator.py +++ b/python/knext/client/command/operator.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import click diff --git a/python/knext/client/command/project.py b/python/knext/client/command/project.py index 971be1f7a..1a5930b77 100644 --- a/python/knext/client/command/project.py +++ b/python/knext/client/command/project.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import re diff --git a/python/knext/client/command/reasoner.py b/python/knext/client/command/reasoner.py index cdd90465e..b2f83804a 100644 --- a/python/knext/client/command/reasoner.py +++ b/python/knext/client/command/reasoner.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import sys diff --git a/python/knext/client/command/schema.py b/python/knext/client/command/schema.py index 3dbfa6211..c454b08b7 100644 --- a/python/knext/client/command/schema.py +++ b/python/knext/client/command/schema.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os from pathlib import Path diff --git a/python/knext/client/exception.py b/python/knext/client/exception.py index 77f198281..cff1adb91 100644 --- a/python/knext/client/exception.py +++ b/python/knext/client/exception.py @@ -1,14 +1,15 @@ # -*- coding: utf-8 -*- -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + from json import JSONDecodeError from typing import Any diff --git a/python/knext/client/knext_cli.py b/python/knext/client/knext_cli.py index 286a55a69..30f820f14 100644 --- a/python/knext/client/knext_cli.py +++ b/python/knext/client/knext_cli.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import sys diff --git a/python/knext/common/__init__.py b/python/knext/common/__init__.py index a91022f01..47077ccb5 100644 --- a/python/knext/common/__init__.py +++ b/python/knext/common/__init__.py @@ -1,12 +1,13 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. diff --git a/python/knext/common/class_loader.py b/python/knext/common/class_loader.py index c59ed87d7..6ecb359bd 100644 --- a/python/knext/common/class_loader.py +++ b/python/knext/common/class_loader.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import Dict diff --git a/python/knext/common/class_register.py b/python/knext/common/class_register.py index 394351c06..cae8b37c0 100644 --- a/python/knext/common/class_register.py +++ b/python/knext/common/class_register.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os import sys diff --git a/python/knext/common/template.py b/python/knext/common/template.py index e69effeea..ad19dedd9 100644 --- a/python/knext/common/template.py +++ b/python/knext/common/template.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import re import string diff --git a/python/knext/core/__init__.py b/python/knext/core/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/__init__.py +++ b/python/knext/core/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/builder/__init__.py b/python/knext/core/builder/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/builder/__init__.py +++ b/python/knext/core/builder/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/builder/job/__init__.py b/python/knext/core/builder/job/__init__.py index d46c4295c..481fb2f2b 100644 --- a/python/knext/core/builder/job/__init__.py +++ b/python/knext/core/builder/job/__init__.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.model.builder_job import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/core/builder/job/builder.py b/python/knext/core/builder/job/builder.py index c361e6434..459f6ae28 100644 --- a/python/knext/core/builder/job/builder.py +++ b/python/knext/core/builder/job/builder.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os diff --git a/python/knext/core/builder/job/model/__init__.py b/python/knext/core/builder/job/model/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/builder/job/model/__init__.py +++ b/python/knext/core/builder/job/model/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/builder/job/model/builder_job.py b/python/knext/core/builder/job/model/builder_job.py index 599bd1377..041619967 100644 --- a/python/knext/core/builder/job/model/builder_job.py +++ b/python/knext/core/builder/job/model/builder_job.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from abc import ABC from enum import Enum diff --git a/python/knext/core/builder/job/model/component.py b/python/knext/core/builder/job/model/component.py index bfbe1798b..d9b34655e 100644 --- a/python/knext/core/builder/job/model/component.py +++ b/python/knext/core/builder/job/model/component.py @@ -1,15 +1,15 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + import os from abc import ABC diff --git a/python/knext/core/builder/operator/__init__.py b/python/knext/core/builder/operator/__init__.py index 89c15df99..4afb09fb5 100644 --- a/python/knext/core/builder/operator/__init__.py +++ b/python/knext/core/builder/operator/__init__.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.operator.model.eval_result import EvalResult from knext.core.builder.operator.model.op import BaseOp diff --git a/python/knext/core/builder/operator/model/__init__.py b/python/knext/core/builder/operator/model/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/builder/operator/model/__init__.py +++ b/python/knext/core/builder/operator/model/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/builder/operator/model/eval_result.py b/python/knext/core/builder/operator/model/eval_result.py index 2632315e0..8f7086d32 100644 --- a/python/knext/core/builder/operator/model/eval_result.py +++ b/python/knext/core/builder/operator/model/eval_result.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import pprint from typing import TypeVar, Generic, List, Dict, Any diff --git a/python/knext/core/builder/operator/model/op.py b/python/knext/core/builder/operator/model/op.py index 76738ff8f..799024ce0 100644 --- a/python/knext/core/builder/operator/model/op.py +++ b/python/knext/core/builder/operator/model/op.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from abc import ABC from enum import Enum diff --git a/python/knext/core/builder/operator/model/vertex.py b/python/knext/core/builder/operator/model/vertex.py index 6738eac3e..1b05178ed 100644 --- a/python/knext/core/builder/operator/model/vertex.py +++ b/python/knext/core/builder/operator/model/vertex.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import pprint from typing import Dict, Any, List diff --git a/python/knext/core/builder/operator/operator.py b/python/knext/core/builder/operator/operator.py index 6ffeb6d9d..0a18d0a57 100644 --- a/python/knext/core/builder/operator/operator.py +++ b/python/knext/core/builder/operator/operator.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os from enum import Enum diff --git a/python/knext/core/reasoner/__init__.py b/python/knext/core/reasoner/__init__.py index 941e46cb4..fdb957a54 100644 --- a/python/knext/core/reasoner/__init__.py +++ b/python/knext/core/reasoner/__init__.py @@ -1,12 +1,12 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.reasoner.reasoner import Reasoner diff --git a/python/knext/core/reasoner/model/__init__.py b/python/knext/core/reasoner/model/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/reasoner/model/__init__.py +++ b/python/knext/core/reasoner/model/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/reasoner/reasoner.py b/python/knext/core/reasoner/reasoner.py index 8c64e8bf8..7e47961d6 100644 --- a/python/knext/core/reasoner/reasoner.py +++ b/python/knext/core/reasoner/reasoner.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os from enum import Enum diff --git a/python/knext/core/schema/__init__.py b/python/knext/core/schema/__init__.py index 4faf17d0e..8fbce26e4 100644 --- a/python/knext/core/schema/__init__.py +++ b/python/knext/core/schema/__init__.py @@ -1,14 +1,13 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.schema.schema import Schema diff --git a/python/knext/core/schema/concept_rule_ml.py b/python/knext/core/schema/concept_rule_ml.py index bfb0e9599..692fee737 100644 --- a/python/knext/core/schema/concept_rule_ml.py +++ b/python/knext/core/schema/concept_rule_ml.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import re diff --git a/python/knext/core/schema/model/__init__.py b/python/knext/core/schema/model/__init__.py index ee4e1e81e..b108a56a0 100644 --- a/python/knext/core/schema/model/__init__.py +++ b/python/knext/core/schema/model/__init__.py @@ -1,13 +1,13 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.schema.model.property import Property from knext.core.schema.model.relation import Relation diff --git a/python/knext/core/schema/model/base.py b/python/knext/core/schema/model/base.py index 18afe18a1..157adbcde 100644 --- a/python/knext/core/schema/model/base.py +++ b/python/knext/core/schema/model/base.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import pprint import typing diff --git a/python/knext/core/schema/model/property.py b/python/knext/core/schema/model/property.py index ef7a6f9b7..724ee1f40 100644 --- a/python/knext/core/schema/model/property.py +++ b/python/knext/core/schema/model/property.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import List, Type, Union, Dict diff --git a/python/knext/core/schema/model/relation.py b/python/knext/core/schema/model/relation.py index 1963d473f..3b4c94305 100644 --- a/python/knext/core/schema/model/relation.py +++ b/python/knext/core/schema/model/relation.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import List, Type, Dict diff --git a/python/knext/core/schema/model/spg_type.py b/python/knext/core/schema/model/spg_type.py index a4e85112a..908c7c8f9 100644 --- a/python/knext/core/schema/model/spg_type.py +++ b/python/knext/core/schema/model/spg_type.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import List, Dict, Union, Optional diff --git a/python/knext/core/schema/schema.py b/python/knext/core/schema/schema.py index e68087f89..272ab941f 100644 --- a/python/knext/core/schema/schema.py +++ b/python/knext/core/schema/schema.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os from typing import List diff --git a/python/knext/core/schema/schema_ml.py b/python/knext/core/schema/schema_ml.py index e4237261f..94a3586df 100644 --- a/python/knext/core/schema/schema_ml.py +++ b/python/knext/core/schema/schema_ml.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import copy import re diff --git a/python/knext/core/wrapper/__init__.py b/python/knext/core/wrapper/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/core/wrapper/__init__.py +++ b/python/knext/core/wrapper/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/core/wrapper/search_client.py b/python/knext/core/wrapper/search_client.py index 6791cd0d4..f96c06878 100644 --- a/python/knext/core/wrapper/search_client.py +++ b/python/knext/core/wrapper/search_client.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import json import pprint diff --git a/python/knext/examples/medical/builder/job/body_part.py b/python/knext/examples/medical/builder/job/body_part.py index f2ba62ed1..a439039e3 100644 --- a/python/knext/examples/medical/builder/job/body_part.py +++ b/python/knext/examples/medical/builder/job/body_part.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/medical/builder/job/disease.py b/python/knext/examples/medical/builder/job/disease.py index 441e24682..89af9c108 100644 --- a/python/knext/examples/medical/builder/job/disease.py +++ b/python/knext/examples/medical/builder/job/disease.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/medical/builder/job/hospital_department.py b/python/knext/examples/medical/builder/job/hospital_department.py index fc38ded41..63a349985 100644 --- a/python/knext/examples/medical/builder/job/hospital_department.py +++ b/python/knext/examples/medical/builder/job/hospital_department.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/medical/builder/model/arguments.py b/python/knext/examples/medical/builder/model/arguments.py index 0ff734ef6..d4565a3c5 100644 --- a/python/knext/examples/medical/builder/model/arguments.py +++ b/python/knext/examples/medical/builder/model/arguments.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from dataclasses import dataclass, field from typing import Optional diff --git a/python/knext/examples/medical/builder/model/dataset/convert_util.py b/python/knext/examples/medical/builder/model/dataset/convert_util.py index 27ab0665a..a63363f7a 100644 --- a/python/knext/examples/medical/builder/model/dataset/convert_util.py +++ b/python/knext/examples/medical/builder/model/dataset/convert_util.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import argparse import json diff --git a/python/knext/examples/medical/builder/model/deployer.py b/python/knext/examples/medical/builder/model/deployer.py index 918fe34e7..33c1d10c5 100644 --- a/python/knext/examples/medical/builder/model/deployer.py +++ b/python/knext/examples/medical/builder/model/deployer.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import argparse import json diff --git a/python/knext/examples/medical/builder/model/trainer.py b/python/knext/examples/medical/builder/model/trainer.py index 9d3527af8..091a76777 100644 --- a/python/knext/examples/medical/builder/model/trainer.py +++ b/python/knext/examples/medical/builder/model/trainer.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os from typing import Optional diff --git a/python/knext/examples/medical/builder/operator/disease_extractor.py b/python/knext/examples/medical/builder/operator/disease_extractor.py index 98be9bba3..5cde5f1fd 100644 --- a/python/knext/examples/medical/builder/operator/disease_extractor.py +++ b/python/knext/examples/medical/builder/operator/disease_extractor.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import json from typing import List, Dict diff --git a/python/knext/examples/medical/schema/medical_schema_helper.py b/python/knext/examples/medical/schema/medical_schema_helper.py index a0f1cb7f8..176116b15 100644 --- a/python/knext/examples/medical/schema/medical_schema_helper.py +++ b/python/knext/examples/medical/schema/medical_schema_helper.py @@ -1,20 +1,17 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. # ATTENTION! # This file is generated by Schema automatically, it will be refreshed after schema has been committed # PLEASE DO NOT MODIFY THIS FILE!!! -# - - class Medical: def __init__(self): self.BodyPart = self.BodyPart() diff --git a/python/knext/examples/riskmining/builder/job/app.py b/python/knext/examples/riskmining/builder/job/app.py index 7c0f96411..93d66b827 100644 --- a/python/knext/examples/riskmining/builder/job/app.py +++ b/python/knext/examples/riskmining/builder/job/app.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/riskmining/builder/job/cert.py b/python/knext/examples/riskmining/builder/job/cert.py index fd74180ba..343ed5f3a 100644 --- a/python/knext/examples/riskmining/builder/job/cert.py +++ b/python/knext/examples/riskmining/builder/job/cert.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/riskmining/builder/job/company.py b/python/knext/examples/riskmining/builder/job/company.py index 8a5d3eb23..ea40200e4 100644 --- a/python/knext/examples/riskmining/builder/job/company.py +++ b/python/knext/examples/riskmining/builder/job/company.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import EntityMappingComponent diff --git a/python/knext/examples/riskmining/builder/job/device.py b/python/knext/examples/riskmining/builder/job/device.py index 1b8deb262..c0bc2d910 100644 --- a/python/knext/examples/riskmining/builder/job/device.py +++ b/python/knext/examples/riskmining/builder/job/device.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/riskmining/builder/job/person.py b/python/knext/examples/riskmining/builder/job/person.py index ab6106df0..ea59aa478 100644 --- a/python/knext/examples/riskmining/builder/job/person.py +++ b/python/knext/examples/riskmining/builder/job/person.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import EntityMappingComponent diff --git a/python/knext/examples/riskmining/builder/job/tax_of_risk_app.py b/python/knext/examples/riskmining/builder/job/tax_of_risk_app.py index 416b5a02e..1a8474bea 100644 --- a/python/knext/examples/riskmining/builder/job/tax_of_risk_app.py +++ b/python/knext/examples/riskmining/builder/job/tax_of_risk_app.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/riskmining/builder/job/tax_of_risk_user.py b/python/knext/examples/riskmining/builder/job/tax_of_risk_user.py index 738f28062..d61e5ea35 100644 --- a/python/knext/examples/riskmining/builder/job/tax_of_risk_user.py +++ b/python/knext/examples/riskmining/builder/job/tax_of_risk_user.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/riskmining/builder/operator/cert_link_operator.py b/python/knext/examples/riskmining/builder/operator/cert_link_operator.py index 1ef52f975..54586ee4a 100644 --- a/python/knext/examples/riskmining/builder/operator/cert_link_operator.py +++ b/python/knext/examples/riskmining/builder/operator/cert_link_operator.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import List diff --git a/python/knext/examples/riskmining/schema/riskmining_schema_helper.py b/python/knext/examples/riskmining/schema/riskmining_schema_helper.py index 206d69633..02be2c9a0 100644 --- a/python/knext/examples/riskmining/schema/riskmining_schema_helper.py +++ b/python/knext/examples/riskmining/schema/riskmining_schema_helper.py @@ -1,9 +1,17 @@ +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # ATTENTION! # This file is generated by Schema automatically, it will be refreshed after schema has been committed # PLEASE DO NOT MODIFY THIS FILE!!! -# - - class RiskMining: def __init__(self): self.App = self.App() diff --git a/python/knext/examples/supplychain/builder/job/company.py b/python/knext/examples/supplychain/builder/job/company.py index e3bbeca2c..2ee880acd 100644 --- a/python/knext/examples/supplychain/builder/job/company.py +++ b/python/knext/examples/supplychain/builder/job/company.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/index.py b/python/knext/examples/supplychain/builder/job/index.py index 5f74333f8..17e74b24d 100644 --- a/python/knext/examples/supplychain/builder/job/index.py +++ b/python/knext/examples/supplychain/builder/job/index.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/industry.py b/python/knext/examples/supplychain/builder/job/industry.py index 2daa9571e..392a3b6f0 100644 --- a/python/knext/examples/supplychain/builder/job/industry.py +++ b/python/knext/examples/supplychain/builder/job/industry.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/person.py b/python/knext/examples/supplychain/builder/job/person.py index 104e56ac2..7ef74bbf1 100644 --- a/python/knext/examples/supplychain/builder/job/person.py +++ b/python/knext/examples/supplychain/builder/job/person.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/product.py b/python/knext/examples/supplychain/builder/job/product.py index e4983051b..748a93d96 100644 --- a/python/knext/examples/supplychain/builder/job/product.py +++ b/python/knext/examples/supplychain/builder/job/product.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/product_chain_event.py b/python/knext/examples/supplychain/builder/job/product_chain_event.py index 5ae44066d..0ad03dd51 100644 --- a/python/knext/examples/supplychain/builder/job/product_chain_event.py +++ b/python/knext/examples/supplychain/builder/job/product_chain_event.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/tax_of_company_event.py b/python/knext/examples/supplychain/builder/job/tax_of_company_event.py index cd82a7585..4a5e223f7 100644 --- a/python/knext/examples/supplychain/builder/job/tax_of_company_event.py +++ b/python/knext/examples/supplychain/builder/job/tax_of_company_event.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/tax_of_product_event.py b/python/knext/examples/supplychain/builder/job/tax_of_product_event.py index e13b4f3e8..b907ed5fa 100644 --- a/python/knext/examples/supplychain/builder/job/tax_of_product_event.py +++ b/python/knext/examples/supplychain/builder/job/tax_of_product_event.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/job/trend.py b/python/knext/examples/supplychain/builder/job/trend.py index 26095a5ff..d344c592e 100644 --- a/python/knext/examples/supplychain/builder/job/trend.py +++ b/python/knext/examples/supplychain/builder/job/trend.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from knext.core.builder.job.builder import BuilderJob from knext.core.builder.job.model.component import ( diff --git a/python/knext/examples/supplychain/builder/operator/company_operator.py b/python/knext/examples/supplychain/builder/operator/company_operator.py index 6d1fc353a..7457769cf 100644 --- a/python/knext/examples/supplychain/builder/operator/company_operator.py +++ b/python/knext/examples/supplychain/builder/operator/company_operator.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from typing import List diff --git a/python/knext/examples/supplychain/schema/supplychain_schema_helper.py b/python/knext/examples/supplychain/schema/supplychain_schema_helper.py index e174b4520..f15a16471 100644 --- a/python/knext/examples/supplychain/schema/supplychain_schema_helper.py +++ b/python/knext/examples/supplychain/schema/supplychain_schema_helper.py @@ -1,9 +1,17 @@ +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # ATTENTION! # This file is generated by Schema automatically, it will be refreshed after schema has been committed # PLEASE DO NOT MODIFY THIS FILE!!! -# - - class SupplyChain: def __init__(self): self.Company = self.Company() diff --git a/python/knext/rest/__init__.py b/python/knext/rest/__init__.py index ebe4051ca..e954adf31 100644 --- a/python/knext/rest/__init__.py +++ b/python/knext/rest/__init__.py @@ -1,15 +1,15 @@ # coding: utf-8 - -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # flake8: noqa diff --git a/python/knext/rest/api/__init__.py b/python/knext/rest/api/__init__.py index 242037d2a..193a3595c 100644 --- a/python/knext/rest/api/__init__.py +++ b/python/knext/rest/api/__init__.py @@ -1,13 +1,13 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/builder_api.py b/python/knext/rest/api/builder_api.py index 5ae4dabc4..915f6d26f 100644 --- a/python/knext/rest/api/builder_api.py +++ b/python/knext/rest/api/builder_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/concept_api.py b/python/knext/rest/api/concept_api.py index 6fecf91e0..59e0a8c63 100644 --- a/python/knext/rest/api/concept_api.py +++ b/python/knext/rest/api/concept_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/editor_api.py b/python/knext/rest/api/editor_api.py index 1bf0fd177..ef0ad6912 100644 --- a/python/knext/rest/api/editor_api.py +++ b/python/knext/rest/api/editor_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/object_store_api.py b/python/knext/rest/api/object_store_api.py index 98dcc547c..f005b6646 100644 --- a/python/knext/rest/api/object_store_api.py +++ b/python/knext/rest/api/object_store_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/operator_api.py b/python/knext/rest/api/operator_api.py index ef3089590..243f718a5 100644 --- a/python/knext/rest/api/operator_api.py +++ b/python/knext/rest/api/operator_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/project_api.py b/python/knext/rest/api/project_api.py index a6beace6b..158ced043 100644 --- a/python/knext/rest/api/project_api.py +++ b/python/knext/rest/api/project_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/reasoner_api.py b/python/knext/rest/api/reasoner_api.py index df2fd5ac1..efa884bd7 100644 --- a/python/knext/rest/api/reasoner_api.py +++ b/python/knext/rest/api/reasoner_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/schema_api.py b/python/knext/rest/api/schema_api.py index 0a78194ba..40f2cc51c 100644 --- a/python/knext/rest/api/schema_api.py +++ b/python/knext/rest/api/schema_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api/table_store_api.py b/python/knext/rest/api/table_store_api.py index cd5c1514f..80de158f0 100644 --- a/python/knext/rest/api/table_store_api.py +++ b/python/knext/rest/api/table_store_api.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/api_client.py b/python/knext/rest/api_client.py index 2a63fe2ca..b8952cbc9 100644 --- a/python/knext/rest/api_client.py +++ b/python/knext/rest/api_client.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -8,16 +19,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/configuration.py b/python/knext/rest/configuration.py index be06c418f..641bb0f55 100644 --- a/python/knext/rest/configuration.py +++ b/python/knext/rest/configuration.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/rest/exceptions.py b/python/knext/rest/exceptions.py index 99bd92e51..4b127468f 100644 --- a/python/knext/rest/exceptions.py +++ b/python/knext/rest/exceptions.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import six diff --git a/python/knext/rest/models/__init__.py b/python/knext/rest/models/__init__.py index 8a3a9339d..e7848677f 100644 --- a/python/knext/rest/models/__init__.py +++ b/python/knext/rest/models/__init__.py @@ -1,15 +1,15 @@ # coding: utf-8 - -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # flake8: noqa """ diff --git a/python/knext/rest/models/builder/__init__.py b/python/knext/rest/models/builder/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/builder/__init__.py +++ b/python/knext/rest/models/builder/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/builder/pipeline/__init__.py b/python/knext/rest/models/builder/pipeline/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/builder/pipeline/__init__.py +++ b/python/knext/rest/models/builder/pipeline/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/builder/pipeline/config/__init__.py b/python/knext/rest/models/builder/pipeline/config/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/builder/pipeline/config/__init__.py +++ b/python/knext/rest/models/builder/pipeline/config/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/builder/pipeline/config/base_node_config.py b/python/knext/rest/models/builder/pipeline/config/base_node_config.py index 22598103b..21d714392 100644 --- a/python/knext/rest/models/builder/pipeline/config/base_node_config.py +++ b/python/knext/rest/models/builder/pipeline/config/base_node_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/csv_source_node_config.py b/python/knext/rest/models/builder/pipeline/config/csv_source_node_config.py index 430585244..c31ea432f 100644 --- a/python/knext/rest/models/builder/pipeline/config/csv_source_node_config.py +++ b/python/knext/rest/models/builder/pipeline/config/csv_source_node_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/extract_node_config.py b/python/knext/rest/models/builder/pipeline/config/extract_node_config.py index c20bb14a8..5c298435e 100644 --- a/python/knext/rest/models/builder/pipeline/config/extract_node_config.py +++ b/python/knext/rest/models/builder/pipeline/config/extract_node_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/graph_store_sink_node_config.py b/python/knext/rest/models/builder/pipeline/config/graph_store_sink_node_config.py index da07f3202..d9da2154b 100644 --- a/python/knext/rest/models/builder/pipeline/config/graph_store_sink_node_config.py +++ b/python/knext/rest/models/builder/pipeline/config/graph_store_sink_node_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/mapping_config.py b/python/knext/rest/models/builder/pipeline/config/mapping_config.py index 696417286..58ae5a4f5 100644 --- a/python/knext/rest/models/builder/pipeline/config/mapping_config.py +++ b/python/knext/rest/models/builder/pipeline/config/mapping_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/mapping_filter.py b/python/knext/rest/models/builder/pipeline/config/mapping_filter.py index 7ca0253f7..cc76438b5 100644 --- a/python/knext/rest/models/builder/pipeline/config/mapping_filter.py +++ b/python/knext/rest/models/builder/pipeline/config/mapping_filter.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/mapping_node_config.py b/python/knext/rest/models/builder/pipeline/config/mapping_node_config.py index 10db4b8d1..272b53b73 100644 --- a/python/knext/rest/models/builder/pipeline/config/mapping_node_config.py +++ b/python/knext/rest/models/builder/pipeline/config/mapping_node_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/mapping_schema.py b/python/knext/rest/models/builder/pipeline/config/mapping_schema.py index a3e2014e1..7be40bf40 100644 --- a/python/knext/rest/models/builder/pipeline/config/mapping_schema.py +++ b/python/knext/rest/models/builder/pipeline/config/mapping_schema.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/config/operator_config.py b/python/knext/rest/models/builder/pipeline/config/operator_config.py index 5cb932173..485e52955 100644 --- a/python/knext/rest/models/builder/pipeline/config/operator_config.py +++ b/python/knext/rest/models/builder/pipeline/config/operator_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/edge.py b/python/knext/rest/models/builder/pipeline/edge.py index ca1082f8f..bbeceb6a7 100644 --- a/python/knext/rest/models/builder/pipeline/edge.py +++ b/python/knext/rest/models/builder/pipeline/edge.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/node.py b/python/knext/rest/models/builder/pipeline/node.py index 3ca6891f6..c17a4f6a2 100644 --- a/python/knext/rest/models/builder/pipeline/node.py +++ b/python/knext/rest/models/builder/pipeline/node.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/pipeline/pipeline.py b/python/knext/rest/models/builder/pipeline/pipeline.py index 13aaf206a..a6bde6fdd 100644 --- a/python/knext/rest/models/builder/pipeline/pipeline.py +++ b/python/knext/rest/models/builder/pipeline/pipeline.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/request/__init__.py b/python/knext/rest/models/builder/request/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/builder/request/__init__.py +++ b/python/knext/rest/models/builder/request/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/builder/request/builder_job_submit_request.py b/python/knext/rest/models/builder/request/builder_job_submit_request.py index 6d46613f8..781e27501 100644 --- a/python/knext/rest/models/builder/request/builder_job_submit_request.py +++ b/python/knext/rest/models/builder/request/builder_job_submit_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/__init__.py b/python/knext/rest/models/builder/response/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/builder/response/__init__.py +++ b/python/knext/rest/models/builder/response/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/builder/response/base_builder_receipt.py b/python/knext/rest/models/builder/response/base_builder_receipt.py index 2d8b70917..6d2b11fe5 100644 --- a/python/knext/rest/models/builder/response/base_builder_receipt.py +++ b/python/knext/rest/models/builder/response/base_builder_receipt.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/base_builder_result.py b/python/knext/rest/models/builder/response/base_builder_result.py index 47d69f57d..fae0afa28 100644 --- a/python/knext/rest/models/builder/response/base_builder_result.py +++ b/python/knext/rest/models/builder/response/base_builder_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/builder_job_inst.py b/python/knext/rest/models/builder/response/builder_job_inst.py index 7d7f92140..057d8e634 100644 --- a/python/knext/rest/models/builder/response/builder_job_inst.py +++ b/python/knext/rest/models/builder/response/builder_job_inst.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/failure_builder_result.py b/python/knext/rest/models/builder/response/failure_builder_result.py index cabefe91e..30291b14d 100644 --- a/python/knext/rest/models/builder/response/failure_builder_result.py +++ b/python/knext/rest/models/builder/response/failure_builder_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/job_builder_receipt.py b/python/knext/rest/models/builder/response/job_builder_receipt.py index 64ddc35a7..d249729bf 100644 --- a/python/knext/rest/models/builder/response/job_builder_receipt.py +++ b/python/knext/rest/models/builder/response/job_builder_receipt.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/builder/response/success_builder_result.py b/python/knext/rest/models/builder/response/success_builder_result.py index b2a14bdb7..8151780ba 100644 --- a/python/knext/rest/models/builder/response/success_builder_result.py +++ b/python/knext/rest/models/builder/response/success_builder_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/common/__init__.py b/python/knext/rest/models/common/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/common/__init__.py +++ b/python/knext/rest/models/common/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/common/user_info.py b/python/knext/rest/models/common/user_info.py index 5740232ba..0cc8fca2c 100644 --- a/python/knext/rest/models/common/user_info.py +++ b/python/knext/rest/models/common/user_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/operator/__init__.py b/python/knext/rest/models/operator/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/operator/__init__.py +++ b/python/knext/rest/models/operator/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/operator/operator_overview.py b/python/knext/rest/models/operator/operator_overview.py index b671dab33..e133d08b1 100644 --- a/python/knext/rest/models/operator/operator_overview.py +++ b/python/knext/rest/models/operator/operator_overview.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/operator/operator_version.py b/python/knext/rest/models/operator/operator_version.py index ccd01986c..a175528ec 100644 --- a/python/knext/rest/models/operator/operator_version.py +++ b/python/knext/rest/models/operator/operator_version.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/__init__.py b/python/knext/rest/models/reasoner/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/reasoner/__init__.py +++ b/python/knext/rest/models/reasoner/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/reasoner/request/__init__.py b/python/knext/rest/models/reasoner/request/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/reasoner/request/__init__.py +++ b/python/knext/rest/models/reasoner/request/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/reasoner/request/base_reasoner_content.py b/python/knext/rest/models/reasoner/request/base_reasoner_content.py index 553fdc287..fe06b9f31 100644 --- a/python/knext/rest/models/reasoner/request/base_reasoner_content.py +++ b/python/knext/rest/models/reasoner/request/base_reasoner_content.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/request/kgdsl_reasoner_content.py b/python/knext/rest/models/reasoner/request/kgdsl_reasoner_content.py index 00bdf4d3c..152d01579 100644 --- a/python/knext/rest/models/reasoner/request/kgdsl_reasoner_content.py +++ b/python/knext/rest/models/reasoner/request/kgdsl_reasoner_content.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/request/reasoner_dsl_run_request.py b/python/knext/rest/models/reasoner/request/reasoner_dsl_run_request.py index 9d783098d..6fe992e2a 100644 --- a/python/knext/rest/models/reasoner/request/reasoner_dsl_run_request.py +++ b/python/knext/rest/models/reasoner/request/reasoner_dsl_run_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/request/reasoner_job_submit_request.py b/python/knext/rest/models/reasoner/request/reasoner_job_submit_request.py index 3686080b2..5bc51cec6 100644 --- a/python/knext/rest/models/reasoner/request/reasoner_job_submit_request.py +++ b/python/knext/rest/models/reasoner/request/reasoner_job_submit_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/request/vertex_reasoner_content.py b/python/knext/rest/models/reasoner/request/vertex_reasoner_content.py index 07086c96d..20acda956 100644 --- a/python/knext/rest/models/reasoner/request/vertex_reasoner_content.py +++ b/python/knext/rest/models/reasoner/request/vertex_reasoner_content.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/__init__.py b/python/knext/rest/models/reasoner/response/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/reasoner/response/__init__.py +++ b/python/knext/rest/models/reasoner/response/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/reasoner/response/base_reasoner_receipt.py b/python/knext/rest/models/reasoner/response/base_reasoner_receipt.py index bf00972fb..e31fb35fd 100644 --- a/python/knext/rest/models/reasoner/response/base_reasoner_receipt.py +++ b/python/knext/rest/models/reasoner/response/base_reasoner_receipt.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/base_reasoner_result.py b/python/knext/rest/models/reasoner/response/base_reasoner_result.py index 7a4a0996f..0bedc2c0c 100644 --- a/python/knext/rest/models/reasoner/response/base_reasoner_result.py +++ b/python/knext/rest/models/reasoner/response/base_reasoner_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/failure_reasoner_result.py b/python/knext/rest/models/reasoner/response/failure_reasoner_result.py index 063464fe0..73d50edab 100644 --- a/python/knext/rest/models/reasoner/response/failure_reasoner_result.py +++ b/python/knext/rest/models/reasoner/response/failure_reasoner_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/job_reasoner_receipt.py b/python/knext/rest/models/reasoner/response/job_reasoner_receipt.py index eaf819bc0..f538201f3 100644 --- a/python/knext/rest/models/reasoner/response/job_reasoner_receipt.py +++ b/python/knext/rest/models/reasoner/response/job_reasoner_receipt.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/reasoner_job_inst.py b/python/knext/rest/models/reasoner/response/reasoner_job_inst.py index 6ab94e2c0..a500639bc 100644 --- a/python/knext/rest/models/reasoner/response/reasoner_job_inst.py +++ b/python/knext/rest/models/reasoner/response/reasoner_job_inst.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/success_reasoner_result.py b/python/knext/rest/models/reasoner/response/success_reasoner_result.py index 88ad3f065..895e859a8 100644 --- a/python/knext/rest/models/reasoner/response/success_reasoner_result.py +++ b/python/knext/rest/models/reasoner/response/success_reasoner_result.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/response/table_reasoner_receipt.py b/python/knext/rest/models/reasoner/response/table_reasoner_receipt.py index a5c295d8a..811dfda7d 100644 --- a/python/knext/rest/models/reasoner/response/table_reasoner_receipt.py +++ b/python/knext/rest/models/reasoner/response/table_reasoner_receipt.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/reasoner/starting_vertex.py b/python/knext/rest/models/reasoner/starting_vertex.py index 318c76649..3608c9069 100644 --- a/python/knext/rest/models/reasoner/starting_vertex.py +++ b/python/knext/rest/models/reasoner/starting_vertex.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/__init__.py b/python/knext/rest/models/request/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/request/__init__.py +++ b/python/knext/rest/models/request/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/request/define_dynamic_taxonomy_request.py b/python/knext/rest/models/request/define_dynamic_taxonomy_request.py index f2f382d30..e3573e364 100644 --- a/python/knext/rest/models/request/define_dynamic_taxonomy_request.py +++ b/python/knext/rest/models/request/define_dynamic_taxonomy_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/define_logical_causation_request.py b/python/knext/rest/models/request/define_logical_causation_request.py index 1723bdf8a..5f94965c6 100644 --- a/python/knext/rest/models/request/define_logical_causation_request.py +++ b/python/knext/rest/models/request/define_logical_causation_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/operator_create_request.py b/python/knext/rest/models/request/operator_create_request.py index 438e3a764..55323438b 100644 --- a/python/knext/rest/models/request/operator_create_request.py +++ b/python/knext/rest/models/request/operator_create_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/operator_version_request.py b/python/knext/rest/models/request/operator_version_request.py index 06a6fbb57..fdd38e940 100644 --- a/python/knext/rest/models/request/operator_version_request.py +++ b/python/knext/rest/models/request/operator_version_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/project_create_request.py b/python/knext/rest/models/request/project_create_request.py index 220b3d563..f343a12d6 100644 --- a/python/knext/rest/models/request/project_create_request.py +++ b/python/knext/rest/models/request/project_create_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/remove_dynamic_taxonomy_request.py b/python/knext/rest/models/request/remove_dynamic_taxonomy_request.py index eb6a4bfcb..c4b7cdfc5 100644 --- a/python/knext/rest/models/request/remove_dynamic_taxonomy_request.py +++ b/python/knext/rest/models/request/remove_dynamic_taxonomy_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/remove_logical_causation_request.py b/python/knext/rest/models/request/remove_logical_causation_request.py index 4174046c8..705660167 100644 --- a/python/knext/rest/models/request/remove_logical_causation_request.py +++ b/python/knext/rest/models/request/remove_logical_causation_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/request/schema_alter_request.py b/python/knext/rest/models/request/schema_alter_request.py index 91edc81c6..0e183abf5 100644 --- a/python/knext/rest/models/request/schema_alter_request.py +++ b/python/knext/rest/models/request/schema_alter_request.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/response/__init__.py b/python/knext/rest/models/response/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/response/__init__.py +++ b/python/knext/rest/models/response/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/response/object_store_response.py b/python/knext/rest/models/response/object_store_response.py index 9957389e1..165c36936 100644 --- a/python/knext/rest/models/response/object_store_response.py +++ b/python/knext/rest/models/response/object_store_response.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/response/operator_create_response.py b/python/knext/rest/models/response/operator_create_response.py index 39d5ccc46..eab39e0b5 100644 --- a/python/knext/rest/models/response/operator_create_response.py +++ b/python/knext/rest/models/response/operator_create_response.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/response/operator_version_response.py b/python/knext/rest/models/response/operator_version_response.py index cab4abc64..52b6b6a50 100644 --- a/python/knext/rest/models/response/operator_version_response.py +++ b/python/knext/rest/models/response/operator_version_response.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/response/project.py b/python/knext/rest/models/response/project.py index 3b2ab1047..c11af69e5 100644 --- a/python/knext/rest/models/response/project.py +++ b/python/knext/rest/models/response/project.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/response/search_engine_index_response.py b/python/knext/rest/models/response/search_engine_index_response.py index 640944cc5..b800f94e1 100644 --- a/python/knext/rest/models/response/search_engine_index_response.py +++ b/python/knext/rest/models/response/search_engine_index_response.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/__init__.py b/python/knext/rest/models/schema/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/__init__.py +++ b/python/knext/rest/models/schema/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/alter/__init__.py b/python/knext/rest/models/schema/alter/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/alter/__init__.py +++ b/python/knext/rest/models/schema/alter/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/alter/schema_draft.py b/python/knext/rest/models/schema/alter/schema_draft.py index ef70d68fe..1da192fd6 100644 --- a/python/knext/rest/models/schema/alter/schema_draft.py +++ b/python/knext/rest/models/schema/alter/schema_draft.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/base_ontology.py b/python/knext/rest/models/schema/base_ontology.py index 274fc4655..89bc27186 100644 --- a/python/knext/rest/models/schema/base_ontology.py +++ b/python/knext/rest/models/schema/base_ontology.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/basic_info.py b/python/knext/rest/models/schema/basic_info.py index e8322bed9..463ccef0e 100644 --- a/python/knext/rest/models/schema/basic_info.py +++ b/python/knext/rest/models/schema/basic_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/__init__.py b/python/knext/rest/models/schema/constraint/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/constraint/__init__.py +++ b/python/knext/rest/models/schema/constraint/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/constraint/base_constraint_item.py b/python/knext/rest/models/schema/constraint/base_constraint_item.py index 655727ee1..bdb57064d 100644 --- a/python/knext/rest/models/schema/constraint/base_constraint_item.py +++ b/python/knext/rest/models/schema/constraint/base_constraint_item.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/constraint.py b/python/knext/rest/models/schema/constraint/constraint.py index 42e701303..6d04f137c 100644 --- a/python/knext/rest/models/schema/constraint/constraint.py +++ b/python/knext/rest/models/schema/constraint/constraint.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/enum_constraint.py b/python/knext/rest/models/schema/constraint/enum_constraint.py index d563129f3..b21077de1 100644 --- a/python/knext/rest/models/schema/constraint/enum_constraint.py +++ b/python/knext/rest/models/schema/constraint/enum_constraint.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/multi_val_constraint.py b/python/knext/rest/models/schema/constraint/multi_val_constraint.py index ff922be59..d6348d34e 100644 --- a/python/knext/rest/models/schema/constraint/multi_val_constraint.py +++ b/python/knext/rest/models/schema/constraint/multi_val_constraint.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/not_null_constraint.py b/python/knext/rest/models/schema/constraint/not_null_constraint.py index 1f292dbec..f83cd8028 100644 --- a/python/knext/rest/models/schema/constraint/not_null_constraint.py +++ b/python/knext/rest/models/schema/constraint/not_null_constraint.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/constraint/regular_constraint.py b/python/knext/rest/models/schema/constraint/regular_constraint.py index a31144880..cd30fc732 100644 --- a/python/knext/rest/models/schema/constraint/regular_constraint.py +++ b/python/knext/rest/models/schema/constraint/regular_constraint.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/__init__.py b/python/knext/rest/models/schema/identifier/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/identifier/__init__.py +++ b/python/knext/rest/models/schema/identifier/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/identifier/base_spg_identifier.py b/python/knext/rest/models/schema/identifier/base_spg_identifier.py index e4cd1fea3..7b20cee6e 100644 --- a/python/knext/rest/models/schema/identifier/base_spg_identifier.py +++ b/python/knext/rest/models/schema/identifier/base_spg_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,17 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. - import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/concept_identifier.py b/python/knext/rest/models/schema/identifier/concept_identifier.py index 0ef6327c8..a1febdc95 100644 --- a/python/knext/rest/models/schema/identifier/concept_identifier.py +++ b/python/knext/rest/models/schema/identifier/concept_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/operator_identifier.py b/python/knext/rest/models/schema/identifier/operator_identifier.py index 0fb5c0162..2d4fdf7ec 100644 --- a/python/knext/rest/models/schema/identifier/operator_identifier.py +++ b/python/knext/rest/models/schema/identifier/operator_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/predicate_identifier.py b/python/knext/rest/models/schema/identifier/predicate_identifier.py index 3ad579337..337d970de 100644 --- a/python/knext/rest/models/schema/identifier/predicate_identifier.py +++ b/python/knext/rest/models/schema/identifier/predicate_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/spg_triple_identifier.py b/python/knext/rest/models/schema/identifier/spg_triple_identifier.py index 7e720cc40..b5413f2fb 100644 --- a/python/knext/rest/models/schema/identifier/spg_triple_identifier.py +++ b/python/knext/rest/models/schema/identifier/spg_triple_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/identifier/spg_type_identifier.py b/python/knext/rest/models/schema/identifier/spg_type_identifier.py index 4193c8741..70567312c 100644 --- a/python/knext/rest/models/schema/identifier/spg_type_identifier.py +++ b/python/knext/rest/models/schema/identifier/spg_type_identifier.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/ontology_id.py b/python/knext/rest/models/schema/ontology_id.py index 31f437b98..665d6eeee 100644 --- a/python/knext/rest/models/schema/ontology_id.py +++ b/python/knext/rest/models/schema/ontology_id.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/__init__.py b/python/knext/rest/models/schema/predicate/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/predicate/__init__.py +++ b/python/knext/rest/models/schema/predicate/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/predicate/mounted_concept_config.py b/python/knext/rest/models/schema/predicate/mounted_concept_config.py index ab28b5e3d..64abf8d98 100644 --- a/python/knext/rest/models/schema/predicate/mounted_concept_config.py +++ b/python/knext/rest/models/schema/predicate/mounted_concept_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/property.py b/python/knext/rest/models/schema/predicate/property.py index 2ed3df214..21b5d1c25 100644 --- a/python/knext/rest/models/schema/predicate/property.py +++ b/python/knext/rest/models/schema/predicate/property.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/property_advanced_config.py b/python/knext/rest/models/schema/predicate/property_advanced_config.py index 467f201f9..a3d9e393c 100644 --- a/python/knext/rest/models/schema/predicate/property_advanced_config.py +++ b/python/knext/rest/models/schema/predicate/property_advanced_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/property_ref.py b/python/knext/rest/models/schema/predicate/property_ref.py index e49cb9b10..88417d6e2 100644 --- a/python/knext/rest/models/schema/predicate/property_ref.py +++ b/python/knext/rest/models/schema/predicate/property_ref.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/property_ref_basic_info.py b/python/knext/rest/models/schema/predicate/property_ref_basic_info.py index e19b30a98..0f1041e7e 100644 --- a/python/knext/rest/models/schema/predicate/property_ref_basic_info.py +++ b/python/knext/rest/models/schema/predicate/property_ref_basic_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/relation.py b/python/knext/rest/models/schema/predicate/relation.py index 8afe7d848..8eb5821de 100644 --- a/python/knext/rest/models/schema/predicate/relation.py +++ b/python/knext/rest/models/schema/predicate/relation.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/sub_property.py b/python/knext/rest/models/schema/predicate/sub_property.py index 300276a6c..7235614e7 100644 --- a/python/knext/rest/models/schema/predicate/sub_property.py +++ b/python/knext/rest/models/schema/predicate/sub_property.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/predicate/sub_property_basic_info.py b/python/knext/rest/models/schema/predicate/sub_property_basic_info.py index 22e24e415..9b1151e78 100644 --- a/python/knext/rest/models/schema/predicate/sub_property_basic_info.py +++ b/python/knext/rest/models/schema/predicate/sub_property_basic_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/semantic/__init__.py b/python/knext/rest/models/schema/semantic/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/semantic/__init__.py +++ b/python/knext/rest/models/schema/semantic/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/semantic/base_semantic.py b/python/knext/rest/models/schema/semantic/base_semantic.py index c6d7970ba..7c13d5aab 100644 --- a/python/knext/rest/models/schema/semantic/base_semantic.py +++ b/python/knext/rest/models/schema/semantic/base_semantic.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/semantic/logical_rule.py b/python/knext/rest/models/schema/semantic/logical_rule.py index 92aad601b..1d832fa01 100644 --- a/python/knext/rest/models/schema/semantic/logical_rule.py +++ b/python/knext/rest/models/schema/semantic/logical_rule.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/semantic/predicate_semantic.py b/python/knext/rest/models/schema/semantic/predicate_semantic.py index a4ae3ffa7..e10ab1d80 100644 --- a/python/knext/rest/models/schema/semantic/predicate_semantic.py +++ b/python/knext/rest/models/schema/semantic/predicate_semantic.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/semantic/rule_code.py b/python/knext/rest/models/schema/semantic/rule_code.py index 266c088b4..cada962da 100644 --- a/python/knext/rest/models/schema/semantic/rule_code.py +++ b/python/knext/rest/models/schema/semantic/rule_code.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/__init__.py b/python/knext/rest/models/schema/type/__init__.py index 591fe970b..19913efac 100644 --- a/python/knext/rest/models/schema/type/__init__.py +++ b/python/knext/rest/models/schema/type/__init__.py @@ -1,10 +1,10 @@ -# Copyright 2023 Ant Group CO., Ltd. +# Copyright 2023 Ant Group CO., Ltd. # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# http://www.apache.org/licenses/LICENSE-2.0 +# http://www.apache.org/licenses/LICENSE-2.0 # -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. diff --git a/python/knext/rest/models/schema/type/base_advanced_type.py b/python/knext/rest/models/schema/type/base_advanced_type.py index e4c44789f..573984fd2 100644 --- a/python/knext/rest/models/schema/type/base_advanced_type.py +++ b/python/knext/rest/models/schema/type/base_advanced_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/base_spg_type.py b/python/knext/rest/models/schema/type/base_spg_type.py index 7ea6228aa..90d575a77 100644 --- a/python/knext/rest/models/schema/type/base_spg_type.py +++ b/python/knext/rest/models/schema/type/base_spg_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/basic_type.py b/python/knext/rest/models/schema/type/basic_type.py index 7d6e66dcc..152ecf8de 100644 --- a/python/knext/rest/models/schema/type/basic_type.py +++ b/python/knext/rest/models/schema/type/basic_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/concept_layer_config.py b/python/knext/rest/models/schema/type/concept_layer_config.py index f9562f414..a1adb1d2d 100644 --- a/python/knext/rest/models/schema/type/concept_layer_config.py +++ b/python/knext/rest/models/schema/type/concept_layer_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/concept_taxonomic_config.py b/python/knext/rest/models/schema/type/concept_taxonomic_config.py index a28bc64a1..9852382b8 100644 --- a/python/knext/rest/models/schema/type/concept_taxonomic_config.py +++ b/python/knext/rest/models/schema/type/concept_taxonomic_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/concept_type.py b/python/knext/rest/models/schema/type/concept_type.py index edae8fd9c..46fc3e3e4 100644 --- a/python/knext/rest/models/schema/type/concept_type.py +++ b/python/knext/rest/models/schema/type/concept_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/entity_type.py b/python/knext/rest/models/schema/type/entity_type.py index 43c03daf4..97a36681b 100644 --- a/python/knext/rest/models/schema/type/entity_type.py +++ b/python/knext/rest/models/schema/type/entity_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/event_type.py b/python/knext/rest/models/schema/type/event_type.py index f468338d1..939219b98 100644 --- a/python/knext/rest/models/schema/type/event_type.py +++ b/python/knext/rest/models/schema/type/event_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/multi_version_config.py b/python/knext/rest/models/schema/type/multi_version_config.py index ca0e931f5..086a81a4b 100644 --- a/python/knext/rest/models/schema/type/multi_version_config.py +++ b/python/knext/rest/models/schema/type/multi_version_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/operator_key.py b/python/knext/rest/models/schema/type/operator_key.py index 1cf0f046e..0706a5336 100644 --- a/python/knext/rest/models/schema/type/operator_key.py +++ b/python/knext/rest/models/schema/type/operator_key.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/parent_type_info.py b/python/knext/rest/models/schema/type/parent_type_info.py index 1761cbffa..0d1772fe7 100644 --- a/python/knext/rest/models/schema/type/parent_type_info.py +++ b/python/knext/rest/models/schema/type/parent_type_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/project_schema.py b/python/knext/rest/models/schema/type/project_schema.py index 1d9bdaa34..64dac962b 100644 --- a/python/knext/rest/models/schema/type/project_schema.py +++ b/python/knext/rest/models/schema/type/project_schema.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/spg_type_advanced_config.py b/python/knext/rest/models/schema/type/spg_type_advanced_config.py index 46b616fa2..17c52f326 100644 --- a/python/knext/rest/models/schema/type/spg_type_advanced_config.py +++ b/python/knext/rest/models/schema/type/spg_type_advanced_config.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/spg_type_ref.py b/python/knext/rest/models/schema/type/spg_type_ref.py index b327112cc..462a6cde2 100644 --- a/python/knext/rest/models/schema/type/spg_type_ref.py +++ b/python/knext/rest/models/schema/type/spg_type_ref.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/spg_type_ref_basic_info.py b/python/knext/rest/models/schema/type/spg_type_ref_basic_info.py index eda0fa202..50ced4d05 100644 --- a/python/knext/rest/models/schema/type/spg_type_ref_basic_info.py +++ b/python/knext/rest/models/schema/type/spg_type_ref_basic_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/standard_type.py b/python/knext/rest/models/schema/type/standard_type.py index 1e61c24a0..49309d342 100644 --- a/python/knext/rest/models/schema/type/standard_type.py +++ b/python/knext/rest/models/schema/type/standard_type.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/models/schema/type/standard_type_basic_info.py b/python/knext/rest/models/schema/type/standard_type_basic_info.py index 4f359a8d6..691015421 100644 --- a/python/knext/rest/models/schema/type/standard_type_basic_info.py +++ b/python/knext/rest/models/schema/type/standard_type_basic_info.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. import pprint import re # noqa: F401 diff --git a/python/knext/rest/rest.py b/python/knext/rest/rest.py index dff564b62..004daf8a6 100644 --- a/python/knext/rest/rest.py +++ b/python/knext/rest/rest.py @@ -1,4 +1,15 @@ # coding: utf-8 +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + """ knext @@ -9,16 +20,6 @@ Generated by: https://openapi-generator.tech """ -# Copyright 2023 Ant Group CO., Ltd. -# -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at -# -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. from __future__ import absolute_import diff --git a/python/knext/templates/project/builder/operator/demo_extract_op.py b/python/knext/templates/project/builder/operator/demo_extract_op.py index 72140dbe7..1728048cb 100644 --- a/python/knext/templates/project/builder/operator/demo_extract_op.py +++ b/python/knext/templates/project/builder/operator/demo_extract_op.py @@ -1,4 +1,15 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. +# +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. + # # Copyright 2023 AntGroup CO., Ltd. # diff --git a/python/setup.py b/python/setup.py index 4e02b4e86..43eac9a6c 100644 --- a/python/setup.py +++ b/python/setup.py @@ -1,15 +1,14 @@ # -*- coding: utf-8 -*- +# Copyright 2023 Ant Group CO., Ltd. # -# Copyright 2023 Ant Group CO., Ltd. +# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +# in compliance with the License. You may obtain a copy of the License at # -# Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except -# in compliance with the License. You may obtain a copy of the License at +# http://www.apache.org/licenses/LICENSE-2.0 # -# http://www.apache.org/licenses/LICENSE-2.0 -# -# Unless required by applicable law or agreed to in writing, software distributed under the License -# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express -# or implied. +# Unless required by applicable law or agreed to in writing, software distributed under the License +# is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +# or implied. import os diff --git a/test/src/main/resources/db/data-h2.sql b/test/src/main/resources/db/data-h2.sql index ab5e856ac..aa5734702 100644 --- a/test/src/main/resources/db/data-h2.sql +++ b/test/src/main/resources/db/data-h2.sql @@ -1,3 +1,14 @@ +-- Copyright 2023 Ant Group CO., Ltd. +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +-- in compliance with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software distributed under the License +-- is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +-- or implied. + INSERT INTO kg_biz_domain (`id`,`gmt_create`,`gmt_modified`,`name`,`status`,`description`,`global_config`) VALUES(1,'2023-09-01 00:00:00','2023-09-01 00:00:00','defaultTenant','VALID','',null); INSERT INTO kg_project_info (`id`,`name`,`description`,`status`,`gmt_create`,`gmt_modified`,`namespace`,`biz_domain_id`) VALUES(1,'defaultProject','defaultProject','VALID','2023-09-01 00:00:00','2023-09-01 00:00:00','DEFAULT',1); diff --git a/test/src/main/resources/db/schema-h2.sql b/test/src/main/resources/db/schema-h2.sql index 86388f9fd..b26d76018 100644 --- a/test/src/main/resources/db/schema-h2.sql +++ b/test/src/main/resources/db/schema-h2.sql @@ -1,3 +1,14 @@ +-- Copyright 2023 Ant Group CO., Ltd. +-- +-- Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except +-- in compliance with the License. You may obtain a copy of the License at +-- +-- http://www.apache.org/licenses/LICENSE-2.0 +-- +-- Unless required by applicable law or agreed to in writing, software distributed under the License +-- is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express +-- or implied. + CREATE TABLE `kg_project_info` ( `id` BIGINT NOT NULL AUTO_INCREMENT comment '主键', diff --git a/test/src/test/resources/plugins/upsert_edges.cpp b/test/src/test/resources/plugins/upsert_edges.cpp index 4c85a30cc..ee62edab8 100644 --- a/test/src/test/resources/plugins/upsert_edges.cpp +++ b/test/src/test/resources/plugins/upsert_edges.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h" diff --git a/test/src/test/resources/plugins/upsert_vertices.cpp b/test/src/test/resources/plugins/upsert_vertices.cpp index bf5f02f2f..839c8d958 100644 --- a/test/src/test/resources/plugins/upsert_vertices.cpp +++ b/test/src/test/resources/plugins/upsert_vertices.cpp @@ -1,3 +1,16 @@ +/* + * Copyright 2023 Ant Group CO., Ltd. + * + * Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except + * in compliance with the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software distributed under the License + * is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express + * or implied. + */ + #include #include #include "lgraph/lgraph.h"