duckdb 1.4.0.dev2849__cp312-cp312-win_amd64.whl → 1.4.2.dev1__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 (58) 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/duckdb.cp312-win_amd64.pyd → _duckdb.cp312-win_amd64.pyd +0 -0
  5. adbc_driver_duckdb/__init__.py +11 -8
  6. adbc_driver_duckdb/dbapi.py +2 -3
  7. duckdb/__init__.py +343 -388
  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 +213 -231
  29. duckdb/experimental/spark/sql/functions.py +1317 -1220
  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 +141 -82
  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.py → constant/__init__.py} +62 -60
  47. duckdb-1.4.2.dev1.dist-info/METADATA +326 -0
  48. duckdb-1.4.2.dev1.dist-info/RECORD +52 -0
  49. {duckdb-1.4.0.dev2849.dist-info → duckdb-1.4.2.dev1.dist-info}/WHEEL +1 -1
  50. duckdb-1.4.2.dev1.dist-info/licenses/LICENSE +7 -0
  51. duckdb-1.4.0.dev2849.dist-info/METADATA +0 -47
  52. duckdb-1.4.0.dev2849.dist-info/RECORD +0 -48
  53. duckdb-1.4.0.dev2849.dist-info/top_level.txt +0 -3
  54. duckdb-stubs/__init__.pyi +0 -712
  55. duckdb-stubs/functional/__init__.pyi +0 -33
  56. duckdb-stubs/typing/__init__.pyi +0 -37
  57. duckdb-stubs/value/constant/__init__.pyi +0 -116
  58. /duckdb-stubs/value/__init__.pyi → /duckdb/py.typed +0 -0
