polars-runtime-compat 1.34.0b2__cp39-abi3-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 polars-runtime-compat might be problematic. Click here for more details.

Files changed (203) hide show
  1. _polars_runtime_compat/.gitkeep +0 -0
  2. _polars_runtime_compat/_polars_runtime_compat.abi3.so +0 -0
  3. polars/__init__.py +528 -0
  4. polars/_cpu_check.py +265 -0
  5. polars/_dependencies.py +355 -0
  6. polars/_plr.py +99 -0
  7. polars/_plr.pyi +2496 -0
  8. polars/_reexport.py +23 -0
  9. polars/_typing.py +478 -0
  10. polars/_utils/__init__.py +37 -0
  11. polars/_utils/async_.py +102 -0
  12. polars/_utils/cache.py +176 -0
  13. polars/_utils/cloud.py +40 -0
  14. polars/_utils/constants.py +29 -0
  15. polars/_utils/construction/__init__.py +46 -0
  16. polars/_utils/construction/dataframe.py +1397 -0
  17. polars/_utils/construction/other.py +72 -0
  18. polars/_utils/construction/series.py +560 -0
  19. polars/_utils/construction/utils.py +118 -0
  20. polars/_utils/convert.py +224 -0
  21. polars/_utils/deprecation.py +406 -0
  22. polars/_utils/getitem.py +457 -0
  23. polars/_utils/logging.py +11 -0
  24. polars/_utils/nest_asyncio.py +264 -0
  25. polars/_utils/parquet.py +15 -0
  26. polars/_utils/parse/__init__.py +12 -0
  27. polars/_utils/parse/expr.py +242 -0
  28. polars/_utils/polars_version.py +19 -0
  29. polars/_utils/pycapsule.py +53 -0
  30. polars/_utils/scan.py +27 -0
  31. polars/_utils/serde.py +63 -0
  32. polars/_utils/slice.py +215 -0
  33. polars/_utils/udfs.py +1251 -0
  34. polars/_utils/unstable.py +63 -0
  35. polars/_utils/various.py +782 -0
  36. polars/_utils/wrap.py +25 -0
  37. polars/api.py +370 -0
  38. polars/catalog/__init__.py +0 -0
  39. polars/catalog/unity/__init__.py +19 -0
  40. polars/catalog/unity/client.py +733 -0
  41. polars/catalog/unity/models.py +152 -0
  42. polars/config.py +1571 -0
  43. polars/convert/__init__.py +25 -0
  44. polars/convert/general.py +1046 -0
  45. polars/convert/normalize.py +261 -0
  46. polars/dataframe/__init__.py +5 -0
  47. polars/dataframe/_html.py +186 -0
  48. polars/dataframe/frame.py +12582 -0
  49. polars/dataframe/group_by.py +1067 -0
  50. polars/dataframe/plotting.py +257 -0
  51. polars/datatype_expr/__init__.py +5 -0
  52. polars/datatype_expr/array.py +56 -0
  53. polars/datatype_expr/datatype_expr.py +304 -0
  54. polars/datatype_expr/list.py +18 -0
  55. polars/datatype_expr/struct.py +69 -0
  56. polars/datatypes/__init__.py +122 -0
  57. polars/datatypes/_parse.py +195 -0
  58. polars/datatypes/_utils.py +48 -0
  59. polars/datatypes/classes.py +1213 -0
  60. polars/datatypes/constants.py +11 -0
  61. polars/datatypes/constructor.py +172 -0
  62. polars/datatypes/convert.py +366 -0
  63. polars/datatypes/group.py +130 -0
  64. polars/exceptions.py +230 -0
  65. polars/expr/__init__.py +7 -0
  66. polars/expr/array.py +964 -0
  67. polars/expr/binary.py +346 -0
  68. polars/expr/categorical.py +306 -0
  69. polars/expr/datetime.py +2620 -0
  70. polars/expr/expr.py +11272 -0
  71. polars/expr/list.py +1408 -0
  72. polars/expr/meta.py +444 -0
  73. polars/expr/name.py +321 -0
  74. polars/expr/string.py +3045 -0
  75. polars/expr/struct.py +357 -0
  76. polars/expr/whenthen.py +185 -0
  77. polars/functions/__init__.py +193 -0
  78. polars/functions/aggregation/__init__.py +33 -0
  79. polars/functions/aggregation/horizontal.py +298 -0
  80. polars/functions/aggregation/vertical.py +341 -0
  81. polars/functions/as_datatype.py +848 -0
  82. polars/functions/business.py +138 -0
  83. polars/functions/col.py +384 -0
  84. polars/functions/datatype.py +121 -0
  85. polars/functions/eager.py +524 -0
  86. polars/functions/escape_regex.py +29 -0
  87. polars/functions/lazy.py +2751 -0
  88. polars/functions/len.py +68 -0
  89. polars/functions/lit.py +210 -0
  90. polars/functions/random.py +22 -0
  91. polars/functions/range/__init__.py +19 -0
  92. polars/functions/range/_utils.py +15 -0
  93. polars/functions/range/date_range.py +303 -0
  94. polars/functions/range/datetime_range.py +370 -0
  95. polars/functions/range/int_range.py +348 -0
  96. polars/functions/range/linear_space.py +311 -0
  97. polars/functions/range/time_range.py +287 -0
  98. polars/functions/repeat.py +301 -0
  99. polars/functions/whenthen.py +353 -0
  100. polars/interchange/__init__.py +10 -0
  101. polars/interchange/buffer.py +77 -0
  102. polars/interchange/column.py +190 -0
  103. polars/interchange/dataframe.py +230 -0
  104. polars/interchange/from_dataframe.py +328 -0
  105. polars/interchange/protocol.py +303 -0
  106. polars/interchange/utils.py +170 -0
  107. polars/io/__init__.py +64 -0
  108. polars/io/_utils.py +317 -0
  109. polars/io/avro.py +49 -0
  110. polars/io/clipboard.py +36 -0
  111. polars/io/cloud/__init__.py +17 -0
  112. polars/io/cloud/_utils.py +80 -0
  113. polars/io/cloud/credential_provider/__init__.py +17 -0
  114. polars/io/cloud/credential_provider/_builder.py +520 -0
  115. polars/io/cloud/credential_provider/_providers.py +618 -0
  116. polars/io/csv/__init__.py +9 -0
  117. polars/io/csv/_utils.py +38 -0
  118. polars/io/csv/batched_reader.py +142 -0
  119. polars/io/csv/functions.py +1495 -0
  120. polars/io/database/__init__.py +6 -0
  121. polars/io/database/_arrow_registry.py +70 -0
  122. polars/io/database/_cursor_proxies.py +147 -0
  123. polars/io/database/_executor.py +578 -0
  124. polars/io/database/_inference.py +314 -0
  125. polars/io/database/_utils.py +144 -0
  126. polars/io/database/functions.py +516 -0
  127. polars/io/delta.py +499 -0
  128. polars/io/iceberg/__init__.py +3 -0
  129. polars/io/iceberg/_utils.py +697 -0
  130. polars/io/iceberg/dataset.py +556 -0
  131. polars/io/iceberg/functions.py +151 -0
  132. polars/io/ipc/__init__.py +8 -0
  133. polars/io/ipc/functions.py +514 -0
  134. polars/io/json/__init__.py +3 -0
  135. polars/io/json/read.py +101 -0
  136. polars/io/ndjson.py +332 -0
  137. polars/io/parquet/__init__.py +17 -0
  138. polars/io/parquet/field_overwrites.py +140 -0
  139. polars/io/parquet/functions.py +722 -0
  140. polars/io/partition.py +491 -0
  141. polars/io/plugins.py +187 -0
  142. polars/io/pyarrow_dataset/__init__.py +5 -0
  143. polars/io/pyarrow_dataset/anonymous_scan.py +109 -0
  144. polars/io/pyarrow_dataset/functions.py +79 -0
  145. polars/io/scan_options/__init__.py +5 -0
  146. polars/io/scan_options/_options.py +59 -0
  147. polars/io/scan_options/cast_options.py +126 -0
  148. polars/io/spreadsheet/__init__.py +6 -0
  149. polars/io/spreadsheet/_utils.py +52 -0
  150. polars/io/spreadsheet/_write_utils.py +647 -0
  151. polars/io/spreadsheet/functions.py +1323 -0
  152. polars/lazyframe/__init__.py +9 -0
  153. polars/lazyframe/engine_config.py +61 -0
  154. polars/lazyframe/frame.py +8564 -0
  155. polars/lazyframe/group_by.py +669 -0
  156. polars/lazyframe/in_process.py +42 -0
  157. polars/lazyframe/opt_flags.py +333 -0
  158. polars/meta/__init__.py +14 -0
  159. polars/meta/build.py +33 -0
  160. polars/meta/index_type.py +27 -0
  161. polars/meta/thread_pool.py +50 -0
  162. polars/meta/versions.py +120 -0
  163. polars/ml/__init__.py +0 -0
  164. polars/ml/torch.py +213 -0
  165. polars/ml/utilities.py +30 -0
  166. polars/plugins.py +155 -0
  167. polars/py.typed +0 -0
  168. polars/pyproject.toml +96 -0
  169. polars/schema.py +265 -0
  170. polars/selectors.py +3117 -0
  171. polars/series/__init__.py +5 -0
  172. polars/series/array.py +776 -0
  173. polars/series/binary.py +254 -0
  174. polars/series/categorical.py +246 -0
  175. polars/series/datetime.py +2275 -0
  176. polars/series/list.py +1087 -0
  177. polars/series/plotting.py +191 -0
  178. polars/series/series.py +9197 -0
  179. polars/series/string.py +2367 -0
  180. polars/series/struct.py +154 -0
  181. polars/series/utils.py +191 -0
  182. polars/sql/__init__.py +7 -0
  183. polars/sql/context.py +677 -0
  184. polars/sql/functions.py +139 -0
  185. polars/string_cache.py +185 -0
  186. polars/testing/__init__.py +13 -0
  187. polars/testing/asserts/__init__.py +9 -0
  188. polars/testing/asserts/frame.py +231 -0
  189. polars/testing/asserts/series.py +219 -0
  190. polars/testing/asserts/utils.py +12 -0
  191. polars/testing/parametric/__init__.py +33 -0
  192. polars/testing/parametric/profiles.py +107 -0
  193. polars/testing/parametric/strategies/__init__.py +22 -0
  194. polars/testing/parametric/strategies/_utils.py +14 -0
  195. polars/testing/parametric/strategies/core.py +615 -0
  196. polars/testing/parametric/strategies/data.py +452 -0
  197. polars/testing/parametric/strategies/dtype.py +436 -0
  198. polars/testing/parametric/strategies/legacy.py +169 -0
  199. polars/type_aliases.py +24 -0
  200. polars_runtime_compat-1.34.0b2.dist-info/METADATA +190 -0
  201. polars_runtime_compat-1.34.0b2.dist-info/RECORD +203 -0
  202. polars_runtime_compat-1.34.0b2.dist-info/WHEEL +4 -0
  203. polars_runtime_compat-1.34.0b2.dist-info/licenses/LICENSE +20 -0
