duckdb 1.5.0.dev37__cp312-cp312-win_amd64.whl → 1.5.0.dev94__cp312-cp312-win_amd64.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.

Potentially problematic release.


This version of duckdb might be problematic. Click here for more details.

Files changed (56) hide show
  1. _duckdb-stubs/__init__.pyi +1443 -0
  2. _duckdb-stubs/_func.pyi +46 -0
  3. _duckdb-stubs/_sqltypes.pyi +75 -0
  4. _duckdb.cp312-win_amd64.pyd +0 -0
  5. adbc_driver_duckdb/__init__.py +49 -0
  6. adbc_driver_duckdb/dbapi.py +115 -0
  7. duckdb/__init__.py +341 -435
  8. duckdb/_dbapi_type_object.py +231 -0
  9. duckdb/_version.py +22 -0
  10. duckdb/bytes_io_wrapper.py +12 -9
  11. duckdb/experimental/__init__.py +2 -1
  12. duckdb/experimental/spark/__init__.py +3 -4
  13. duckdb/experimental/spark/_globals.py +8 -8
  14. duckdb/experimental/spark/_typing.py +7 -9
  15. duckdb/experimental/spark/conf.py +16 -15
  16. duckdb/experimental/spark/context.py +60 -44
  17. duckdb/experimental/spark/errors/__init__.py +33 -35
  18. duckdb/experimental/spark/errors/error_classes.py +1 -1
  19. duckdb/experimental/spark/errors/exceptions/__init__.py +1 -1
  20. duckdb/experimental/spark/errors/exceptions/base.py +39 -88
  21. duckdb/experimental/spark/errors/utils.py +11 -16
  22. duckdb/experimental/spark/exception.py +9 -6
  23. duckdb/experimental/spark/sql/__init__.py +5 -5
  24. duckdb/experimental/spark/sql/_typing.py +8 -15
  25. duckdb/experimental/spark/sql/catalog.py +21 -20
  26. duckdb/experimental/spark/sql/column.py +48 -55
  27. duckdb/experimental/spark/sql/conf.py +9 -8
  28. duckdb/experimental/spark/sql/dataframe.py +185 -233
  29. duckdb/experimental/spark/sql/functions.py +1222 -1248
  30. duckdb/experimental/spark/sql/group.py +56 -52
  31. duckdb/experimental/spark/sql/readwriter.py +80 -94
  32. duckdb/experimental/spark/sql/session.py +64 -59
  33. duckdb/experimental/spark/sql/streaming.py +9 -10
  34. duckdb/experimental/spark/sql/type_utils.py +67 -65
  35. duckdb/experimental/spark/sql/types.py +309 -345
  36. duckdb/experimental/spark/sql/udf.py +6 -6
  37. duckdb/filesystem.py +26 -16
  38. duckdb/func/__init__.py +3 -0
  39. duckdb/functional/__init__.py +12 -16
  40. duckdb/polars_io.py +130 -83
  41. duckdb/query_graph/__main__.py +91 -96
  42. duckdb/sqltypes/__init__.py +63 -0
  43. duckdb/typing/__init__.py +18 -8
  44. duckdb/udf.py +10 -5
  45. duckdb/value/__init__.py +1 -0
  46. duckdb/value/constant/__init__.py +62 -60
  47. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/METADATA +12 -4
  48. duckdb-1.5.0.dev94.dist-info/RECORD +52 -0
  49. duckdb/__init__.pyi +0 -713
  50. duckdb/functional/__init__.pyi +0 -31
  51. duckdb/typing/__init__.pyi +0 -36
  52. duckdb/value/constant/__init__.pyi +0 -115
  53. duckdb-1.5.0.dev37.dist-info/RECORD +0 -47
  54. /duckdb/{value/__init__.pyi → py.typed} +0 -0
  55. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/WHEEL +0 -0
  56. {duckdb-1.5.0.dev37.dist-info → duckdb-1.5.0.dev94.dist-info}/licenses/LICENSE +0 -0
