From 1eb7e91d637f0198d932e71689397327db9eb38e Mon Sep 17 00:00:00 2001 From: Aleksey Veresov Date: Fri, 5 Jul 2024 16:11:56 +0200 Subject: [PATCH] Create aliases for tags, inode, tags_api --- python/hsfs/core/inode.py | 20 ++++++++++++++++++++ python/hsfs/core/tags_api.py | 20 ++++++++++++++++++++ python/hsfs/tag.py | 20 ++++++++++++++++++++ 3 files changed, 60 insertions(+) create mode 100644 python/hsfs/core/inode.py create mode 100644 python/hsfs/core/tags_api.py create mode 100644 python/hsfs/tag.py diff --git a/python/hsfs/core/inode.py b/python/hsfs/core/inode.py new file mode 100644 index 000000000..77a701a31 --- /dev/null +++ b/python/hsfs/core/inode.py @@ -0,0 +1,20 @@ +# +# Copyright 2024 Hopsworks AB +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this 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. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +from hopsworks.core.inode import Inode + + +__all__ = [Inode] diff --git a/python/hsfs/core/tags_api.py b/python/hsfs/core/tags_api.py new file mode 100644 index 000000000..2b7841aa0 --- /dev/null +++ b/python/hsfs/core/tags_api.py @@ -0,0 +1,20 @@ +# +# Copyright 2024 Hopsworks AB +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this 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. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +from hopsworks.core.tags_api import TagsApi + + +__all__ = [TagsApi] diff --git a/python/hsfs/tag.py b/python/hsfs/tag.py new file mode 100644 index 000000000..1b45b38e8 --- /dev/null +++ b/python/hsfs/tag.py @@ -0,0 +1,20 @@ +# +# Copyright 2024 Hopsworks AB +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this 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. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +from hopsworks.tag import Tag + + +__all__ = [Tag]