diff --git a/python/datafusion/object_store.py b/python/datafusion/object_store.py index a9bb83d29..c927e7614 100644 --- a/python/datafusion/object_store.py +++ b/python/datafusion/object_store.py @@ -18,6 +18,18 @@ from ._internal import object_store +AmazonS3 = object_store.AmazonS3 +GoogleCloud = object_store.GoogleCloud +LocalFileSystem = object_store.LocalFileSystem +MicrosoftAzure = object_store.MicrosoftAzure + +__all__ = [ + "AmazonS3", + "GoogleCloud", + "LocalFileSystem", + "MicrosoftAzure", +] + def __getattr__(name): return getattr(object_store, name)