@@ -1,31 +0,0 @@
1
- from typing import Dict
2
-
3
- SPECIAL: FunctionNullHandling
4
- DEFAULT: FunctionNullHandling
5
-
6
- NATIVE: PythonUDFType
7
- ARROW: PythonUDFType
8
-
9
- class FunctionNullHandling:
10
- DEFAULT: FunctionNullHandling
11
- SPECIAL: FunctionNullHandling
12
- def __int__(self) -> int: ...
13
- def __index__(self) -> int: ...
14
- @property
15
- def __members__(self) -> Dict[str, FunctionNullHandling]: ...
16
- @property
17
- def name(self) -> str: ...
18
- @property
19
- def value(self) -> int: ...
20
-
21
- class PythonUDFType:
22
- NATIVE: PythonUDFType
23
- ARROW: PythonUDFType
24
- def __int__(self) -> int: ...
25
- def __index__(self) -> int: ...
26
- @property
27
- def __members__(self) -> Dict[str, PythonUDFType]: ...
28
- @property
29
- def name(self) -> str: ...
30
- @property
31
- def value(self) -> int: ...
@@ -1,36 +0,0 @@
1
- from duckdb import DuckDBPyConnection
2
-
3
- SQLNULL: DuckDBPyType
4
- BOOLEAN: DuckDBPyType
5
- TINYINT: DuckDBPyType
6
- UTINYINT: DuckDBPyType
7
- SMALLINT: DuckDBPyType
8
- USMALLINT: DuckDBPyType
9
- INTEGER: DuckDBPyType
10
- UINTEGER: DuckDBPyType
11
- BIGINT: DuckDBPyType
12
- UBIGINT: DuckDBPyType
13
- HUGEINT: DuckDBPyType
14
- UHUGEINT: DuckDBPyType
15
- UUID: DuckDBPyType
16
- FLOAT: DuckDBPyType
17
- DOUBLE: DuckDBPyType
18
- DATE: DuckDBPyType
19
- TIMESTAMP: DuckDBPyType
20
- TIMESTAMP_MS: DuckDBPyType
21
- TIMESTAMP_NS: DuckDBPyType
22
- TIMESTAMP_S: DuckDBPyType
23
- TIME: DuckDBPyType
24
- TIME_TZ: DuckDBPyType
25
- TIMESTAMP_TZ: DuckDBPyType
26
- VARCHAR: DuckDBPyType
27
- BLOB: DuckDBPyType
28
- BIT: DuckDBPyType
29
- INTERVAL: DuckDBPyType
30
-
31
- class DuckDBPyType:
32
- def __init__(self, type_str: str, connection: DuckDBPyConnection = ...) -> None: ...
33
- def __repr__(self) -> str: ...
34
- def __eq__(self, other) -> bool: ...
35
- def __getattr__(self, name: str): DuckDBPyType
36
- def __getitem__(self, name: str): DuckDBPyType
@@ -1,115 +0,0 @@
1
- from duckdb.typing import DuckDBPyType
2
- from typing import Any
3
-
4
- class NullValue(Value):
5
- def __init__(self) -> None: ...
6
- def __repr__(self) -> str: ...
7
-
8
- class BooleanValue(Value):
9
- def __init__(self, object: Any) -> None: ...
10
- def __repr__(self) -> str: ...
11
-
12
- class UnsignedBinaryValue(Value):
13
- def __init__(self, object: Any) -> None: ...
14
- def __repr__(self) -> str: ...
15
-
16
- class UnsignedShortValue(Value):
17
- def __init__(self, object: Any) -> None: ...
18
- def __repr__(self) -> str: ...
19
-
20
- class UnsignedIntegerValue(Value):
21
- def __init__(self, object: Any) -> None: ...
22
- def __repr__(self) -> str: ...
23
-
24
- class UnsignedLongValue(Value):
25
- def __init__(self, object: Any) -> None: ...
26
- def __repr__(self) -> str: ...
27
-
28
- class BinaryValue(Value):
29
- def __init__(self, object: Any) -> None: ...
30
- def __repr__(self) -> str: ...
31
-
32
- class ShortValue(Value):
33
- def __init__(self, object: Any) -> None: ...
34
- def __repr__(self) -> str: ...
35
-
36
- class IntegerValue(Value):
37
- def __init__(self, object: Any) -> None: ...
38
- def __repr__(self) -> str: ...
39
-
40
- class LongValue(Value):
41
- def __init__(self, object: Any) -> None: ...
42
- def __repr__(self) -> str: ...
43
-
44
- class HugeIntegerValue(Value):
45
- def __init__(self, object: Any) -> None: ...
46
- def __repr__(self) -> str: ...
47
-
48
- class FloatValue(Value):
49
- def __init__(self, object: Any) -> None: ...
50
- def __repr__(self) -> str: ...
51
-
52
- class DoubleValue(Value):
53
- def __init__(self, object: Any) -> None: ...
54
- def __repr__(self) -> str: ...
55
-
56
- class DecimalValue(Value):
57
- def __init__(self, object: Any, width: int, scale: int) -> None: ...
58
- def __repr__(self) -> str: ...
59
-
60
- class StringValue(Value):
61
- def __init__(self, object: Any) -> None: ...
62
- def __repr__(self) -> str: ...
63
-
64
- class UUIDValue(Value):
65
- def __init__(self, object: Any) -> None: ...
66
- def __repr__(self) -> str: ...
67
-
68
- class BitValue(Value):
69
- def __init__(self, object: Any) -> None: ...
70
- def __repr__(self) -> str: ...
71
-
72
- class BlobValue(Value):
73
- def __init__(self, object: Any) -> None: ...
74
- def __repr__(self) -> str: ...
75
-
76
- class DateValue(Value):
77
- def __init__(self, object: Any) -> None: ...
78
- def __repr__(self) -> str: ...
79
-
80
- class IntervalValue(Value):
81
- def __init__(self, object: Any) -> None: ...
82
- def __repr__(self) -> str: ...
83
-
84
- class TimestampValue(Value):
85
- def __init__(self, object: Any) -> None: ...
86
- def __repr__(self) -> str: ...
87
-
88
- class TimestampSecondValue(Value):
89
- def __init__(self, object: Any) -> None: ...
90
- def __repr__(self) -> str: ...
91
-
92
- class TimestampMilisecondValue(Value):
93
- def __init__(self, object: Any) -> None: ...
94
- def __repr__(self) -> str: ...
95
-
96
- class TimestampNanosecondValue(Value):
97
- def __init__(self, object: Any) -> None: ...
98
- def __repr__(self) -> str: ...
99
-
100
- class TimestampTimeZoneValue(Value):
101
- def __init__(self, object: Any) -> None: ...
102
- def __repr__(self) -> str: ...
103
-
104
- class TimeValue(Value):
105
- def __init__(self, object: Any) -> None: ...
106
- def __repr__(self) -> str: ...
107
-
108
- class TimeTimeZoneValue(Value):
109
- def __init__(self, object: Any) -> None: ...
110
- def __repr__(self) -> str: ...
111
-
112
-
113
- class Value:
114
- def __init__(self, object: Any, type: DuckDBPyType) -> None: ...
115
- def __repr__(self) -> str: ...
@@ -1,47 +0,0 @@
1
- _duckdb.cp312-win_amd64.pyd,sha256=yVCCX6Yw_9fELH9-Pek88Qdyl882tiP35_mMGYc7Of4,35439104
2
- duckdb/__init__.py,sha256=GmG-Z_dhIy3P8e-AuGz0-rkduKa6SqMqsIot7MMJ1CA,9240
3
- duckdb/__init__.pyi,sha256=_WQXdLMIiVjpJqSdHGm4a4-EjpzOPU5Mcc0AJEh3G6I,48357
4
- duckdb/bytes_io_wrapper.py,sha256=o5WcKIHA6EoZTsssRNeoohLeGtCPKY-8yQw-iP1k0SY,3050
5
- duckdb/experimental/__init__.py,sha256=JTAdXBrgCCenIGe3vzm7a3BuE1jOmgd9yMHG1ZEFSQA,46
6
- duckdb/experimental/spark/__init__.py,sha256=BKd5s6LUBabQjxliNhs4lAZx48a81Ch5E2NHS-udU3A,291
7
- duckdb/experimental/spark/_globals.py,sha256=cYR8qr7E5fMAp7vsM8CjpwoLI4-_tnuhRS4qf7b0Vr8,2511
8
- duckdb/experimental/spark/_typing.py,sha256=D4Q7AvSyVgNxnmJc3nYKgt3S7cgoRbf-YWo-8Mu54jI,1573
9
- duckdb/experimental/spark/conf.py,sha256=N3PqcMyyNlgJQdjLKTVA_UH_isp7657tcvurp9CU0DE,1443
10
- duckdb/experimental/spark/context.py,sha256=_1A8A7mlF1QSdeQ0XjPv2ImhN4ajziW7lxo2L4Ul3Ao,6373
11
- duckdb/experimental/spark/errors/__init__.py,sha256=JikuqdfaCy_Nti4A_yXYk-z1m5sXab83rovIXjKfoH4,2218
12
- duckdb/experimental/spark/errors/error_classes.py,sha256=5xPdevsInQCcA8NI7Hytzh1mrmX5WvHxe4jUKzocwUc,28167
13
- duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=skcDKqKaQuFEltWKiUwvSpw1Kzelup5daCFKByxT-Gk,800
14
- duckdb/experimental/spark/errors/exceptions/base.py,sha256=p3Pp5GQIWLBK-ApWWGOCQJ1YA0LgWgZ9_N94O08Rj-U,5577
15
- duckdb/experimental/spark/errors/utils.py,sha256=EnzRDKIciMDORkbZKWrn5KJuZkKtBSCpX9ok7qmRfEo,4554
16
- duckdb/experimental/spark/exception.py,sha256=r3hWeu2EZ9ri0PAyTw38aD7G5qKVsOi8YgtgXMiGfts,550
17
- duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
18
- duckdb/experimental/spark/sql/__init__.py,sha256=e_-3pLvS6PteoCxxCRgQHD_Mpd0JBXpbiNXTU47yjQ4,263
19
- duckdb/experimental/spark/sql/_typing.py,sha256=FyJ1vvx5et2yH_YatPaLtI4Z40BK7Xwdtvw-GV13bTw,2454
20
- duckdb/experimental/spark/sql/catalog.py,sha256=_8bruV2yeUk0HRhnY9lsyGRyXPLW1gtODU3V4UfIYJI,2362
21
- duckdb/experimental/spark/sql/column.py,sha256=SJZWSZZTohHw7wTrS9DjpuzmPtid5Cee78I0o3Vi5hY,11076
22
- duckdb/experimental/spark/sql/conf.py,sha256=eB1W0-wUa_fNJ0AAFMNxIGmhqr9a0IhPyr9Xesy-pes,679
23
- duckdb/experimental/spark/sql/dataframe.py,sha256=BBeacpAuo9cjvVjC1qAsEJk5rddasuy9mIyffvGzQqM,47835
24
- duckdb/experimental/spark/sql/functions.py,sha256=V_oFdX9eG-ZC9-y_1wqwYRZlge4ZmVBqxJE_BWzSU_Q,179329
25
- duckdb/experimental/spark/sql/group.py,sha256=DLX16aSVFMV6xRvVJ1KCh7um09qTYJb3jQv_FQtTvy4,13695
26
- duckdb/experimental/spark/sql/readwriter.py,sha256=ie5ENJX9Mxy6eBP9oNS-t5KMEQ3pfHfPvEdXDrVWGt0,17750
27
- duckdb/experimental/spark/sql/session.py,sha256=XxzgYp78ZrDHyUcH42buJmODQo21-61YWF5hI3fRwsU,9290
28
- duckdb/experimental/spark/sql/streaming.py,sha256=B0TyLDqG79fLU6Fz7x6TxmcoY5_o0bxziT1k479uMB8,1060
29
- duckdb/experimental/spark/sql/type_utils.py,sha256=ks6YA2-4JUOHv3xrN3O6nT0d76CKVVxS0qNSS028uBE,3059
30
- duckdb/experimental/spark/sql/types.py,sha256=Qqx9R65HA-WUT9MlGzy9b25RqfVdn_BW_ms6_DNRBmA,40434
31
- duckdb/experimental/spark/sql/udf.py,sha256=hwWIvO0o3ipCGtmx9aUtpyC10PQ3NyQL102QB3Q1VqU,1118
32
- duckdb/filesystem.py,sha256=WMVzCQ2gbe9T60hMw7aAajVqUOHRJvG0XvfgMkKi6hg,1019
33
- duckdb/functional/__init__.py,sha256=d8qY_IjItw-81ZWXnE_cLmgmEeHzRcmwaEPqHKf_ej8,229
34
- duckdb/functional/__init__.pyi,sha256=02Yn2rP7YVGnJmCZsXnuvteurPc60qgfy0JEyTi5DNA,805
35
- duckdb/polars_io.py,sha256=0ezW1ZiII_A3N4GjJDDieCKb6uE4swZXFMxVUgEOmPQ,8221
36
- duckdb/query_graph/__main__.py,sha256=BWDGf2LKiSXHhQWbIuvc-IXTjE_DqYISGvmtSBBYcx0,11622
37
- duckdb/typing/__init__.py,sha256=Z5Bd4OzV8NWzrzeo06evSDTbwcknZBAgzCapxgaKEWM,915
38
- duckdb/typing/__init__.pyi,sha256=sshKVD1s7TqWGCZvVKMVmZe64SsRUZHIt8f5gZ_CPxA,963
39
- duckdb/udf.py,sha256=-Y1DTF3uZgvufqO7ihvWXbFqWHu8LSME48NLyOeQKEk,693
40
- duckdb/value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
- duckdb/value/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
42
- duckdb/value/constant/__init__.py,sha256=cbTGO63hXI7tkoa6Sjw2S_PJYV6IAC8R88n2yVzPuNo,5784
43
- duckdb/value/constant/__init__.pyi,sha256=Q51_wc2jVyBE7tzeH5X49e6XCs4JJD8a9asX-nqw4ow,3394
44
- duckdb-1.5.0.dev37.dist-info/METADATA,sha256=ZkahqIdW8gNF9l3mZlxJNGqyUqFudI7pn-T3p0tIUSw,3251
45
- duckdb-1.5.0.dev37.dist-info/WHEEL,sha256=chqeLhPBtPdrOoreR34YMcofSk3yWDQhkrsDJ2n48LU,106
46
- duckdb-1.5.0.dev37.dist-info/licenses/LICENSE,sha256=QACFao8AflP8UxUFM9ZEvK78ZLdGHkPBTMudPWalnNI,1079
47
- duckdb-1.5.0.dev37.dist-info/RECORD,,
File without changes