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 07c1414 commit c04f9b8Copy full SHA for c04f9b8
duckdb/__init__.py
@@ -201,6 +201,9 @@
201
Value,
202
)
203
204
+# explicitly make the experimental module available
205
+from . import experimental
206
+
207
__all__: list[str] = [
208
"BinaryValue",
209
"BinderException",
@@ -316,6 +319,7 @@
316
319
"enum_type",
317
320
"execute",
318
321
"executemany",
322
+ "experimental",
323
"extract_statements",
324
"fetch_arrow_table",
325
"fetch_df",
duckdb/experimental/__init__.py
@@ -1,3 +1,5 @@
1
from . import spark # noqa: D104
2
3
-__all__ = spark.__all__
+__all__ = [
4
+ "spark",
5
+]
0 commit comments