@@ -0,0 +1,190 @@
1
+ Metadata-Version: 2.4
2
+ Name: polars-runtime-compat
3
+ Version: 1.34.0b2
4
+ Classifier: Development Status :: 5 - Production/Stable
5
+ Classifier: Environment :: Console
6
+ Classifier: Intended Audience :: Science/Research
7
+ Classifier: License :: OSI Approved :: MIT License
8
+ Classifier: Operating System :: OS Independent
9
+ Classifier: Programming Language :: Python
10
+ Classifier: Programming Language :: Python :: 3
11
+ Classifier: Programming Language :: Python :: 3 :: Only
12
+ Classifier: Programming Language :: Python :: 3.9
13
+ Classifier: Programming Language :: Python :: 3.10
14
+ Classifier: Programming Language :: Python :: 3.11
15
+ Classifier: Programming Language :: Python :: 3.12
16
+ Classifier: Programming Language :: Python :: 3.13
17
+ Classifier: Programming Language :: Rust
18
+ Classifier: Topic :: Scientific/Engineering
19
+ Classifier: Typing :: Typed
20
+ License-File: LICENSE
21
+ Summary: Blazingly fast DataFrame library
22
+ Keywords: dataframe,arrow,out-of-core
23
+ Author-email: Ritchie Vink <ritchie46@gmail.com>
24
+ Requires-Python: >=3.9
25
+ Description-Content-Type: text/markdown; charset=UTF-8; variant=GFM
26
+ Project-URL: Homepage, https://www.pola.rs/
27
+ Project-URL: Documentation, https://docs.pola.rs/api/python/stable/reference/index.html
28
+ Project-URL: Repository, https://github.com/pola-rs/polars
29
+ Project-URL: Changelog, https://github.com/pola-rs/polars/releases
30
+
31
+ <h1 align="center">
32
+ <a href="https://pola.rs">
33
+ <img src="https://raw.githubusercontent.com/pola-rs/polars-static/master/banner/polars_github_banner.svg" alt="Polars logo">
34
+ </a>
35
+ </h1>
36
+
37
+ <div align="center">
38
+ <a href="https://crates.io/crates/polars">
39
+ <img src="https://img.shields.io/crates/v/polars.svg" alt="crates.io Latest Release"/>
40
+ </a>
41
+ <a href="https://pypi.org/project/polars/">
42
+ <img src="https://img.shields.io/pypi/v/polars.svg" alt="PyPi Latest Release"/>
43
+ </a>
44
+ <a href="https://www.npmjs.com/package/nodejs-polars">
45
+ <img src="https://img.shields.io/npm/v/nodejs-polars.svg" alt="NPM Latest Release"/>
46
+ </a>
47
+ <a href="https://community.r-multiverse.org/polars">
48
+ <img src="https://img.shields.io/badge/dynamic/json?url=https%3A%2F%2Fcommunity.r-multiverse.org%2Fapi%2Fpackages%2Fpolars&query=%24.Version&label=r-multiverse" alt="R-multiverse Latest Release"/>
49
+ </a>
50
+ <a href="https://doi.org/10.5281/zenodo.7697217">
51
+ <img src="https://zenodo.org/badge/DOI/10.5281/zenodo.7697217.svg" alt="DOI Latest Release"/>
52
+ </a>
53
+ </div>
54
+
55
+ <p align="center">
56
+ <b>Documentation</b>:
57
+ <a href="https://docs.pola.rs/api/python/stable/reference/index.html">Python</a>
58
+ -
59
+ <a href="https://docs.rs/polars/latest/polars/">Rust</a>
60
+ -
61
+ <a href="https://pola-rs.github.io/nodejs-polars/index.html">Node.js</a>
62
+ -
63
+ <a href="https://pola-rs.github.io/r-polars/index.html">R</a>
64
+ |
65
+ <b>StackOverflow</b>:
66
+ <a href="https://stackoverflow.com/questions/tagged/python-polars">Python</a>
67
+ -
68
+ <a href="https://stackoverflow.com/questions/tagged/rust-polars">Rust</a>
69
+ -
70
+ <a href="https://stackoverflow.com/questions/tagged/nodejs-polars">Node.js</a>
71
+ -
72
+ <a href="https://stackoverflow.com/questions/tagged/r-polars">R</a>
73
+ |
74
+ <a href="https://docs.pola.rs/">User guide</a>
75
+ |
76
+ <a href="https://discord.gg/4UfP5cfBE7">Discord</a>
77
+ </p>
78
+
79
+ ## Polars: Extremely fast Query Engine for DataFrames, written in Rust
80
+
81
+ Polars is an analytical query engine written for DataFrames. It is designed to be fast, easy to use
82
+ and expressive. Key features are:
83
+
84
+ - Lazy | Eager execution
85
+ - Streaming (larger-than-RAM datasets)
86
+ - Query optimization
87
+ - Multi-threaded
88
+ - Written in Rust
89
+ - SIMD
90
+ - Powerful expression API
91
+ - Front end in Python | Rust | NodeJS | R | SQL
92
+ - [Apache Arrow Columnar Format](https://arrow.apache.org/docs/format/Columnar.html)
93
+
94
+ To learn more, read the [user guide](https://docs.pola.rs/).
95
+
96
+ ## Performance 🚀🚀
97
+
98
+ ### Blazingly fast
99
+
100
+ Polars is very fast. In fact, it is one of the best performing solutions available. See the
101
+ [PDS-H benchmarks](https://www.pola.rs/benchmarks.html) results.
102
+
103
+ ### Lightweight
104
+
105
+ Polars is also very lightweight. It comes with zero required dependencies, and this shows in the
106
+ import times:
107
+
108
+ - polars: 70ms
109
+ - numpy: 104ms
110
+ - pandas: 520ms
111
+
112
+ ### Handles larger-than-RAM data
113
+
114
+ If you have data that does not fit into memory, Polars' query engine is able to process your query
115
+ (or parts of your query) in a streaming fashion. This drastically reduces memory requirements, so
116
+ you might be able to process your 250GB dataset on your laptop. Collect with
117
+ `collect(engine='streaming')` to run the query streaming.
118
+
119
+ ## Setup
120
+
121
+ ### Python
122
+
123
+ Install the latest Polars version with:
124
+
125
+ ```sh
126
+ pip install polars
127
+ ```
128
+
129
+ See the [User Guide](https://docs.pola.rs/user-guide/installation/#feature-flags) for more details
130
+ on optional dependencies
131
+
132
+ To see the current Polars version and a full list of its optional dependencies, run:
133
+
134
+ ```python
135
+ pl.show_versions()
136
+ ```
137
+
138
+ ## Contributing
139
+
140
+ Want to contribute? Read our [contributing guide](https://docs.pola.rs/development/contributing/).
141
+
142
+ ## Managed/Distributed Polars
143
+
144
+ Do you want a managed solution or scale out to distributed clusters? Consider our
145
+ [offering](https://cloud.pola.rs/) and help the project!
146
+
147
+ ## Python: compile Polars from source
148
+
149
+ If you want a bleeding edge release or maximal performance you should compile Polars from source.
150
+
151
+ This can be done by going through the following steps in sequence:
152
+
153
+ 1. Install the latest [Rust compiler](https://www.rust-lang.org/tools/install)
154
+ 2. Install [maturin](https://maturin.rs/): `pip install maturin`
155
+ 3. `cd py-polars` and choose one of the following:
156
+ - `make build`, slow binary with debug assertions and symbols, fast compile times
157
+ - `make build-release`, fast binary without debug assertions, minimal debug symbols, long compile
158
+ times
159
+ - `make build-nodebug-release`, same as build-release but without any debug symbols, slightly
160
+ faster to compile
161
+ - `make build-debug-release`, same as build-release but with full debug symbols, slightly slower
162
+ to compile
163
+ - `make build-dist-release`, fastest binary, extreme compile times
164
+
165
+ By default the binary is compiled with optimizations turned on for a modern CPU. Specify `LTS_CPU=1`
166
+ with the command if your CPU is older and does not support e.g. AVX2.
167
+
168
+ Note that the Rust crate implementing the Python bindings is called `py-polars` to distinguish from
169
+ the wrapped Rust crate `polars` itself. However, both the Python package and the Python module are
170
+ named `polars`, so you can `pip install polars` and `import polars`.
171
+
172
+ ## Using custom Rust functions in Python
173
+
174
+ Extending Polars with UDFs compiled in Rust is easy. We expose PyO3 extensions for `DataFrame` and
175
+ `Series` data structures. See more in https://github.com/pola-rs/polars/tree/main/pyo3-polars.
176
+
177
+ ## Going big...
178
+
179
+ Do you expect more than 2^32 (~4.2 billion) rows? Compile Polars with the `bigidx` feature flag or,
180
+ for Python users, install `pip install polars-u64-idx`.
181
+
182
+ Don't use this unless you hit the row boundary as the default build of Polars is faster and consumes
183
+ less memory.
184
+
185
+ ## Legacy
186
+
187
+ Do you want Polars to run on an old CPU (e.g. dating from before 2011), or on an `x86-64` build of
188
+ Python on Apple Silicon under Rosetta? Install `pip install polars-lts-cpu`. This version of Polars
189
+ is compiled without [AVX](https://en.wikipedia.org/wiki/Advanced_Vector_Extensions) target features.
190
+
@@ -0,0 +1,203 @@
1
+ polars_runtime_compat-1.34.0b2.dist-info/METADATA,sha256=SPiPgpclU_wPmU7BvXzV2TUxFv2EZcadMsBxdBDUcvE,7308
2
+ polars_runtime_compat-1.34.0b2.dist-info/WHEEL,sha256=8o4OwL9DEHvYoHffy8Jg4kpRikqV8pJpkbxz_mtiXQk,102
3
+ polars_runtime_compat-1.34.0b2.dist-info/licenses/LICENSE,sha256=TSDKkMRxpvPXNgVdp1bbHOJAOMKGmk31x4vlZo2voVs,1143
4
+ _polars_runtime_compat/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ polars/__init__.py,sha256=W-tarPKtQWrnMpUDh5wCUwFW6TD8TKk80thG7vbXV2g,11390
6
+ polars/_cpu_check.py,sha256=g-gXAwIefm4KROqF-5NxO4UzNjEjB_0mlegR3Fa47Qw,9763
7
+ polars/_dependencies.py,sha256=uReveO921AUdh-ootSpNbUz3OTV5ADMjLNTr4lVz4JI,11413
8
+ polars/_plr.py,sha256=icgDurlkHEIqaV9kC6C3OiRH5mxMJcZ1985X2MMXGO4,3156
9
+ polars/_plr.pyi,sha256=prGRPiOqVm3pnuMz6yVSeIRQbCgikbBQy_wcNb2ncw8,93247
10
+ polars/_reexport.py,sha256=px_h-vm-MWhGbdvaOWsUQS2ryW9Lo7vPTczwEI6eZoY,555
11
+ polars/_typing.py,sha256=1LsoKWQ04S15eJWgee0DZQK_DFQuuzdSY1cwuCirzlw,14586
12
+ polars/_utils/__init__.py,sha256=kZUGgBFmko_LbLhBqvGyBcBDaSiAJiVKBsbr8b8mfik,764
13
+ polars/_utils/async_.py,sha256=Uv-mfFmTHR5iidda-PG5AsiIwuAZz4tTWQGyNaVIxmI,3387
14
+ polars/_utils/cache.py,sha256=3x0OIAjAmwYQ2L7-0sEITZRsbtZiNfJF6DnoLYIkC4w,5927
15
+ polars/_utils/cloud.py,sha256=d83VMLJ1dMoilIAMBTBzb9ZjreJEX_PU2DLWll5Yi2o,1102
16
+ polars/_utils/constants.py,sha256=XKrtE2P6vs4jl6rlv-0--jYl1dCDhgCRBHGwQoFTwaI,634
17
+ polars/_utils/construction/__init__.py,sha256=27DwOZG90t9Zva2svFI7IycrABmeseMHQ9z2ysfD5Eg,1006
18
+ polars/_utils/construction/dataframe.py,sha256=tGsYgwa1Qc_5tEivTcR744zCiyjBiRuRRw1K6Xg-yGg,46913
19
+ polars/_utils/construction/other.py,sha256=REJgUBa3VqBIDoBYh_7nCs1CTEdMtadkNk4DOQkGmvQ,2514
20
+ polars/_utils/construction/series.py,sha256=lJU4PnH_GtgiJTnsm-aQa0SrAryL1CEJA0i3yZOem5Q,18244
21
+ polars/_utils/construction/utils.py,sha256=mmW8J4xZN8ZsZi5CMX3RERJOAC_Ext_aoJFlIgR4ja8,3922
22
+ polars/_utils/convert.py,sha256=6e4VQs9dTZ7s-gTKmzQBibndHosKS26r4AJGsmq7N2E,6843
23
+ polars/_utils/deprecation.py,sha256=Fgo0XbgR0024BfJ-7F8idqRdMDwMT6iQ6jsddemITqE,13773
24
+ polars/_utils/getitem.py,sha256=GIbnY2Wk51T1YCu-7Z3_CDNj2O5vwrUjjA3J03rxMK0,15182
25
+ polars/_utils/logging.py,sha256=a2NVWq3im7cm5Uw_JmvFcxSB-4rYwZRDJOv9vYwwYnY,201
26
+ polars/_utils/nest_asyncio.py,sha256=RorjcuI9QhFMNqdq1VuBu1PYR5LGQIuSDIhzSIS7ewo,9112
27
+ polars/_utils/parquet.py,sha256=GgPW8OSc7N6uGgkTRY7oLoBrLIrZ1rOSK3CSsD--Uzw,453
28
+ polars/_utils/parse/__init__.py,sha256=MNXNsfmNqvYhjLGnkSwsc4QXiVCW2B0J1yDqUlErSYM,299
29
+ polars/_utils/parse/expr.py,sha256=GsBIJuJeub2C_gglj_BSmD6kJ7SkVJn_YZyxewvCino,7227
30
+ polars/_utils/polars_version.py,sha256=tn_U8fO4YnZXPaupHkaugZZdiyTWjRNttygL54UNMOs,451
31
+ polars/_utils/pycapsule.py,sha256=C9j4CMM81rj7RqO8pKvy5Cv4K2sLYnHYKXUBkRQdepc,1784
32
+ polars/_utils/scan.py,sha256=gSgxiN09XjF4c43ZQa-OYVVJDiwdGDBYnQlHYfczia0,646
33
+ polars/_utils/serde.py,sha256=sT2au52PDliVonX7zdIKPetVksDHJHuAam1Pw9gCSY0,1795
34
+ polars/_utils/slice.py,sha256=UCWWK6F3ob-ZZeCnCZskoAORXv3fmobKabbUFhTBreg,7990
35
+ polars/_utils/udfs.py,sha256=YRiPk9OXPAjeATI5_o7ES5CrCQhorXb9GPKPHYAC47k,47415
36
+ polars/_utils/unstable.py,sha256=0-F4jHeK-4CXn0SK5VDSkVeNw8Bjb3eFI538JoFWKXQ,1705
37
+ polars/_utils/various.py,sha256=gaykIFV5zhZ6wdSHKQX2k3iqmxEmnoBYzEfBmUxeuSQ,25342
38
+ polars/_utils/wrap.py,sha256=y5QAlJkIIoguGDIuCHpiihlPmz7ulZ6kPnRyQTTKRJ0,577
39
+ polars/api.py,sha256=IFpFJrgA23AjX33cZnyoDqXp-2QlPCCeLD6OaHiPud8,13143
40
+ polars/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ polars/catalog/unity/__init__.py,sha256=H930l4QcK_FYZe0pvdhASbHUh3C6psaJRx8u6Bg2uaU,342
42
+ polars/catalog/unity/client.py,sha256=sPTK2xHEDQ9vxyTEpLaOMaDS_yXpCW8TxgFv4lKiX4c,25356
43
+ polars/catalog/unity/models.py,sha256=qd-O5bGm1bqJGw9qxLHnv60idKgHno4utadFGd1FTe0,3667
44
+ polars/config.py,sha256=c1zR43tdgfn3JvoU_OAzBRMO4B5WoMXiDowrv_6nEj8,59798
45
+ polars/convert/__init__.py,sha256=EZTlSYaVTy6wFKTP8s6l3_zLZHm_qp8YYdQ-vFcHQyI,444
46
+ polars/convert/general.py,sha256=-pATGr9NTffECtQ0UxYqrk6TUZzVKuoqneYLTkakz2w,38052
47
+ polars/convert/normalize.py,sha256=0QdUxNnxhs5gQuGc9TJASMKr6FHfGR7076O0z8T92jc,9117
48
+ polars/dataframe/__init__.py,sha256=1YJmMU0zAvRO0_HxXO33DhYbEWLTZW3-0PpSmjq2qtQ,77
49
+ polars/dataframe/_html.py,sha256=KfuvNTMQPAZWLIU20d2SAzmqc3qA8Ez2Q_XjKv5mGmM,6113
50
+ polars/dataframe/frame.py,sha256=IOeuuuLBhVFFrEPIlkA4ug-1WX31V9vd4lowDEx_KaE,474182
51
+ polars/dataframe/group_by.py,sha256=ctH_MVRpHG309TvjoO6DVZl44Gw1dflrdRwgco30s7Q,38819
52
+ polars/dataframe/plotting.py,sha256=ousAwCMxiz61ULgVA3yr0uuKqeGFVR6oDj3Q05jZDTI,8183
53
+ polars/datatype_expr/__init__.py,sha256=LTgBgsmhEomqhIOHh-WZ49u3YcRaEjnMmbJ3Sq4ATII,95
54
+ polars/datatype_expr/array.py,sha256=5cXqdTFfMX3fmtG3KlEJC5q6goG2LF-igCuv8KCzyn4,1573
55
+ polars/datatype_expr/datatype_expr.py,sha256=eXP8X1vYlHHy_mTLWDNF4t_HzGWwCaY51hK5Sbh0x84,10163
56
+ polars/datatype_expr/list.py,sha256=gvlmxDqAJS3dlvfBTRh3GjRJGFSuQy3Z27167VRig7U,496
57
+ polars/datatype_expr/struct.py,sha256=CZMHPWtcZGdzzbIQHrWOJSOI6jjmfPpwTFGMukLSdpc,2094
58
+ polars/datatypes/__init__.py,sha256=eLS76sNgF4oPQpswN-476Wtn2P197tQXUwKISiqrpAw,2146
59
+ polars/datatypes/_parse.py,sha256=URcsKRUyA7cGHEPH236iQeWAZoqQTehiSWDwPrC1aB0,5663
60
+ polars/datatypes/_utils.py,sha256=TS9MahbSdsUWnpc2XhzJsEFmDdJkAhrmly0V7FlH49o,1702
61
+ polars/datatypes/classes.py,sha256=BIt9bhljSGbH44UPlKeAO53qmOqfOETUFLNCq602Y-A,36099
62
+ polars/datatypes/constants.py,sha256=wPg8q1igCRhsw4fGLxXrnDSZBH8TO3nOj7BorTzU6v0,287
63
+ polars/datatypes/constructor.py,sha256=jXcAp97wTbXosBOTQ6KVx2GeXm6RIDi6Jt4mM-ZF_yA,6064
64
+ polars/datatypes/convert.py,sha256=AQsA0p7laXWnaMSrxxwv-NhlBT5yU9Yr3PuEQiIafGM,11226
65
+ polars/datatypes/group.py,sha256=HJHbIyA0SnirWvm5OT2xCEIv2F1CNMxcRL2jmtloFsc,3026
66
+ polars/exceptions.py,sha256=XbQFd1Jrq2IuED-U0C1Je3o7NROS1npDejoH9Bbn7rc,8394
67
+ polars/expr/__init__.py,sha256=16pHGqIv1T69nW5e2AA-sswyFodvMgdf76fNHCNU8kc,111
68
+ polars/expr/array.py,sha256=UI2BbhuPwMtvkvLxMN0TErgWRUzRQL1ziYGZhha7rtA,34153
69
+ polars/expr/binary.py,sha256=GhpYsDa2GqTQsntHwSbuTqnhQlbcXXSrkvz3Z_5JNZ0,14317
70
+ polars/expr/categorical.py,sha256=3SRaGHw3jVbxUSwb-culWy8OuxIjkcPjumOsRMAq71c,10793
71
+ polars/expr/datetime.py,sha256=K8DRVHapbU0F9XORh38HGpnQyLYNrpKGFx6VsxWXkAw,116254
72
+ polars/expr/expr.py,sha256=78w-XV4RWkmk8-63Lz-1YpxRSDF8371teQlASuDzBc8,414097
73
+ polars/expr/list.py,sha256=NHzAGN2coa-LGlj2tWw5TS1vHG7kM2K0dREppVBTyIY,55952
74
+ polars/expr/meta.py,sha256=OfNFV8tGmTXAn6FTCDcq4O2jaP7AVkS4aWY3oMPA35Q,13788
75
+ polars/expr/name.py,sha256=H_rLJ4WFxHPsGxyyxhvj0ws1YeqbXIAapoxG8FCZcqc,10294
76
+ polars/expr/string.py,sha256=MEGwazxZqCVWUlyi-CoWZUciaQO97QOuG7_IvJcbTkM,131237
77
+ polars/expr/struct.py,sha256=sy_a3VjpkfmcQil6QVqb7BSKQZ0HHLtp2fsFRT064Wc,13883
78
+ polars/expr/whenthen.py,sha256=QuI3UHDUYxTgwhAnCdtjnGeR5M8jvwZFSm-mOlVT2OU,6156
79
+ polars/functions/__init__.py,sha256=csPbTXqRmlDOgujy5OretBxwjtIAeSpMiVEjHhPywiQ,3678
80
+ polars/functions/aggregation/__init__.py,sha256=kK-3PcWpRnzpv7xMo0Hp9Uhd8TVsdb8xgANUVl8maGY,557
81
+ polars/functions/aggregation/horizontal.py,sha256=Ke7Q-GGIRFEk-gZDUoimnprRngTcm17JYDWhUAlFccw,10675
82
+ polars/functions/aggregation/vertical.py,sha256=1yx6aIk32H1FbYs06nePAtbf2s7YI3nhsFTwkO8STiw,7912
83
+ polars/functions/as_datatype.py,sha256=UITVgZtYXMSg35JHTmShMS9ELDFqehbkh8JWawKGrfA,34092
84
+ polars/functions/business.py,sha256=foY16kKKBF04j0MRpzoXHVD-VqUHPRpLeCwGFfDPlzk,5854
85
+ polars/functions/col.py,sha256=bbo9lcaiA8sDMQBnQKz2sNzO3OjOMfIjnaPllNGXinc,12622
86
+ polars/functions/datatype.py,sha256=MV9cyp9JpAqgP-ZTknv72QPAvf7njueODRAh9izFLwA,3613
87
+ polars/functions/eager.py,sha256=Sl7o-FQq16idtzAHMZ97XEyDutc4s5HHDxdsmw25fIU,24793
88
+ polars/functions/escape_regex.py,sha256=llzKsZulD721aL0AgwfY2oZ2kuG1YA2C-JvGR_GiC9c,806
89
+ polars/functions/lazy.py,sha256=If0LmcB872TFPcAIZRYGCdgjGSY147Q40BtF0c1L7Fc,78320
90
+ polars/functions/len.py,sha256=m454SkEisV3L1lE7M4yg8JNgq-UIuivEmhwJNNpZ1tM,1823
91
+ polars/functions/lit.py,sha256=1MyYbZc2ZmdGmB8Rl7MF1ro8jv7GGFu4e123RbXvRSA,7492
92
+ polars/functions/random.py,sha256=dZhsXKmQXpKAlU7DCiGbkdiBZ52cFfGKANnwM1aLE3o,528
93
+ polars/functions/range/__init__.py,sha256=ZzOVenkqJReesrM1RQ3l89VU-j6oM6pR9zKcGOtnJQw,597
94
+ polars/functions/range/_utils.py,sha256=tfGQE4s3y-r0jEbfk-uJJk6PFH5imyeEsDo0W6daUOg,447
95
+ polars/functions/range/date_range.py,sha256=0Po8sUPqyKPIdh-RIDusn2ZIErzk0nz0TtMPGpkJLPw,9163
96
+ polars/functions/range/datetime_range.py,sha256=_HA2pQYrU8KiFLmKf6j93Spy1YiwxuaGuWoPSskQZ0o,11761
97
+ polars/functions/range/int_range.py,sha256=Aam0-U0lqK1IPUgA4ipBnNi2XhxX9RgTqf40zdNO0t4,8960
98
+ polars/functions/range/linear_space.py,sha256=qrXcH0sdSLpK3Vh8JdagtVkFwg3M3a66jLlGa3MewMs,9588
99
+ polars/functions/range/time_range.py,sha256=bFf0ONR9PzwArAVdV2c7ytBwO9iVRwPu8ha8PBWoc7s,8374
100
+ polars/functions/repeat.py,sha256=5C6_ChIVKTlIf1Io0kbCh9pA_molw1wip2Dhq2i3QdY,6614
101
+ polars/functions/whenthen.py,sha256=yRT_ItcEHmyF4ZEqt9ts--lH0YoBjFJaMJpvUKDPELo,13648
102
+ polars/interchange/__init__.py,sha256=ncmHUXXa090TrfESp9fa8rf2E7BrSn6vA_RIbDnsKMs,256
103
+ polars/interchange/buffer.py,sha256=2XCqIwOhp0Ssg2G4BvBuf9F46MCUpgBjdDZSDpzVltI,2301
104
+ polars/interchange/column.py,sha256=xVb_MOBch0NIh6vkR2wSKip-XIKKLqbvOcwxUtXA5NE,6317
105
+ polars/interchange/dataframe.py,sha256=RCaO68qw1dfFmGBb6WXZcGwSNlZg8Aopz3WDx7a7iC0,7661
106
+ polars/interchange/from_dataframe.py,sha256=vW_f81mndboh4_I5U1YmTQMmAvB0WFwTUFbchu8MBlE,10731
107
+ polars/interchange/protocol.py,sha256=3P-Z5tOGWpGBqm0m1ImIhoMwRen_9yco21cNrC8qVWg,8799
108
+ polars/interchange/utils.py,sha256=Scldu6x7pFmduLMTwssLHA-wmYVJw2KK5b_FiqcRc1k,5007
109
+ polars/io/__init__.py,sha256=_iSivnSOX4xx9ngCIhf5mvOcNs2zhooJiXGv8VPAtWc,1702
110
+ polars/io/_utils.py,sha256=tSfBALD2eamwPwOKaO50hLLDXUva5_7aBP0O7Z7PPPI,10577
111
+ polars/io/avro.py,sha256=j6cykAGERyBQranuU95IRyz3Moba6Z8Q2YdHkY61XUY,1504
112
+ polars/io/clipboard.py,sha256=MdBnzvRQUA45OyCswkYW54Q3A3EVGlkndqI3mHqTc58,1040
113
+ polars/io/cloud/__init__.py,sha256=F04FwSWQzcY6kesavKpET0FNmAfFGqeWhx87bS6bCjY,444
114
+ polars/io/cloud/_utils.py,sha256=tn-msBI6hr5b8_Mya2vqCZSTGkJEzy0valw6QMFNrSo,2074
115
+ polars/io/cloud/credential_provider/__init__.py,sha256=F04FwSWQzcY6kesavKpET0FNmAfFGqeWhx87bS6bCjY,444
116
+ polars/io/cloud/credential_provider/_builder.py,sha256=-hqQq0bAMJuWX87dftiq_utbbHnaigEj6l1x2QEVEnw,17214
117
+ polars/io/cloud/credential_provider/_providers.py,sha256=xU4J-Sblesj6kn6RO9MqGtWZ4WeZPg-DzKBE0hFCRpU,19338
118
+ polars/io/csv/__init__.py,sha256=kEWOdO9wXivvTQ3h3-ihsgf10WFScctv2R6e3QK9Lik,226
119
+ polars/io/csv/_utils.py,sha256=dcSL4FAEUw4sozM69hAUm4V_RZnDu_zhanxqy3aEpQ0,1157
120
+ polars/io/csv/batched_reader.py,sha256=1pNG40PMd6Sa1PxC4f_XSbFrLpZaX_gXJsFYCk7oGEA,5018
121
+ polars/io/csv/functions.py,sha256=CqNdgNX10j1geH-ZWSX2teSgkxH_1Bdcn31GASplJ5k,61069
122
+ polars/io/database/__init__.py,sha256=iHwXZEfTUlEQHiRb4HU9616lyzHq80ac6jo9aUcx2N0,135
123
+ polars/io/database/_arrow_registry.py,sha256=RPP_1QU-2oHi7zmeweJTORUihEA4HcOrRY3gJ4ixm2Y,2191
124
+ polars/io/database/_cursor_proxies.py,sha256=J-19TVrYplIQFGUeWQbdsJuLFxl4VgZlvKHJEj88gDA,4976
125
+ polars/io/database/_executor.py,sha256=cjb4j9yzwKLC5jhw_x8h4Ek74r3HEvmbdtmRJkIYXa8,22054
126
+ polars/io/database/_inference.py,sha256=77kMXSzIZtZR0neyCvSzDRt4VnSM2bHQoFpbVKqKB44,9434
127
+ polars/io/database/_utils.py,sha256=6_UF6biowsUsOYUqe0IoFe5l1csX1T_U2HXfpDlZeus,5248
128
+ polars/io/database/functions.py,sha256=oW9GTVGruI40SwZl4sT9nyZNFyYDbn9Vqpt91vGl6gU,21231
129
+ polars/io/delta.py,sha256=sJCjeKyHsRDE1etls2xGC8LR5gwDUXevMkwgl7terQE,18538
130
+ polars/io/iceberg/__init__.py,sha256=2ld3Bz4ISnLV7233eymjR3ziq6rCywULeQrrWg7U_Ps,81
131
+ polars/io/iceberg/_utils.py,sha256=aBefH9hT0P8khCB76dzkX1n4jeorwwtrKcBZx-A-HiU,22106
132
+ polars/io/iceberg/dataset.py,sha256=4NSDp0FCdJ789ueM05nKeM0gq_Z3bwqovBwdA-l8UxU,18974
133
+ polars/io/iceberg/functions.py,sha256=1Ot1Lcmn6SOOOEtEFysva-FqZf6QORq6s0Q6CqkSHSM,5562
134
+ polars/io/ipc/__init__.py,sha256=XmCXIVeJmDbZuysPLU9Agili-z9Kwkk7GJ-w20sppNw,182
135
+ polars/io/ipc/functions.py,sha256=uz_F5_uw-eilg-Mx2Ee5eq9MmHAQ3z2I2OgstOq6r20,18592
136
+ polars/io/json/__init__.py,sha256=3mC2atTEDwLx1Vld1NjzYRey37Nwm3CnWCJvh4h4vX4,67
137
+ polars/io/json/read.py,sha256=uztcU0mmOab2TfRz98xLl0iIJYQH-Aj2JO_89_Paxqc,3473
138
+ polars/io/ndjson.py,sha256=qkniEHu8rrj1O3BemhIW1ZqPLs-ZxEpi-t1W8TR7he8,13240
139
+ polars/io/parquet/__init__.py,sha256=_Ybr6NlnqLNu0vpE1RiUU3ST8HmXebiorzNCPLxzOJs,352
140
+ polars/io/parquet/field_overwrites.py,sha256=tNu1GlRVut5_7dCx5gTpTTQCKI2QjWIKaGO61fwwk8s,4558
141
+ polars/io/parquet/functions.py,sha256=KSs9hIQEr2QJIQRlEgjldLmUAW6lfrL9UMW1AfBjcnU,27838
142
+ polars/io/partition.py,sha256=QgGHlgku3uc9_zKzvjCAgBpCWfii4w2zdYpuE8RixgY,16154
143
+ polars/io/plugins.py,sha256=MMYrqxhAdOY5r3fIT9L70GJlzx2SeABhK2w9H3HjPQg,5592
144
+ polars/io/pyarrow_dataset/__init__.py,sha256=jECWdlzLTxVRzGX0uGiF3PiVEg8vj9x6DKFD3SaE5OY,112
145
+ polars/io/pyarrow_dataset/anonymous_scan.py,sha256=j2-weGQc-oxxFUPfrVhpwslO12vW6RnCaV7fTkylVV4,3023
146
+ polars/io/pyarrow_dataset/functions.py,sha256=m58fDUDKkaUQYVmC7rKZO54YaKtQ6G9bJ7aGOVjmWZw,2696
147
+ polars/io/scan_options/__init__.py,sha256=Cjy8osLmcWCdwj8n9RRxrYsEyPSrK9Vw0uzVB969YxY,102
148
+ polars/io/scan_options/_options.py,sha256=4gxYiB4JpS1OEZSu2AscfLqOk7WUbazMjRWK3ss84Og,1727
149
+ polars/io/scan_options/cast_options.py,sha256=hfg8njwideaFFi19hQBMVwu_8S-UBXptWeAhQvulORI,4537
150
+ polars/io/spreadsheet/__init__.py,sha256=vB-RiA9Zp89bAxTmpytruJ08XpTzF39Ad8HMx3HzPHQ,114
151
+ polars/io/spreadsheet/_utils.py,sha256=YSgRif_3VBxdOmvqqR_owHDAfzd5RF8ZekMorsNxv-s,1270
152
+ polars/io/spreadsheet/_write_utils.py,sha256=daSzSWzvIYoX09fj0tS_ZKOZUcNSIoRxBlANOe1RsYc,22421
153
+ polars/io/spreadsheet/functions.py,sha256=M2qReB6dq2ihLfbGER_ZT3MKHMH1EGAJWaEQY_-b8Ac,49532
154
+ polars/lazyframe/__init__.py,sha256=ZtImghbooqqTmo3jJPO4hC4FUK_UwMyfKPkJqpX4Y10,221
155
+ polars/lazyframe/engine_config.py,sha256=b8g2hfk7FsCOmjNzcLTMta88KDzb509HU1WScrKKpaY,1925
156
+ polars/lazyframe/frame.py,sha256=bNAdpWccpSHdPubb-mnXLfO3yfWafDnVlgDNHwIzpYU,324778
157
+ polars/lazyframe/group_by.py,sha256=GMvOIs5R_KF0SmSxUiDTjd9K7Bv2QrgZJa9NFz2PSdI,25762
158
+ polars/lazyframe/in_process.py,sha256=jXREOXIvmaKy_8qmh2mV8di2CAf7LSuYT9eG46_aITM,1133
159
+ polars/lazyframe/opt_flags.py,sha256=IBItsdEhty2Do1oKB-bW0VcK3yg_1EK440EdH7Ohoos,12513
160
+ polars/meta/__init__.py,sha256=2lwZboOohQrJedHmduFYMSG2YPaUuoAjD9jnhgqEkfI,450
161
+ polars/meta/build.py,sha256=HODJl_1DuyulofqycYV4tChFjUGquefDDnqPRB3l9Ho,706
162
+ polars/meta/index_type.py,sha256=-ixBjNRbergiIlmoHKRnyPoNdcqKSNiPMh6l7_dIglw,602
163
+ polars/meta/thread_pool.py,sha256=BFH_4nSDbMn9MVzTjD-6HVwwBo5UzjmZQ5wXWELrxR4,1465
164
+ polars/meta/versions.py,sha256=RlfVTbe6qzfB1flHtxoL5K-klJfDvdiYE6E2vzNhZRc,3636
165
+ polars/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ polars/ml/torch.py,sha256=10iGIQzvF81pjBtUwJxgXk0fzSF0bJ2-9E8bUZ-vh08,6884
167
+ polars/ml/utilities.py,sha256=DHgXxNxme62b3pmlHRm4qCXRSdYMDGo0Vw80iRFiBvU,970
168
+ polars/plugins.py,sha256=gapqG4nvsV7ozNCsa_ArTzvtjtIEp0S1YzUFMHhI6dM,5029
169
+ polars/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ polars/pyproject.toml,sha256=eKGlX---GgxQIf-HpwYcSCZulQyPWmOJ_xxMal3W9M8,2674
171
+ polars/schema.py,sha256=iwANNeCRjywYgFMSJn3GFHNT_sexiCOu7eLb-yddmJU,8086
172
+ polars/selectors.py,sha256=YMJF4U9MLsgZcAMSm-daXPeOvlw8ObCkSP5MpjLPCnU,101011
173
+ polars/series/__init__.py,sha256=46p-NaYRZgKX7r-trwCiGYGE6kNVI50eJeRrV90a1KI,69
174
+ polars/series/array.py,sha256=j74rd-tTIKhoUeyFBRJAgYGLHqgCt-48saOd6rfJyqM,18882
175
+ polars/series/binary.py,sha256=IiyUqFNVgpqm2Oq29eCw5DsWqt3IeX2T8qXTOxfVlM0,6241
176
+ polars/series/categorical.py,sha256=WKcRT6ARJYAawnCsFX4772PDjDZ5Si7ax-NJqZ2EtsM,6578
177
+ polars/series/datetime.py,sha256=MgUvLfB2DqUF3TSHik4oDv9_yjSMYRiO_o3lgBZoD4Q,65980
178
+ polars/series/list.py,sha256=eJkZm14wJhOGsJQfiCHIJLD4xfqMulO0I7twtOT990U,27170
179
+ polars/series/plotting.py,sha256=h1BmBSz7cZBCQt-qeHN6IXbNdx78LPOBeT_3BvXd_Dw,6673
180
+ polars/series/series.py,sha256=-1HSEbz0ayOH6kmgsLhN_HMV7v-2OW0B3D4-KjKytbA,268459
181
+ polars/series/string.py,sha256=1nj3v4wHtK82STn8Uub72FHJg3fn3AySqZQ-or7FrEo,71783
182
+ polars/series/struct.py,sha256=LHoyYag6Ez0cxhZmIFJrEXHhjXcwvrLnAuq3VkabGKU,4138
183
+ polars/series/utils.py,sha256=3Olj1CQoJ39ON7jxX894MX0akVLDmu7omeNmHgCeMG0,6303
184
+ polars/sql/__init__.py,sha256=Fjy1FPFh4xKovhjUm6lTkkJJs1Dx-2BoUnVUhfdnNHc,123
185
+ polars/sql/context.py,sha256=oBoae9OpU4bLxOA9qqr-FSnBewDm8sHzzQ0e7aZb0zQ,23987
186
+ polars/sql/functions.py,sha256=XT7IGyDSWD4ZeleOq096cGyTeOvpbyaWlQGIZ5R_zpU,4608
187
+ polars/string_cache.py,sha256=oIaHCKmrUGKpRNLb3VYAAqmKUF6_P9AfPr8kjHm7fj0,5483
188
+ polars/testing/__init__.py,sha256=cKrszJCSG2JI0a75AwhRfha-78I1KHzPIbHWwqIeiMU,274
189
+ polars/testing/asserts/__init__.py,sha256=W5Q0PSf8JtMthiDy-rBJVnUagPJBmJx_9hP0OtIZUZs,300
190
+ polars/testing/asserts/frame.py,sha256=47PUCs-KJjPKXtY02RwQ5ZwPI_uEa1q_X8Ig22yUizw,7292
191
+ polars/testing/asserts/series.py,sha256=Y5itYdCMJWhmb3vOt6cvQ09J9RA9AKOCkTl1NQL-ZS0,6496
192
+ polars/testing/asserts/utils.py,sha256=jzg8ahqrMgQ3wKVCWhN0ruJZYpGotyPwW3XTqMe_Rds,398
193
+ polars/testing/parametric/__init__.py,sha256=k1wk4UK3QHU-WTAb2JoX1LF8dIXu7J40mdmNd-0Ua0w,711
194
+ polars/testing/parametric/profiles.py,sha256=fMzDy2QG4qJjYjXtcYb9LiWMEGQg891Kd8QBTbqJ0lw,3675
195
+ polars/testing/parametric/strategies/__init__.py,sha256=dCGp6fiqm8ioN8_Dx3x6pY3-dR6hnAJZjrA9uCLMyk8,484
196
+ polars/testing/parametric/strategies/_utils.py,sha256=cen12yEv6UVSlJzDS721_U36CeVWeqPyRbTbzhIoWCA,397
197
+ polars/testing/parametric/strategies/core.py,sha256=rpv_F5hWS-6ISauGfRS1oFbLRxpdXXyNSyOZikb-bLo,22149
198
+ polars/testing/parametric/strategies/data.py,sha256=UHQu50pFlyIq1XQvSELmBHAhvUlfCA3IMZqvyV1mQXw,13300
199
+ polars/testing/parametric/strategies/dtype.py,sha256=axPD8RGgjx0TJx7uMpjgjwqJEA7pmqI3lW6B8Yt36tM,13507
200
+ polars/testing/parametric/strategies/legacy.py,sha256=UMTuJJmam5XZ99bo2_BNirN2CSaD6AwPtXtmlIyKgfI,5831
201
+ polars/type_aliases.py,sha256=i008PaGDXXNbq4S1C6VKzaYjnda9Q8hi2vjztWmCeCc,849
202
+ _polars_runtime_compat/_polars_runtime_compat.abi3.so,sha256=E9ASBVJm2pqXgOdZViO0k3RDcWrWKADEI-xUCikU8YU,109787632
203
+ polars_runtime_compat-1.34.0b2.dist-info/RECORD,,
@@ -0,0 +1,4 @@
1
+ Wheel-Version: 1.0
2
+ Generator: maturin (1.8.3)
3
+ Root-Is-Purelib: false
4
+ Tag: cp39-abi3-macosx_11_0_arm64
@@ -0,0 +1,20 @@
1
+ Copyright (c) 2025 Ritchie Vink
2
+ Some portions Copyright (c) 2024 NVIDIA CORPORATION & AFFILIATES. All rights reserved.
3
+
4
+ Permission is hereby granted, free of charge, to any person obtaining a copy
5
+ of this software and associated documentation files (the "Software"), to deal
6
+ in the Software without restriction, including without limitation the rights
7
+ to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
8
+ copies of the Software, and to permit persons to whom the Software is
9
+ furnished to do so, subject to the following conditions:
10
+
11
+ The above copyright notice and this permission notice shall be included in all
12
+ copies or substantial portions of the Software.
13
+
14
+ THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
15
+ IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
16
+ FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
17
+ AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
18
+ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
19
+ OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
20
+ SOFTWARE.