@@ -0,0 +1,52 @@
1
+ _duckdb-stubs/__init__.pyi,sha256=IfzMA8elE8TYQC9FMetmaicgULKvYe8CLXqJw_1HKOw,64989
2
+ _duckdb-stubs/_func.pyi,sha256=pfAOz8vh8oUr25d59i_V3Vr9C2kKRX258h3kLrcO7Os,2132
3
+ _duckdb-stubs/_sqltypes.pyi,sha256=Isp1qkQvCq0ziAK1qOXk6dPjfrsJfKSXrX5Y4v8zd70,2240
4
+ _duckdb.cp312-win_amd64.pyd,sha256=8J9It9BdXVoca7kr7QVqt8nUGjEMcplpbYVDYguhDYQ,35500032
5
+ adbc_driver_duckdb/__init__.py,sha256=syXZqeVXmZlkUIAgi1H_tzdl5GEPc1HBRDlQl58eZQo,1964
6
+ adbc_driver_duckdb/dbapi.py,sha256=_zN1IQV6uXO_dUg-ZZuJPvGr5lySo8tQEIrQnz2swIs,3576
7
+ duckdb/__init__.py,sha256=BWKsKsF6VeAaqHnayjhlwshmGmTmteintELpl51ZABg,7888
8
+ duckdb/_dbapi_type_object.py,sha256=sNn-ww6DlssS_kpKszGh8lye5n4r27kpJeO1ib0ojyk,7211
9
+ duckdb/_version.py,sha256=a7EZTJ5s5a4V1HEJC7IakcsU_KTkXVknLoVfEZjJkBM,866
10
+ duckdb/bytes_io_wrapper.py,sha256=U-FqgvFM04bhzLkXCLQrqorcXGLUPXVL9tcg0Y78qtc,3150
11
+ duckdb/experimental/__init__.py,sha256=LuaitcC-RLBqQITO8pyl4g4wKvA1JxpK2mQUzk1v6Wg,62
12
+ duckdb/experimental/spark/__init__.py,sha256=pEJGLmqLG3dU3wdpXEiGx3lVpyrTqIqNXlkZDyW9uG8,273
13
+ duckdb/experimental/spark/_globals.py,sha256=40WV6dn-3vQdDjGJoTshsAsxL7rSJ_qYLbKTVexlGtY,2562
14
+ duckdb/experimental/spark/_typing.py,sha256=UcltBZJZOtm6C9TQk4FhxlqTpeL3zJ19mMzRUPm4N2c,1574
15
+ duckdb/experimental/spark/conf.py,sha256=caYx7Q1P8H35B8RpbVLu2nj0ELJ0g3fFULovUa_KcUw,1636
16
+ duckdb/experimental/spark/context.py,sha256=2VY5R1tDAfk93l_-wS4RQ72wT7pMLl154E3sM030DG8,6983
17
+ duckdb/experimental/spark/errors/__init__.py,sha256=I6BreoZEXBT8AWrtritiBixM8mQLfmDPal9iJOpK4Mg,2200
18
+ duckdb/experimental/spark/errors/error_classes.py,sha256=91Ww3AI1IF7hmI-YM7nPaD-d5onN--lLKOeo9GgoSuA,28190
19
+ duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=DsbPNVGJEVZ_HBKcJh4-sP_W9v4789GIso9sM7d0yF0,814
20
+ duckdb/experimental/spark/errors/exceptions/base.py,sha256=ZJEjJ4KPh_FKzmOqCU67kYuge1fDDaOv3Ww1HrIrEYw,5314
21
+ duckdb/experimental/spark/errors/utils.py,sha256=zbyIETv-HPOxsGABFGNx82uT9146JuWSLUycQLAzfRs,4548
22
+ duckdb/experimental/spark/exception.py,sha256=xx9vfA_ryGmSSC_MhHsbvk7Cj8VP6XSxfsBHSaKiKCE,651
23
+ duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
24
+ duckdb/experimental/spark/sql/__init__.py,sha256=ZRUTYpjIhNir5vJmPWX9VYJq85qnir32bP8AgNsE9QY,277
25
+ duckdb/experimental/spark/sql/_typing.py,sha256=PTgRwOMSMnYtlZXcsDAd7ynWCij5yfBN0caZo4p1RIQ,2379
26
+ duckdb/experimental/spark/sql/catalog.py,sha256=lh1qIwDH0YqYJub4gBG78YQCnwiO9DDWjvrXES613ug,2587
27
+ duckdb/experimental/spark/sql/column.py,sha256=-rqqrppRpSFiO20Ibqgv0gOfGIS0rPQzSVo3F3HuMHQ,11454
28
+ duckdb/experimental/spark/sql/conf.py,sha256=vqqomhORPBiPz9eBDlM_nm-AlC8JgK-NjSbssr0cFi8,787
29
+ duckdb/experimental/spark/sql/dataframe.py,sha256=qyRNImVdTgoXN2AYG28WLwQrSmJ3rZ6dMQaT5Ku2lkE,47840
30
+ duckdb/experimental/spark/sql/functions.py,sha256=QRclVWHdOq4wwOCuqLa-TdbvMBGWg9RQU5GpypkDiXc,181337
31
+ duckdb/experimental/spark/sql/group.py,sha256=qfOA3xXwNc5LL26xnaB1BEhUz_uInXH20xag1q756DY,13952
32
+ duckdb/experimental/spark/sql/readwriter.py,sha256=b7Sazd6LqyHfcdQaKXAOsGHmF4SF_iulzoc2Gm9g6ww,17930
33
+ duckdb/experimental/spark/sql/session.py,sha256=baQyZOH5wlUbuDgaxnwcR7ItdOr9Ecjka87prTLh7VM,9858
34
+ duckdb/experimental/spark/sql/streaming.py,sha256=7sz9L_URf3ONeetNV1h-nj11sDrOF0lDAWB1Xdg76so,1104
35
+ duckdb/experimental/spark/sql/type_utils.py,sha256=jerRgTP-UXlSVxFCWwO4LCDtMgDRsPBFeC8ZCbmrpiw,3134
36
+ duckdb/experimental/spark/sql/types.py,sha256=Y6LY8ubLngUHSvGdLg9qpHCHVDbE_scTyhTts1hWWgw,42441
37
+ duckdb/experimental/spark/sql/udf.py,sha256=IIYN517bTu5XYnuz5cU3gKrPImmdMOTs6-61jSvtjwE,1210
38
+ duckdb/filesystem.py,sha256=aRbfP4hvNVxJw96BN-JmqruTPikqUB8tniaZ-d3Pu0A,1332
39
+ duckdb/func/__init__.py,sha256=bIIrWjAJY028-hR41yhNmG0ZnvMPbhxR2l4JJKASDb0,206
40
+ duckdb/functional/__init__.py,sha256=kHrsNpZpmOGZb-wP2_teqY53iATo5x35xrUa9TqRNW8,483
41
+ duckdb/polars_io.py,sha256=7jCO5O93kqEB1t1es9oTq0wq0J8F55jGhKg1OXO639Y,11280
42
+ duckdb/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
43
+ duckdb/query_graph/__main__.py,sha256=FFJE6nOnrf3ZnAgRaES3CTaILfQfo9h0FeJ35cPjsOo,11834
44
+ duckdb/sqltypes/__init__.py,sha256=DMSH62BFa5huuKDPnVcn5crZA8Gs3dh-5DRMQQp3gMw,949
45
+ duckdb/typing/__init__.py,sha256=J3e1D57dNlPAlYb-ZrB6CcfppBTeKg0a11uKNd3SFvY,1198
46
+ duckdb/udf.py,sha256=__OFm3IEeUgi_GLDjRzHj4gVSCo6wL4wVW2I1OwnvDI,797
47
+ duckdb/value/__init__.py,sha256=L3FIrKSnCnvhjGM6DCwE4Q2w3OuFmMgxXJMzZneV8dM,14
48
+ duckdb/value/constant/__init__.py,sha256=d2Qp5N-2zFrYmEJKHyHIAip46kdt9igAmfvfnREZqNQ,6093
49
+ duckdb-1.4.2.dev1.dist-info/METADATA,sha256=QaZmYGfenUQK-GiCaWU3Kb3OiZNOGfzoxTBzYXvCX88,14077
50
+ duckdb-1.4.2.dev1.dist-info/WHEEL,sha256=chqeLhPBtPdrOoreR34YMcofSk3yWDQhkrsDJ2n48LU,106
51
+ duckdb-1.4.2.dev1.dist-info/licenses/LICENSE,sha256=QACFao8AflP8UxUFM9ZEvK78ZLdGHkPBTMudPWalnNI,1079
52
+ duckdb-1.4.2.dev1.dist-info/RECORD,,
@@ -1,5 +1,5 @@
1
1
  Wheel-Version: 1.0
