├── .bazelrc ├── .bazelversion ├── .factory ├── automation.yml ├── test-cluster.sh └── test-core.sh ├── .github ├── CODEOWNERS ├── ISSUE_TEMPLATE │ ├── BUG_REPORT.md │ └── FEATURE_REQUEST.md └── PULL_REQUEST_TEMPLATE.md ├── .gitignore ├── BUILD ├── LICENSE ├── README.md ├── RELEASE_NOTES_LATEST.md ├── RELEASE_TEMPLATE.md ├── VERSION ├── WORKSPACE ├── dependencies └── vaticle │ ├── BUILD │ ├── artifacts.bzl │ └── repositories.bzl ├── deployment.bzl ├── requirements.txt ├── requirements_dev.txt ├── tests ├── BUILD ├── behaviour │ ├── BUILD │ ├── background │ │ ├── BUILD │ │ ├── cluster │ │ │ └── environment.py │ │ ├── core │ │ │ └── environment.py │ │ └── environment_base.py │ ├── concept │ │ ├── BUILD │ │ ├── serialization │ │ │ ├── BUILD │ │ │ └── json │ │ │ │ ├── BUILD │ │ │ │ └── json_steps.py │ │ ├── thing │ │ │ ├── BUILD │ │ │ ├── attribute │ │ │ │ ├── BUILD │ │ │ │ └── attribute_steps.py │ │ │ ├── entity │ │ │ │ ├── BUILD │ │ │ │ └── entity_steps.py │ │ │ ├── relation │ │ │ │ ├── BUILD │ │ │ │ └── relation_steps.py │ │ │ └── thing_steps.py │ │ └── type │ │ │ ├── BUILD │ │ │ ├── attributetype │ │ │ ├── BUILD │ │ │ └── attribute_type_steps.py │ │ │ ├── entitytype │ │ │ └── BUILD │ │ │ ├── relationtype │ │ │ ├── BUILD │ │ │ └── relation_type_steps.py │ │ │ └── thing_type_steps.py │ ├── config │ │ ├── BUILD │ │ └── parameters.py │ ├── connection │ │ ├── BUILD │ │ ├── connection_steps.py │ │ ├── database │ │ │ ├── BUILD │ │ │ └── database_steps.py │ │ ├── session │ │ │ ├── BUILD │ │ │ └── session_steps.py │ │ ├── transaction │ │ │ ├── BUILD │ │ │ └── transaction_steps.py │ │ └── user │ │ │ ├── BUILD │ │ │ └── user_steps.py │ ├── context.py │ ├── typeql │ │ ├── BUILD │ │ ├── language │ │ │ ├── define │ │ │ │ └── BUILD │ │ │ ├── delete │ │ │ │ └── BUILD │ │ │ ├── expression │ │ │ │ └── BUILD │ │ │ ├── get │ │ │ │ └── BUILD │ │ │ ├── insert │ │ │ │ └── BUILD │ │ │ ├── match │ │ │ │ └── BUILD │ │ │ ├── undefine │ │ │ │ └── BUILD │ │ │ └── update │ │ │ │ └── BUILD │ │ └── typeql_steps.py │ └── util │ │ ├── BUILD │ │ ├── util.py │ │ └── util_steps.py ├── deployment │ ├── requirements.txt │ └── test.py └── integration │ ├── BUILD │ ├── test_cluster_failover.py │ ├── test_debug.py │ ├── test_stream.py │ └── test_typedb.py ├── tool ├── BUILD ├── behave_rule.bzl ├── cluster_test_rule.bzl └── release │ ├── BUILD │ └── create_notes.sh └── typedb ├── api ├── answer │ ├── concept_map.py │ ├── concept_map_group.py │ ├── numeric.py │ └── numeric_group.py ├── concept │ ├── concept.py │ ├── concept_manager.py │ ├── thing │ │ ├── attribute.py │ │ ├── entity.py │ │ ├── relation.py │ │ └── thing.py │ ├── type │ │ ├── annotation.py │ │ ├── attribute_type.py │ │ ├── entity_type.py │ │ ├── relation_type.py │ │ ├── role_type.py │ │ ├── thing_type.py │ │ └── type.py │ └── value │ │ └── value.py ├── connection │ ├── client.py │ ├── credential.py │ ├── database.py │ ├── options.py │ ├── session.py │ └── transaction.py ├── logic │ ├── explanation.py │ ├── logic_manager.py │ └── rule.py ├── query │ └── query_manager.py └── user │ └── user.py ├── client.py ├── common ├── exception.py ├── iterator_wrapper.py ├── label.py ├── native_wrapper.py └── transitivity.py ├── concept ├── answer │ ├── concept_map.py │ ├── concept_map_group.py │ ├── numeric.py │ └── numeric_group.py ├── concept.py ├── concept_factory.py ├── concept_manager.py ├── thing │ ├── attribute.py │ ├── entity.py │ ├── relation.py │ └── thing.py ├── type │ ├── attribute_type.py │ ├── entity_type.py │ ├── relation_type.py │ ├── role_type.py │ ├── thing_type.py │ └── type.py └── value │ └── value.py ├── connection ├── client.py ├── database.py ├── database_manager.py ├── session.py └── transaction.py ├── logic ├── explanation.py ├── logic_manager.py └── rule.py ├── query └── query_manager.py └── user ├── user.py └── user_manager.py /.bazelrc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.bazelrc -------------------------------------------------------------------------------- /.bazelversion: -------------------------------------------------------------------------------- 1 | 6.2.0 2 | -------------------------------------------------------------------------------- /.factory/automation.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.factory/automation.yml -------------------------------------------------------------------------------- /.factory/test-cluster.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.factory/test-cluster.sh -------------------------------------------------------------------------------- /.factory/test-core.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.factory/test-core.sh -------------------------------------------------------------------------------- /.github/CODEOWNERS: -------------------------------------------------------------------------------- 1 | * @flyingsilverfin 2 | -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/BUG_REPORT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.github/ISSUE_TEMPLATE/BUG_REPORT.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.github/ISSUE_TEMPLATE/FEATURE_REQUEST.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/.gitignore -------------------------------------------------------------------------------- /BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/BUILD -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/README.md -------------------------------------------------------------------------------- /RELEASE_NOTES_LATEST.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/RELEASE_NOTES_LATEST.md -------------------------------------------------------------------------------- /RELEASE_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/RELEASE_TEMPLATE.md -------------------------------------------------------------------------------- /VERSION: -------------------------------------------------------------------------------- 1 | 2.18.2 2 | -------------------------------------------------------------------------------- /WORKSPACE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/WORKSPACE -------------------------------------------------------------------------------- /dependencies/vaticle/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/dependencies/vaticle/BUILD -------------------------------------------------------------------------------- /dependencies/vaticle/artifacts.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/dependencies/vaticle/artifacts.bzl -------------------------------------------------------------------------------- /dependencies/vaticle/repositories.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/dependencies/vaticle/repositories.bzl -------------------------------------------------------------------------------- /deployment.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/deployment.bzl -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/requirements.txt -------------------------------------------------------------------------------- /requirements_dev.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/requirements_dev.txt -------------------------------------------------------------------------------- /tests/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/BUILD -------------------------------------------------------------------------------- /tests/behaviour/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/BUILD -------------------------------------------------------------------------------- /tests/behaviour/background/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/background/BUILD -------------------------------------------------------------------------------- /tests/behaviour/background/cluster/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/background/cluster/environment.py -------------------------------------------------------------------------------- /tests/behaviour/background/core/environment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/background/core/environment.py -------------------------------------------------------------------------------- /tests/behaviour/background/environment_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/background/environment_base.py -------------------------------------------------------------------------------- /tests/behaviour/concept/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/serialization/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/serialization/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/serialization/json/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/serialization/json/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/serialization/json/json_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/serialization/json/json_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/attribute/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/attribute/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/attribute/attribute_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/attribute/attribute_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/entity/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/entity/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/entity/entity_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/entity/entity_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/relation/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/relation/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/relation/relation_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/relation/relation_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/thing/thing_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/thing/thing_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/type/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/type/attributetype/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/attributetype/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/type/attributetype/attribute_type_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/attributetype/attribute_type_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/type/entitytype/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/entitytype/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/type/relationtype/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/relationtype/BUILD -------------------------------------------------------------------------------- /tests/behaviour/concept/type/relationtype/relation_type_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/relationtype/relation_type_steps.py -------------------------------------------------------------------------------- /tests/behaviour/concept/type/thing_type_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/concept/type/thing_type_steps.py -------------------------------------------------------------------------------- /tests/behaviour/config/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/config/BUILD -------------------------------------------------------------------------------- /tests/behaviour/config/parameters.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/config/parameters.py -------------------------------------------------------------------------------- /tests/behaviour/connection/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/BUILD -------------------------------------------------------------------------------- /tests/behaviour/connection/connection_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/connection_steps.py -------------------------------------------------------------------------------- /tests/behaviour/connection/database/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/database/BUILD -------------------------------------------------------------------------------- /tests/behaviour/connection/database/database_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/database/database_steps.py -------------------------------------------------------------------------------- /tests/behaviour/connection/session/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/session/BUILD -------------------------------------------------------------------------------- /tests/behaviour/connection/session/session_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/session/session_steps.py -------------------------------------------------------------------------------- /tests/behaviour/connection/transaction/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/transaction/BUILD -------------------------------------------------------------------------------- /tests/behaviour/connection/transaction/transaction_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/transaction/transaction_steps.py -------------------------------------------------------------------------------- /tests/behaviour/connection/user/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/user/BUILD -------------------------------------------------------------------------------- /tests/behaviour/connection/user/user_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/connection/user/user_steps.py -------------------------------------------------------------------------------- /tests/behaviour/context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/context.py -------------------------------------------------------------------------------- /tests/behaviour/typeql/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/define/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/define/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/delete/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/delete/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/expression/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/expression/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/get/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/get/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/insert/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/insert/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/match/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/match/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/undefine/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/undefine/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/language/update/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/language/update/BUILD -------------------------------------------------------------------------------- /tests/behaviour/typeql/typeql_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/typeql/typeql_steps.py -------------------------------------------------------------------------------- /tests/behaviour/util/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/util/BUILD -------------------------------------------------------------------------------- /tests/behaviour/util/util.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/util/util.py -------------------------------------------------------------------------------- /tests/behaviour/util/util_steps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/behaviour/util/util_steps.py -------------------------------------------------------------------------------- /tests/deployment/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/deployment/requirements.txt -------------------------------------------------------------------------------- /tests/deployment/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/deployment/test.py -------------------------------------------------------------------------------- /tests/integration/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/integration/BUILD -------------------------------------------------------------------------------- /tests/integration/test_cluster_failover.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/integration/test_cluster_failover.py -------------------------------------------------------------------------------- /tests/integration/test_debug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/integration/test_debug.py -------------------------------------------------------------------------------- /tests/integration/test_stream.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/integration/test_stream.py -------------------------------------------------------------------------------- /tests/integration/test_typedb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tests/integration/test_typedb.py -------------------------------------------------------------------------------- /tool/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tool/BUILD -------------------------------------------------------------------------------- /tool/behave_rule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tool/behave_rule.bzl -------------------------------------------------------------------------------- /tool/cluster_test_rule.bzl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tool/cluster_test_rule.bzl -------------------------------------------------------------------------------- /tool/release/BUILD: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tool/release/BUILD -------------------------------------------------------------------------------- /tool/release/create_notes.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/tool/release/create_notes.sh -------------------------------------------------------------------------------- /typedb/api/answer/concept_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/answer/concept_map.py -------------------------------------------------------------------------------- /typedb/api/answer/concept_map_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/answer/concept_map_group.py -------------------------------------------------------------------------------- /typedb/api/answer/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/answer/numeric.py -------------------------------------------------------------------------------- /typedb/api/answer/numeric_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/answer/numeric_group.py -------------------------------------------------------------------------------- /typedb/api/concept/concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/concept.py -------------------------------------------------------------------------------- /typedb/api/concept/concept_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/concept_manager.py -------------------------------------------------------------------------------- /typedb/api/concept/thing/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/thing/attribute.py -------------------------------------------------------------------------------- /typedb/api/concept/thing/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/thing/entity.py -------------------------------------------------------------------------------- /typedb/api/concept/thing/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/thing/relation.py -------------------------------------------------------------------------------- /typedb/api/concept/thing/thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/thing/thing.py -------------------------------------------------------------------------------- /typedb/api/concept/type/annotation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/annotation.py -------------------------------------------------------------------------------- /typedb/api/concept/type/attribute_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/attribute_type.py -------------------------------------------------------------------------------- /typedb/api/concept/type/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/entity_type.py -------------------------------------------------------------------------------- /typedb/api/concept/type/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/relation_type.py -------------------------------------------------------------------------------- /typedb/api/concept/type/role_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/role_type.py -------------------------------------------------------------------------------- /typedb/api/concept/type/thing_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/thing_type.py -------------------------------------------------------------------------------- /typedb/api/concept/type/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/type/type.py -------------------------------------------------------------------------------- /typedb/api/concept/value/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/concept/value/value.py -------------------------------------------------------------------------------- /typedb/api/connection/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/client.py -------------------------------------------------------------------------------- /typedb/api/connection/credential.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/credential.py -------------------------------------------------------------------------------- /typedb/api/connection/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/database.py -------------------------------------------------------------------------------- /typedb/api/connection/options.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/options.py -------------------------------------------------------------------------------- /typedb/api/connection/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/session.py -------------------------------------------------------------------------------- /typedb/api/connection/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/connection/transaction.py -------------------------------------------------------------------------------- /typedb/api/logic/explanation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/logic/explanation.py -------------------------------------------------------------------------------- /typedb/api/logic/logic_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/logic/logic_manager.py -------------------------------------------------------------------------------- /typedb/api/logic/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/logic/rule.py -------------------------------------------------------------------------------- /typedb/api/query/query_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/query/query_manager.py -------------------------------------------------------------------------------- /typedb/api/user/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/api/user/user.py -------------------------------------------------------------------------------- /typedb/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/client.py -------------------------------------------------------------------------------- /typedb/common/exception.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/common/exception.py -------------------------------------------------------------------------------- /typedb/common/iterator_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/common/iterator_wrapper.py -------------------------------------------------------------------------------- /typedb/common/label.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/common/label.py -------------------------------------------------------------------------------- /typedb/common/native_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/common/native_wrapper.py -------------------------------------------------------------------------------- /typedb/common/transitivity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/common/transitivity.py -------------------------------------------------------------------------------- /typedb/concept/answer/concept_map.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/answer/concept_map.py -------------------------------------------------------------------------------- /typedb/concept/answer/concept_map_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/answer/concept_map_group.py -------------------------------------------------------------------------------- /typedb/concept/answer/numeric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/answer/numeric.py -------------------------------------------------------------------------------- /typedb/concept/answer/numeric_group.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/answer/numeric_group.py -------------------------------------------------------------------------------- /typedb/concept/concept.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/concept.py -------------------------------------------------------------------------------- /typedb/concept/concept_factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/concept_factory.py -------------------------------------------------------------------------------- /typedb/concept/concept_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/concept_manager.py -------------------------------------------------------------------------------- /typedb/concept/thing/attribute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/thing/attribute.py -------------------------------------------------------------------------------- /typedb/concept/thing/entity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/thing/entity.py -------------------------------------------------------------------------------- /typedb/concept/thing/relation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/thing/relation.py -------------------------------------------------------------------------------- /typedb/concept/thing/thing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/thing/thing.py -------------------------------------------------------------------------------- /typedb/concept/type/attribute_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/attribute_type.py -------------------------------------------------------------------------------- /typedb/concept/type/entity_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/entity_type.py -------------------------------------------------------------------------------- /typedb/concept/type/relation_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/relation_type.py -------------------------------------------------------------------------------- /typedb/concept/type/role_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/role_type.py -------------------------------------------------------------------------------- /typedb/concept/type/thing_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/thing_type.py -------------------------------------------------------------------------------- /typedb/concept/type/type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/type/type.py -------------------------------------------------------------------------------- /typedb/concept/value/value.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/concept/value/value.py -------------------------------------------------------------------------------- /typedb/connection/client.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/connection/client.py -------------------------------------------------------------------------------- /typedb/connection/database.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/connection/database.py -------------------------------------------------------------------------------- /typedb/connection/database_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/connection/database_manager.py -------------------------------------------------------------------------------- /typedb/connection/session.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/connection/session.py -------------------------------------------------------------------------------- /typedb/connection/transaction.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/connection/transaction.py -------------------------------------------------------------------------------- /typedb/logic/explanation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/logic/explanation.py -------------------------------------------------------------------------------- /typedb/logic/logic_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/logic/logic_manager.py -------------------------------------------------------------------------------- /typedb/logic/rule.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/logic/rule.py -------------------------------------------------------------------------------- /typedb/query/query_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/query/query_manager.py -------------------------------------------------------------------------------- /typedb/user/user.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/user/user.py -------------------------------------------------------------------------------- /typedb/user/user_manager.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/typedb/typedb-driver-python/HEAD/typedb/user/user_manager.py --------------------------------------------------------------------------------