diff --git a/src/caosdb/__init__.py b/src/caosdb/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..ee00f5854aacc057c701567cd5ecefc9c1d47267 --- /dev/null +++ b/src/caosdb/__init__.py @@ -0,0 +1,6 @@ + +from linkahead import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/apiutils.py b/src/caosdb/apiutils.py new file mode 100644 index 0000000000000000000000000000000000000000..4f49a37b0c67b61e657a47d9a9ab62b4b0ad987c --- /dev/null +++ b/src/caosdb/apiutils.py @@ -0,0 +1,6 @@ + +from linkahead.apiutils import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.apiutils`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/cached.py b/src/caosdb/cached.py new file mode 100644 index 0000000000000000000000000000000000000000..4ac13fc6866324b04f94195f2e447aff2b303069 --- /dev/null +++ b/src/caosdb/cached.py @@ -0,0 +1,6 @@ + +from linkahead.cached import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.cached`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/__init__.py b/src/caosdb/common/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..3d765c2a092c99c8c0eba62b91e47124d449bac2 --- /dev/null +++ b/src/caosdb/common/__init__.py @@ -0,0 +1,6 @@ + +from linkahead.common import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/administration.py b/src/caosdb/common/administration.py new file mode 100644 index 0000000000000000000000000000000000000000..b44d52b1587efad10949de3430f1e8063a191821 --- /dev/null +++ b/src/caosdb/common/administration.py @@ -0,0 +1,6 @@ + +from linkahead.common.administration import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.administration`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/datatype.py b/src/caosdb/common/datatype.py new file mode 100644 index 0000000000000000000000000000000000000000..7c61728aba608444ba172df596c0bc3d48c6a89e --- /dev/null +++ b/src/caosdb/common/datatype.py @@ -0,0 +1,6 @@ + +from linkahead.common.datatype import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.datatype`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/models.py b/src/caosdb/common/models.py new file mode 100644 index 0000000000000000000000000000000000000000..4889685d487dcdd7642b8f573091a754a8bc95ce --- /dev/null +++ b/src/caosdb/common/models.py @@ -0,0 +1,6 @@ + +from linkahead.common.models import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.models`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/state.py b/src/caosdb/common/state.py new file mode 100644 index 0000000000000000000000000000000000000000..e69fc66345f36c355dcdbf7825583de0a1219c97 --- /dev/null +++ b/src/caosdb/common/state.py @@ -0,0 +1,6 @@ + +from linkahead.common.state import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.state`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/timezone.py b/src/caosdb/common/timezone.py new file mode 100644 index 0000000000000000000000000000000000000000..1b6ab31be17ef47ff0519bc53479a2958441ca46 --- /dev/null +++ b/src/caosdb/common/timezone.py @@ -0,0 +1,6 @@ + +from linkahead.common.timezone import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.timezone`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/utils.py b/src/caosdb/common/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..2fb496219409f8bdbea57f4b4f0f306e3ff14128 --- /dev/null +++ b/src/caosdb/common/utils.py @@ -0,0 +1,6 @@ + +from linkahead.common.utils import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.utils`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/common/versioning.py b/src/caosdb/common/versioning.py new file mode 100644 index 0000000000000000000000000000000000000000..957e8d0b1485bb90bc89787dc1962d0487dd30c3 --- /dev/null +++ b/src/caosdb/common/versioning.py @@ -0,0 +1,6 @@ + +from linkahead.common.versioning import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.common.versioning`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/configuration.py b/src/caosdb/configuration.py new file mode 100644 index 0000000000000000000000000000000000000000..07a0e99c77bca207292d7fcb3add5d8a06303fdb --- /dev/null +++ b/src/caosdb/configuration.py @@ -0,0 +1,6 @@ + +from linkahead.configuration import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.configuration`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/__init__.py b/src/caosdb/connection/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..bc9dc0cf93eb83588d2d7b13334ce6383b1c8a7d --- /dev/null +++ b/src/caosdb/connection/__init__.py @@ -0,0 +1,6 @@ + +from linkahead.connection import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/__init__.py b/src/caosdb/connection/authentication/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..cad5725dc1937940812a3ec8abea6a47763210f3 --- /dev/null +++ b/src/caosdb/connection/authentication/__init__.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/auth_token.py b/src/caosdb/connection/authentication/auth_token.py new file mode 100644 index 0000000000000000000000000000000000000000..fb715ef218fd1fabacde2e060713d89bf24bf546 --- /dev/null +++ b/src/caosdb/connection/authentication/auth_token.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.auth_token import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.auth_token`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/external_credentials_provider.py b/src/caosdb/connection/authentication/external_credentials_provider.py new file mode 100644 index 0000000000000000000000000000000000000000..657c8e9d7016628e48ff0edae9c770fed880260f --- /dev/null +++ b/src/caosdb/connection/authentication/external_credentials_provider.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.external_credentials_provider import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.external_credentials_provider`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/input.py b/src/caosdb/connection/authentication/input.py new file mode 100644 index 0000000000000000000000000000000000000000..d416cfbe86743382f1535ed02d4e149f6b5355ca --- /dev/null +++ b/src/caosdb/connection/authentication/input.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.input import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.input`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/interface.py b/src/caosdb/connection/authentication/interface.py new file mode 100644 index 0000000000000000000000000000000000000000..a92214632bb5e2dde3ee95413413446b340eeb70 --- /dev/null +++ b/src/caosdb/connection/authentication/interface.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.interface import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.interface`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/keyring.py b/src/caosdb/connection/authentication/keyring.py new file mode 100644 index 0000000000000000000000000000000000000000..f66041b14de039cf3a02c964fd931a6f553cbc8b --- /dev/null +++ b/src/caosdb/connection/authentication/keyring.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.keyring import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.keyring`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/pass.py b/src/caosdb/connection/authentication/pass.py new file mode 100644 index 0000000000000000000000000000000000000000..cffa34b2fa827ab214b398d22231c845d81fe533 --- /dev/null +++ b/src/caosdb/connection/authentication/pass.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.pass import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.pass`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/plain.py b/src/caosdb/connection/authentication/plain.py new file mode 100644 index 0000000000000000000000000000000000000000..5e4a8b52a5ce0f80bb076085045ed4b19824ffc5 --- /dev/null +++ b/src/caosdb/connection/authentication/plain.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.plain import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.plain`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/authentication/unauthenticated.py b/src/caosdb/connection/authentication/unauthenticated.py new file mode 100644 index 0000000000000000000000000000000000000000..b16090e51cc7cc55286ff4d5109f3aa42617b92a --- /dev/null +++ b/src/caosdb/connection/authentication/unauthenticated.py @@ -0,0 +1,6 @@ + +from linkahead.connection.authentication.unauthenticated import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.authentication.unauthenticated`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/connection.py b/src/caosdb/connection/connection.py new file mode 100644 index 0000000000000000000000000000000000000000..956f2fa3421831d9a0304d958787e8eb08ab47fb --- /dev/null +++ b/src/caosdb/connection/connection.py @@ -0,0 +1,6 @@ + +from linkahead.connection.connection import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.connection`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/encode.py b/src/caosdb/connection/encode.py new file mode 100644 index 0000000000000000000000000000000000000000..714df86244863ebcccf1e173c1a7e5ef90ec3952 --- /dev/null +++ b/src/caosdb/connection/encode.py @@ -0,0 +1,6 @@ + +from linkahead.connection.encode import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.encode`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/interface.py b/src/caosdb/connection/interface.py new file mode 100644 index 0000000000000000000000000000000000000000..77e4e57c31035bec3f133227064b8cf3b0645670 --- /dev/null +++ b/src/caosdb/connection/interface.py @@ -0,0 +1,6 @@ + +from linkahead.connection.interface import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.interface`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/mockup.py b/src/caosdb/connection/mockup.py new file mode 100644 index 0000000000000000000000000000000000000000..3adff45fc7d9a19bd06617a9be4169fe4b7fc657 --- /dev/null +++ b/src/caosdb/connection/mockup.py @@ -0,0 +1,6 @@ + +from linkahead.connection.mockup import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.mockup`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/connection/utils.py b/src/caosdb/connection/utils.py new file mode 100644 index 0000000000000000000000000000000000000000..9a6b5d9709d4daf213de902d1145e715240676ea --- /dev/null +++ b/src/caosdb/connection/utils.py @@ -0,0 +1,6 @@ + +from linkahead.connection.utils import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.connection.utils`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/exceptions.py b/src/caosdb/exceptions.py new file mode 100644 index 0000000000000000000000000000000000000000..57964faa53fee10f66881dcf5e182dd0c06b7b87 --- /dev/null +++ b/src/caosdb/exceptions.py @@ -0,0 +1,6 @@ + +from linkahead.exceptions import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.exceptions`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/high_level_api.py b/src/caosdb/high_level_api.py new file mode 100644 index 0000000000000000000000000000000000000000..458e7d8dd4d16fd82f2c139edaabef174f221766 --- /dev/null +++ b/src/caosdb/high_level_api.py @@ -0,0 +1,6 @@ + +from linkahead.high_level_api import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.high_level_api`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/__init__.py b/src/caosdb/utils/__init__.py new file mode 100644 index 0000000000000000000000000000000000000000..7401e1775dfb5975e12a8be3b0b3c68e5d0d2477 --- /dev/null +++ b/src/caosdb/utils/__init__.py @@ -0,0 +1,6 @@ + +from linkahead.utils import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/caosdb_admin.py b/src/caosdb/utils/caosdb_admin.py new file mode 100644 index 0000000000000000000000000000000000000000..d421c6fc7879a4e8aa14834746aeda4f4eced69b --- /dev/null +++ b/src/caosdb/utils/caosdb_admin.py @@ -0,0 +1,6 @@ + +from linkahead.utils.caosdb_admin import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.caosdb_admin`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/checkFileSystemConsistency.py b/src/caosdb/utils/checkFileSystemConsistency.py new file mode 100644 index 0000000000000000000000000000000000000000..279db9895f16153a515872c8c95c66dc90dbdf99 --- /dev/null +++ b/src/caosdb/utils/checkFileSystemConsistency.py @@ -0,0 +1,6 @@ + +from linkahead.utils.checkFileSystemConsistency import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.checkFileSystemConsistency`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/create_revision.py b/src/caosdb/utils/create_revision.py new file mode 100644 index 0000000000000000000000000000000000000000..6eb2ab9c792db0040f92073b937c7798a3fa3d46 --- /dev/null +++ b/src/caosdb/utils/create_revision.py @@ -0,0 +1,6 @@ + +from linkahead.utils.create_revision import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.create_revision`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/get_entity.py b/src/caosdb/utils/get_entity.py new file mode 100644 index 0000000000000000000000000000000000000000..9e41090e6e91c371c740487bc3d482a738ff2127 --- /dev/null +++ b/src/caosdb/utils/get_entity.py @@ -0,0 +1,6 @@ + +from linkahead.utils.get_entity import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.get_entity`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/git_utils.py b/src/caosdb/utils/git_utils.py new file mode 100644 index 0000000000000000000000000000000000000000..4f9d24382cdc4dd8e96b8be934c461195cf3aee9 --- /dev/null +++ b/src/caosdb/utils/git_utils.py @@ -0,0 +1,6 @@ + +from linkahead.utils.git_utils import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.git_utils`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/linkahead_admin.py b/src/caosdb/utils/linkahead_admin.py new file mode 100644 index 0000000000000000000000000000000000000000..69d2846219c57478d1037fe22e5276b6a803ac7c --- /dev/null +++ b/src/caosdb/utils/linkahead_admin.py @@ -0,0 +1,6 @@ + +from linkahead.utils.linkahead_admin import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.linkahead_admin`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/plantuml.py b/src/caosdb/utils/plantuml.py new file mode 100644 index 0000000000000000000000000000000000000000..07a401604f2ae570e2e6506ebaadbbe85d8228f7 --- /dev/null +++ b/src/caosdb/utils/plantuml.py @@ -0,0 +1,6 @@ + +from linkahead.utils.plantuml import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.plantuml`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/register_tests.py b/src/caosdb/utils/register_tests.py new file mode 100644 index 0000000000000000000000000000000000000000..7b8622891f79fb8e020a85f23dbbb42d7f66cc91 --- /dev/null +++ b/src/caosdb/utils/register_tests.py @@ -0,0 +1,6 @@ + +from linkahead.utils.register_tests import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.register_tests`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/utils/server_side_scripting.py b/src/caosdb/utils/server_side_scripting.py new file mode 100644 index 0000000000000000000000000000000000000000..ccc8980ae11aae5f51a9555b81d4cba2f567664b --- /dev/null +++ b/src/caosdb/utils/server_side_scripting.py @@ -0,0 +1,6 @@ + +from linkahead.utils.server_side_scripting import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.utils.server_side_scripting`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning) diff --git a/src/caosdb/yamlapi.py b/src/caosdb/yamlapi.py new file mode 100644 index 0000000000000000000000000000000000000000..849c9febe723e8bdc61b962f006f72fedba76653 --- /dev/null +++ b/src/caosdb/yamlapi.py @@ -0,0 +1,6 @@ + +from linkahead.yamlapi import * +from warnings import warn + +warn(("CaosDB was renamed to LinkAhead. Please import this library as `import linkahead.yamlapi`. Using the" + " old name, starting with caosdb, is deprecated."), DeprecationWarning)