2
- Generator: setuptools (80.9.0)
2
+ Generator: scikit-build-core 0.11.6
3
3
  Root-Is-Purelib: false
4
4
  Tag: cp312-cp312-win_amd64
5
5
 
@@ -0,0 +1,7 @@
1
+ Copyright 2018-2025 Stichting DuckDB Foundation
2
+
3
+ Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:
4
+
5
+ The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.
6
+
7
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
@@ -1,47 +0,0 @@
1
- Metadata-Version: 2.4
2
- Name: duckdb
3
- Version: 1.4.0.dev2849
4
- Summary: DuckDB in-process database
5
- Author-email: Hannes Muehleisen <hannes@cwi.nl>
6
- Project-URL: Documentation, https://duckdb.org/docs/stable/clients/python/overview
7
- Project-URL: Source, https://github.com/duckdb/duckdb/blob/main/tools/pythonpkg
8
- Project-URL: Issues, https://github.com/duckdb/duckdb/issues
9
- Project-URL: Changelog, https://github.com/duckdb/duckdb/releases
10
- Keywords: DuckDB,Database,SQL,OLAP
11
- Classifier: Topic :: Database :: Database Engines/Servers
12
- Classifier: Intended Audience :: Developers
13
- Classifier: License :: OSI Approved :: MIT License
14
- Requires-Python: >=3.7.0
15
- Description-Content-Type: text/markdown
16
- Provides-Extra: dev
17
- Requires-Dist: numpy>=1.14; extra == "dev"
18
- Requires-Dist: pybind11[global]>=2.9.0; extra == "dev"
19
- Requires-Dist: pytest; extra == "dev"
20
- Requires-Dist: pytest-reraise; extra == "dev"
21
- Requires-Dist: pytest-timeout; extra == "dev"
22
- Requires-Dist: pandas; extra == "dev"
23
- Requires-Dist: mypy<=1.13; extra == "dev"
24
-
25
- # DuckDB Python package
26
-
27
- ## Where to get it
28
-
29
- You can install the latest release of DuckDB directly from [PyPi](https://pypi.org/project/duckdb/):
30
-
31
- ```bash
32
- pip install duckdb
33
- ```
34
-
35
- ## Documentation
36
-
37
- [DuckDB.org](https://duckdb.org) is a great resource for documentation:
38
- * We recommend the [Python user guide](https://duckdb.org/docs/stable/guides/python/install) to get started.
39
- * And make sure to check out [the latest API documentation](https://duckdb.org/docs/stable/clients/python/overview).
40
-
41
- ## Getting Help
42
-
43
- See the [DuckDB Community Support Policy](https://duckdblabs.com/community_support_policy/). DuckDB Labs also provides [custom support](https://duckdblabs.com/#support).
44
-
45
- ## Source Code
46
-
47
- The Python package is part of the duckdb source tree. If you want to make changes and / or build the package from source, see the [development documentation](https://duckdb.org/docs/stable/dev/building/python) for build instructions, IDE integration, debugging, and other relevant information.
@@ -1,48 +0,0 @@
1
- adbc_driver_duckdb/__init__.py,sha256=hHAwFLPujXrsm024U7AVua8bftOC4yNgc2GGdkXNrLI,1674
2
- adbc_driver_duckdb/dbapi.py,sha256=NaanPiS8P8AE_sjd9vhKKSaIG3aTB2MWo_sTNHQVbjM,3578
3
- duckdb/__init__.py,sha256=VL8M090Sri9GBu42CNahkBWM27Sw9bcnVrTrKmSRJsU,7755
4
- duckdb/bytes_io_wrapper.py,sha256=o5WcKIHA6EoZTsssRNeoohLeGtCPKY-8yQw-iP1k0SY,3050
5
- duckdb/duckdb.cp312-win_amd64.pyd,sha256=I_JGPpbeahyj83B0l89RYH6NhbjEn2_dA3wojhobsN8,35200000
6
- duckdb/filesystem.py,sha256=WMVzCQ2gbe9T60hMw7aAajVqUOHRJvG0XvfgMkKi6hg,1019
7
- duckdb/polars_io.py,sha256=zFDL_JvFHXje3PCoR55xQWZPQibXkeoVBNSJC5PMtNE,7834
8
- duckdb/udf.py,sha256=-Y1DTF3uZgvufqO7ihvWXbFqWHu8LSME48NLyOeQKEk,693
9
- duckdb/experimental/__init__.py,sha256=JTAdXBrgCCenIGe3vzm7a3BuE1jOmgd9yMHG1ZEFSQA,46
10
- duckdb/experimental/spark/LICENSE,sha256=vCGc3GQQzJKXFfRiLOJCSviQBJsHHzTWjewZVVVL8zI,13646
11
- duckdb/experimental/spark/__init__.py,sha256=BKd5s6LUBabQjxliNhs4lAZx48a81Ch5E2NHS-udU3A,291
12
- duckdb/experimental/spark/_globals.py,sha256=cYR8qr7E5fMAp7vsM8CjpwoLI4-_tnuhRS4qf7b0Vr8,2511
13
- duckdb/experimental/spark/_typing.py,sha256=D4Q7AvSyVgNxnmJc3nYKgt3S7cgoRbf-YWo-8Mu54jI,1573
14
- duckdb/experimental/spark/conf.py,sha256=N3PqcMyyNlgJQdjLKTVA_UH_isp7657tcvurp9CU0DE,1443
15
- duckdb/experimental/spark/context.py,sha256=_1A8A7mlF1QSdeQ0XjPv2ImhN4ajziW7lxo2L4Ul3Ao,6373
16
- duckdb/experimental/spark/exception.py,sha256=r3hWeu2EZ9ri0PAyTw38aD7G5qKVsOi8YgtgXMiGfts,550
17
- duckdb/experimental/spark/errors/__init__.py,sha256=JikuqdfaCy_Nti4A_yXYk-z1m5sXab83rovIXjKfoH4,2218
18
- duckdb/experimental/spark/errors/error_classes.py,sha256=5xPdevsInQCcA8NI7Hytzh1mrmX5WvHxe4jUKzocwUc,28167
19
- duckdb/experimental/spark/errors/utils.py,sha256=EnzRDKIciMDORkbZKWrn5KJuZkKtBSCpX9ok7qmRfEo,4554
20
- duckdb/experimental/spark/errors/exceptions/__init__.py,sha256=skcDKqKaQuFEltWKiUwvSpw1Kzelup5daCFKByxT-Gk,800
21
- duckdb/experimental/spark/errors/exceptions/base.py,sha256=p3Pp5GQIWLBK-ApWWGOCQJ1YA0LgWgZ9_N94O08Rj-U,5577
22
- duckdb/experimental/spark/sql/__init__.py,sha256=e_-3pLvS6PteoCxxCRgQHD_Mpd0JBXpbiNXTU47yjQ4,263
23
- duckdb/experimental/spark/sql/_typing.py,sha256=FyJ1vvx5et2yH_YatPaLtI4Z40BK7Xwdtvw-GV13bTw,2454
24
- duckdb/experimental/spark/sql/catalog.py,sha256=_8bruV2yeUk0HRhnY9lsyGRyXPLW1gtODU3V4UfIYJI,2362
25
- duckdb/experimental/spark/sql/column.py,sha256=SJZWSZZTohHw7wTrS9DjpuzmPtid5Cee78I0o3Vi5hY,11076
26
- duckdb/experimental/spark/sql/conf.py,sha256=eB1W0-wUa_fNJ0AAFMNxIGmhqr9a0IhPyr9Xesy-pes,679
27
- duckdb/experimental/spark/sql/dataframe.py,sha256=lWONADE-fWfLVuHsndF2vBbjwtG7qC0QyJTssZZxMGE,47017
28
- duckdb/experimental/spark/sql/functions.py,sha256=kImXKi_Jf3bsyeoqdGgkljPNIGLLllUIIFjwMtOA-aI,175126
29
- duckdb/experimental/spark/sql/group.py,sha256=DLX16aSVFMV6xRvVJ1KCh7um09qTYJb3jQv_FQtTvy4,13695
30
- duckdb/experimental/spark/sql/readwriter.py,sha256=ie5ENJX9Mxy6eBP9oNS-t5KMEQ3pfHfPvEdXDrVWGt0,17750
31
- duckdb/experimental/spark/sql/session.py,sha256=XxzgYp78ZrDHyUcH42buJmODQo21-61YWF5hI3fRwsU,9290
32
- duckdb/experimental/spark/sql/streaming.py,sha256=B0TyLDqG79fLU6Fz7x6TxmcoY5_o0bxziT1k479uMB8,1060
33
- duckdb/experimental/spark/sql/type_utils.py,sha256=ks6YA2-4JUOHv3xrN3O6nT0d76CKVVxS0qNSS028uBE,3059
34
- duckdb/experimental/spark/sql/types.py,sha256=Qqx9R65HA-WUT9MlGzy9b25RqfVdn_BW_ms6_DNRBmA,40434
35
- duckdb/experimental/spark/sql/udf.py,sha256=hwWIvO0o3ipCGtmx9aUtpyC10PQ3NyQL102QB3Q1VqU,1118
36
- duckdb/functional/__init__.py,sha256=at68LoHNhVX5kSKjEIdbz-joKO0ELUszIvwp95cqZ7A,235
37
- duckdb/query_graph/__main__.py,sha256=BWDGf2LKiSXHhQWbIuvc-IXTjE_DqYISGvmtSBBYcx0,11622
38
- duckdb/typing/__init__.py,sha256=OkjQrgmqY046kGMf2IdcSXawL9GjjY8acNNxpbq41Fc,921
39
- duckdb/value/constant.py,sha256=cbTGO63hXI7tkoa6Sjw2S_PJYV6IAC8R88n2yVzPuNo,5784
40
- duckdb-stubs/__init__.pyi,sha256=tI-c3i6ewqv8DeS1wzjdrtmkWyoKIN3FqtIYbw9H51U,48201
41
- duckdb-stubs/functional/__init__.pyi,sha256=xJ3b7MdZpnU3NiCpN8WYudu4pHRE7YUPYTcc2TSR9hg,842
42
- duckdb-stubs/typing/__init__.pyi,sha256=VHseLxfiq-RrlX881MGW1NYV3TsG2q0VmDGtbSx-8og,984
43
- duckdb-stubs/value/__init__.pyi,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
44
- duckdb-stubs/value/constant/__init__.pyi,sha256=ITxzXcoDUMwTpgblD6TP5njqnsa2GYfPrVD2e4qhBvQ,3426
45
- duckdb-1.4.0.dev2849.dist-info/METADATA,sha256=qCnOF2INRmRo0Ifi7vnmJP4PbM3lC1yAIvXOufDfoIA,2055
46
- duckdb-1.4.0.dev2849.dist-info/WHEEL,sha256=8UP9x9puWI0P1V_d7K2oMTBqfeLNm21CTzZ_Ptr0NXU,101
47
- duckdb-1.4.0.dev2849.dist-info/top_level.txt,sha256=PJ5o847brKVXDprOLYKxfLtb6iH7NVZtotg7NxIkG-4,39
48
- duckdb-1.4.0.dev2849.dist-info/RECORD,,
@@ -1,3 +0,0 @@
1
- adbc_driver_duckdb
2
- duckdb
3
- duckdb-stubs