duckdb 1.4.1.dev6__cp313-cp313-macosx_11_0_arm64.whl → 1.4.2.dev1__cp313-cp313-macosx_11_0_arm64.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.cpython-313-darwin.so +0 -0
  5. adbc_driver_duckdb/__init__.py +50 -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.4.1.dev6.dist-info → duckdb-1.4.2.dev1.dist-info}/METADATA +16 -16
  48. duckdb-1.4.2.dev1.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.4.1.dev6.dist-info/RECORD +0 -47
  54. /duckdb/{value/__init__.pyi → py.typed} +0 -0
  55. {duckdb-1.4.1.dev6.dist-info → duckdb-1.4.2.dev1.dist-info}/WHEEL +0 -0
  56. {duckdb-1.4.1.dev6.dist-info → duckdb-1.4.2.dev1.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.cpython-313-darwin.so,sha256=35iYHBUAbILsb7DAyOe-OIS7yexxQYC4fHQelhmpTMc,43376512
2
- duckdb/polars_io.py,sha256=aYACypblQSzRRTM15p_MHBsC87bij3OkqZEJMIVYXtw,7984
3
- duckdb/__init__.pyi,sha256=cor15j4NLa9RUe_TTUniloROcJ368UXRDBJNBV-xHaA,47644
4
- duckdb/filesystem.py,sha256=9lhkbYbJ8pa__FeZaXe6xDyHRJP-z4t9W7rMe8Adz34,996
5
- duckdb/__init__.py,sha256=h-yC_OlYI04Ijah-YDC6PUZYQzcS7lB8Z1V5_uGcJUA,8765
6
- duckdb/bytes_io_wrapper.py,sha256=6tEb7dzuokqSEuQrtBGc546YyOncitfi6gUOO3OLIus,2984
7
- duckdb/udf.py,sha256=c4eYs6p9R5UMyQjcHNoLTkshSoKutkVF4xwMlq0fljg,674
8
- duckdb/experimental/__init__.py,sha256=dsaou_Axm4W4uMylH4NVC6KtR1JHjR0Zdni0lilAih8,44
9
- duckdb/experimental/spark/exception.py,sha256=XLo4lz4wra6MJsbZ0MWnU0HWJx2UfUHUhN_q5dzFVyM,535
10
- duckdb/experimental/spark/_typing.py,sha256=EZufFA9FUhowxCjdEWt_KM5vb3SKwoM917K9_3YG4mc,1525
11
- duckdb/experimental/spark/LICENSE,sha256=_1qknFLpgwYnWC6YVPp2gn0Zw7BAuFYWLRctcqnpUGc,13387
12
- duckdb/experimental/spark/_globals.py,sha256=EGZPzdav7a5g51-U2SXqHCA11aJU35kwjUbQNqSzttk,2434
13
- duckdb/experimental/spark/conf.py,sha256=Z9WueVizlE-8DSRp9q5wiJbNvcCBIQJhHW9XyUpwioY,1398
14
- duckdb/experimental/spark/__init__.py,sha256=z8_tXnY5VCEUu6fjNVH8ZllFq_Y4iPAcrWHmPg1v1So,284
15
- duckdb/experimental/spark/context.py,sha256=QxyKtpi01ZV6wTqRM-k-gMVbzoJDG1pj66eP-TK3XhA,6209
16
- duckdb/experimental/spark/errors/error_classes.py,sha256=ZIhQcpvC2wH1FzM7fa7UQBUIeQ1bRT-VArbC6TT0kx0,27249
17
- duckdb/experimental/spark/errors/__init__.py,sha256=RDhcD08gQIzO1JVFZUu-wRj1td2NOvro_Qsyy3MIexs,2146
18
- duckdb/experimental/spark/errors/utils.py,sha256=gHmg1yrN6rATUoHGuzsoDeAl-LULRnML6iR_dlMwUTk,4438
19
- duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=c0bKYjIaffoqkm7ZgaR53O64pH33BYzSzFxNFPweSjU,784
20
- duckdb/experimental/spark/errors/exceptions/base.py,sha256=k0WMP7EoIhtYqbYSufyYLYnKY2uzCB8WMg74-JZjnqI,5360
21
- duckdb/experimental/spark/sql/catalog.py,sha256=K8W85ccXlN8LzRZAkh5zpFvErpNiDySgAOL0rAfEAEw,2284
22
- duckdb/experimental/spark/sql/functions.py,sha256=5hD64AjJbO5ER0xtEnTlmVoOINLLQ3O0ooVyk_SUcus,173108
23
- duckdb/experimental/spark/sql/_typing.py,sha256=5CwczuoxRLcIwnfGT4OWC19n6ctsC8JFKNjY4yQ-pFE,2361
24
- duckdb/experimental/spark/sql/dataframe.py,sha256=8PvzieUlTTEyqqLgR8IJFtJH9E8UGH6vL3mlFz-EAQI,46398
25
- duckdb/experimental/spark/sql/conf.py,sha256=8yIcAD8S4T1f5L1MnjMf86LXxBABu6lbJJJrd_l15Y8,656
26
- duckdb/experimental/spark/sql/session.py,sha256=TWrUyepTAIFWMavYwguPiNHVGpc3RHQXK63MQfhQS1A,8998
27
- duckdb/experimental/spark/sql/type_utils.py,sha256=YoUxq5KhwfHb4CCIKaEAIbM3R3Ol5_XErjbRJ30eICA,2954
28
- duckdb/experimental/spark/sql/__init__.py,sha256=R83MKgikp6bwNv9MV_MV14gQFwOJA5f_BhaTWNu0B4w,256
29
- duckdb/experimental/spark/sql/types.py,sha256=ArGYPPFDIV8seol7EdxiJPZttV5Ld8dzN3TEmCUDNaI,39159
30
- duckdb/experimental/spark/sql/readwriter.py,sha256=q6Nldqeg5FEzqcc0ydzlJPfOkpq8Wrx9-527mWPP9Ts,17301
31
- duckdb/experimental/spark/sql/group.py,sha256=d2rojDeTlB1aRZU0TFFSdGwO6biXO8o-gLLiKmFFnNA,13275
32
- duckdb/experimental/spark/sql/udf.py,sha256=wul2wqnbV4d9zFmDw4G6ZEiRddUkPHat3HY1xL5u5dQ,1081
33
- duckdb/experimental/spark/sql/streaming.py,sha256=XsXZjtpbeuGHQGXogzvApEUQxe4o6-YHvy6z4AcdT5o,1023
34
- duckdb/experimental/spark/sql/column.py,sha256=J0RJrR74WN-8WWXMWHtCkqztcrYQ8WuSfwOc4zJlUlU,10708
35
- duckdb/query_graph/__main__.py,sha256=82OHL1N6aB9TlbmKJny8w_EdxJnijq_pEto1NOT0hCQ,11259
36
- duckdb/value/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
37
- duckdb/value/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
38
- duckdb/value/constant/__init__.pyi,sha256=LFEjUoKOoLQCXjwcR7t5o6CFNaiZQyUygFz-gQHgP1Y,3279
39
- duckdb/value/constant/__init__.py,sha256=XMKbHy9xVtsA59G5053m_UTNAGzthAVxJbA8ghKqmJw,5516
40
- duckdb/typing/__init__.pyi,sha256=bOkRuedw-3Cw7KP6I3DVdQQBS_uGdnPsyki8H417hN8,928
41
- duckdb/typing/__init__.py,sha256=1uy_ItOCRLLVqzUe_jL1qC3-SGf_bb-HvwW1QOrKSXA,854
42
- duckdb/functional/__init__.pyi,sha256=HsIdFEv3h32XH06Jg2ppRjg038uWzjWapyJ51A_LoI4,774
43
- duckdb/functional/__init__.py,sha256=Ntz7FBorwQ18ldEo-KJpSWIP33S8WGNZlsyva0zG7tQ,212
44
- duckdb-1.4.1.dev6.dist-info/RECORD,,
45
- duckdb-1.4.1.dev6.dist-info/WHEEL,sha256=RKB2kgklE3rgz0xlIuKYm-O5gcSzEoMvCOiEOfbYfDs,141
46
- duckdb-1.4.1.dev6.dist-info/METADATA,sha256=esuDUukSPRJTUw03rkc7on4JOnuKOpWj8PHZjLrtyJE,14100
47
- duckdb-1.4.1.dev6.dist-info/licenses/LICENSE,sha256=fhf9MSSfqHXLOxxeBcbD6Zt1UJ9qKATKF2wheDTeHcs,1072
File without changes