We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent dc41a88 commit 84da9afCopy full SHA for 84da9af
src/datasets/__init__.py
@@ -69,4 +69,12 @@
69
)
70
from .tasks import *
71
from .utils import *
72
+from .utils import download_manager as _deprecated_download_manager
73
from .utils import logging
74
+
75
76
+# deprecated modules
77
78
79
+_deprecated_download_manager.DownloadMode = DownloadMode
80
+_deprecated_download_manager.DownloadManager = DownloadManager
src/datasets/utils/download_manager.py
@@ -0,0 +1,4 @@
1
+# deprecated, please use daatsets.download.download_manager
2
3
+DownloadMode = None
4
+DownloadManager = None
0 commit comments