polars-runtime-compat 1.34.0b2__cp39-abi3-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 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.pyd +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=2Odeq1yfVKhB8DOtWZbHoYHdR_hL53m16XIghihFo7s,7467
2
+ polars_runtime_compat-1.34.0b2.dist-info/WHEEL,sha256=Knh24GxuPajrgujpzxXdeeXMnLIvsBdfIjwPKjrPZc8,94
3
+ polars_runtime_compat-1.34.0b2.dist-info/licenses/LICENSE,sha256=ITtBHFxPLFN6AneW_TGeIwlfPCL3ZNIzg7yolMAj7GM,1163
4
+ _polars_runtime_compat/.gitkeep,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
5
+ polars/__init__.py,sha256=UPNRHzcewjeZEE3EbHRB97N4Afvg5h3frQzk-NSBqN8,11918
6
+ polars/_cpu_check.py,sha256=Vog72geCBAMszBNKtZI6mitfq1VF19ke2pza2x9rEP8,10028
7
+ polars/_dependencies.py,sha256=-u021vfKy51QZTuiki62FDLl7TJBv0x9JhpnR_EHjII,11768
8
+ polars/_plr.py,sha256=VO8H6e_Muyfk_-dVCasi5DGLs-KAlKwD6L8djV6BvEw,3255
9
+ polars/_plr.pyi,sha256=FKBUfM57efvy8AsgUL_YPMe-ZitM_W7HoMZ7R6GYjIY,95743
10
+ polars/_reexport.py,sha256=3rCZDeRUnEK1chxHh0b6ivn-sbSLQ3TeDMe4N6Ka3Hk,578
11
+ polars/_typing.py,sha256=PzWjNmvLR3FEVz29v5E_dxH5AlEzVHDzDxbIp1x9uSU,15064
12
+ polars/_utils/__init__.py,sha256=8xHqbV1ZVyj95DoJtB9Cp9vRtK7gEVBLNV-HBLjkFF8,801
13
+ polars/_utils/async_.py,sha256=HITBKp7tOfySRYzpMiFqhsOB7i_FqrrGn4L3BH8FbHk,3489
14
+ polars/_utils/cache.py,sha256=ujtjgvgwgD57_zyoql1uaSsTAlEvLuqNvoZ0_MLLD_k,6103
15
+ polars/_utils/cloud.py,sha256=gfDpw8htSyHGywfAjWazxF-ORVAwCp6a2UJG1CdbWNQ,1142
16
+ polars/_utils/constants.py,sha256=_Y553bb720Y6voDIOxUuRE9rU2hzmq9zXugbQuCVfXs,663
17
+ polars/_utils/construction/__init__.py,sha256=kgWswQ96GYWXP5fTWAeQJgP9nnAQc6LglOC2MwtKQpE,1052
18
+ polars/_utils/construction/dataframe.py,sha256=rvB1OgHeZup3JlkkFzW-RGL2_yk1b2ypmfE0UzhvKZw,48310
19
+ polars/_utils/construction/other.py,sha256=7LcOuCxuniDdbW5Bz3LvoRzr8gmcrmgQ-PEF68HdbS0,2586
20
+ polars/_utils/construction/series.py,sha256=Ho0w9qFUse2z625fFeft9qhnNTb44AnmQ8XmxYrzlUM,18804
21
+ polars/_utils/construction/utils.py,sha256=DanT1g2XmOOtqa6qwBRzuOsAuyjx769Icn_-qqquDS8,4040
22
+ polars/_utils/convert.py,sha256=ZiNa-icXzC9Q4zdCbZjHZWIvHVKAKn1zsnZ6iNEAm7U,7067
23
+ polars/_utils/deprecation.py,sha256=RmZSxyNImxb0re1BdiXYpmKPnvlUlVU9CG-3RgkjciE,14179
24
+ polars/_utils/getitem.py,sha256=6-q6n4VQWLR9HVrJPeSJGx49PRVod8ctbCBta7_T80U,15639
25
+ polars/_utils/logging.py,sha256=GQHnRHfJx0RG63MRSXnLUBjlQT8gsMeTxdxJh6EMEjM,212
26
+ polars/_utils/nest_asyncio.py,sha256=1sVXfQZeMquLJOvFAXa3N8hocZGunGfSMZbwO8kULJE,9376
27
+ polars/_utils/parquet.py,sha256=M8P4E07gh_nGcwT0dDiPFwsNRHTsxLEZm-cfW8a9PQg,468
28
+ polars/_utils/parse/__init__.py,sha256=Fv0W0jhsNIssKa_xuIops1UJsd02gyGv3PvPHmyd_iM,311
29
+ polars/_utils/parse/expr.py,sha256=ZVT8geJJqYDNLveZjUpzH-MWykVoMWP9TINVZyj_B-o,7469
30
+ polars/_utils/polars_version.py,sha256=DP_07Pjm-2s_RGhLm3Wzowgr3IZtxP4Ul4VsmXTbR1o,470
31
+ polars/_utils/pycapsule.py,sha256=qBuxBz7LYa4kQQj2Ec3rzrL_9maiApQXDrpUZCaN9tQ,1837
32
+ polars/_utils/scan.py,sha256=Gj4eZL6-6_pHI-2BczE4zMr7ulnuIiC1fGP0RoUjRO0,673
33
+ polars/_utils/serde.py,sha256=w1sAGVn0ftYoZWdvXkJniD3a40wPqEusMJYuR1WEAKw,1858
34
+ polars/_utils/slice.py,sha256=EcZJo_sAdcMBHbI9xmMIxNhwrywG_ygKmm6IBaOWLvI,8205
35
+ polars/_utils/udfs.py,sha256=soQ5tDCzRriwz0qyf5BmcTxCsQdUWQLJNhpN82R0pSU,48666
36
+ polars/_utils/unstable.py,sha256=4uBJvr_DbU5evHkX2Gp22HyAOVECguuOcfF735ZpXTI,1768
37
+ polars/_utils/various.py,sha256=rg1DC9VpNmeTRqqi8qqLupSQUFEakkq9mls1pAVG6nU,26124
38
+ polars/_utils/wrap.py,sha256=D-_ft-NGLnWmlRnRYhGV-09D5l6bTTHCzVp4z8MfMuo,602
39
+ polars/api.py,sha256=ygIQFAI4OPcXHgVidGFtNiBWwlZKJ39bzKn_1hfSvAU,13513
40
+ polars/catalog/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
41
+ polars/catalog/unity/__init__.py,sha256=18y4oXTITa3brcjehufAW2Wh3buYqCEZukQ_J9lhjNg,361
42
+ polars/catalog/unity/client.py,sha256=eR0eJBwOt29EIqo8W4k5REvw4cBmuzFrnJXxohtT4G4,26089
43
+ polars/catalog/unity/models.py,sha256=wWY0u0sjZwyUrV9OPa2HjDECGSvK4-17O4o_H_6wnoo,3819
44
+ polars/config.py,sha256=qN0CpHnTiXaqDXjeHK_F5ApcSYTivvX9TwOo4ihipbY,61369
45
+ polars/convert/__init__.py,sha256=uBC0MA7KAADCeKubjxeVRsSaqF5-xQM7cufcbynse9o,469
46
+ polars/convert/general.py,sha256=4WnKayYjQn63NW3Jk_74UftyLpKsIdczLPtdvEo6OHM,39098
47
+ polars/convert/normalize.py,sha256=iQvKnPgAWGtTYOznxUqi1mJQNfhB0AGcQSWC9J-bpD0,9378
48
+ polars/dataframe/__init__.py,sha256=MAyjHtwvsYOIiXs2Isa5iktvENLJRIY6hhYT_jL4FyQ,82
49
+ polars/dataframe/_html.py,sha256=boLPc-ZFIZP9TH_i40xhdb1mrhuRHbtZ63yRIaW8POs,6299
50
+ polars/dataframe/frame.py,sha256=SkU6gf1flkUXjwEYY6YrxsjOE6qBIYVCNB6I2v2VHhI,486764
51
+ polars/dataframe/group_by.py,sha256=qQbq14FQsRNHoWJ4LXQRT9BKzkraF0emCzrfsIME4Kg,39886
52
+ polars/dataframe/plotting.py,sha256=1CDTovwy1NVBeiNagZpw5fVLtrJAPCG4vaVAqvZua8o,8440
53
+ polars/datatype_expr/__init__.py,sha256=gn32fjJnEY0tFg4SrjHtyC1KSTF4WLvzfLbnKf0hdSU,100
54
+ polars/datatype_expr/array.py,sha256=gtliAk7aj7zkR_p3PEE0I1Nnqzr7bIrbr3zQ2r8gNXg,1629
55
+ polars/datatype_expr/datatype_expr.py,sha256=1RQPo-pL7LOAQtWZ9nxhcOdGe3ig2uMqB4ce_Z-J2qU,10467
56
+ polars/datatype_expr/list.py,sha256=lPb_VU__vP1vRybTg3_i-rcwgjT_5UDj3wYpgFqUbW0,514
57
+ polars/datatype_expr/struct.py,sha256=V1RwA_rHNo7QaxJkWZ8JKTtT3yKM6YQ8WElSJST3qp4,2163
58
+ polars/datatypes/__init__.py,sha256=bkRA4_F43-GZymVSbmQ6spPIdQdc9DYRrydaR7uoSuw,2268
59
+ polars/datatypes/_parse.py,sha256=iXDjop6_51R2Q63lJTZ-BZghj4rf-JhHlnS55CJuMno,5858
60
+ polars/datatypes/_utils.py,sha256=HYNaqrtZoEt8Iscan6Ni9N8rYH3vHz0GzF7N-21gfv0,1750
61
+ polars/datatypes/classes.py,sha256=7gnRQOxltmmWGC_tMejsWmINExqD99Jzrkd4wQFCOTo,37312
62
+ polars/datatypes/constants.py,sha256=jcIt57reZyOarGHQC1hi6WZ5M2B6CxjXgr-3RmunzA8,298
63
+ polars/datatypes/constructor.py,sha256=K4iwPXHIRLXONZiO2EEMh7JuIL6JkYo-UeeHMwGqtZ0,6236
64
+ polars/datatypes/convert.py,sha256=uEYafbG5OAMWLxfVEIWKk8TJRlHhese0XqBRVusqg54,11592
65
+ polars/datatypes/group.py,sha256=ku2gxCtJyCtGilHXax2jcGVkUVyhDbtjIhGsjOUf_I4,3156
66
+ polars/exceptions.py,sha256=EFG4U1MzhijYRVkRqa3MCxHcIX1NBMjhTvZG0v1pSLM,8624
67
+ polars/expr/__init__.py,sha256=bcUn4mvVtScOTNkhkKhXfeg6QdH6iBdnE58N0pR8VyY,118
68
+ polars/expr/array.py,sha256=Iapiq4s1SSyNf5TV2fDvD1UxX7DXNlE0pnoIzOLuES0,35117
69
+ polars/expr/binary.py,sha256=kWxMUU7dKt4CrwPeXEj18GK55EglxMX0oHIZbIdC96o,14663
70
+ polars/expr/categorical.py,sha256=DIdVVydfPE-kGUZBa_W49ZcJEqX9PyAlG-rQaUNO9e8,11099
71
+ polars/expr/datetime.py,sha256=GXJoDUmJqOfgl4omMNUiweehtxESgoRe90LzBZDowDk,118874
72
+ polars/expr/expr.py,sha256=ttPgmdI0DQYS_m2gpTrjw7LANzWXtHkf8pxfFr9MnZE,425369
73
+ polars/expr/list.py,sha256=ezgfWgGwDMWllYyNNRl7jR26ZqkNTXTSWTYSlFVBYok,57360
74
+ polars/expr/meta.py,sha256=eklFJuphhQP8TWnda4u-W2zWD7njhRvVfV9dJK0mvoo,14232
75
+ polars/expr/name.py,sha256=tv20k9VHZEPGkjP6iLNDtSOF4zYgL7Q-HXYor1E03nE,10615
76
+ polars/expr/string.py,sha256=dJ3JCP0Afr1UWH4Z_KiUQR5wmIkDqwKcgHSfqs9vMLY,134282
77
+ polars/expr/struct.py,sha256=9ZlfbjYvbiDl0fJu_RnYaOHTA74tJtc4LawF8W_QpSg,14240
78
+ polars/expr/whenthen.py,sha256=7twlz23LgT5wqMmp-7SehWmazsEaE-Lz4-gs7oVbbPY,6341
79
+ polars/functions/__init__.py,sha256=0ssqjVAiYJx4oFy1gTUEA4YggdoaoMURbZSKK5X_Or4,3871
80
+ polars/functions/aggregation/__init__.py,sha256=5hkNlih3LyKwqtsxFKTdZmMtEJkIQwZYk__9UktwQYE,590
81
+ polars/functions/aggregation/horizontal.py,sha256=2weo-nFdegnP7YXEwBPn6MgdZulzjhWhbcJvkYXlgJk,10973
82
+ polars/functions/aggregation/vertical.py,sha256=cNrW9Jhw4GOvDlA7ZSoxem71oMtbdtTEo2oyeABDyG0,8253
83
+ polars/functions/as_datatype.py,sha256=c8d3oTArjgoeykz9Se-flhyRk7PfeZTA1ivEmRroh2E,34940
84
+ polars/functions/business.py,sha256=TM1CbzpfkZ_AUZ34tOj8rIWnFjW62EE-rNJRQW0HrNo,5992
85
+ polars/functions/col.py,sha256=Obgrzf_RDH-dONgihQh6g8JUD4wzSPzV46vZH552EQA,13006
86
+ polars/functions/datatype.py,sha256=BIjoss1ga-3QKPwngkuebNvaHVeVaC1AsaHKxw2t5PI,3734
87
+ polars/functions/eager.py,sha256=_Citjag4Q_Fjn9OX7ikzQQTAh9QgVgEi7LMQM3eDaGg,25317
88
+ polars/functions/escape_regex.py,sha256=Jj_I2Ut7cr83EGtcUVa2VutJAlyhh7ikz21ePCIVPZw,835
89
+ polars/functions/lazy.py,sha256=_a8eVVwcxjSo6AXEFpws-lghl3JVG5kbaR_xIJ5tKDY,81071
90
+ polars/functions/len.py,sha256=YSYhacdOFfO7ZQWeuWOiCg59Kp7oQBuXbtLfPDSijE0,1891
91
+ polars/functions/lit.py,sha256=J0urc9pDK_YohUZ0NXFycX7uXKwRari9BmyXg-do9cA,7702
92
+ polars/functions/random.py,sha256=mOR8PFAD7X8KKsCIY6QJr1Gzl1ips1TELTAT2U40Cbo,550
93
+ polars/functions/range/__init__.py,sha256=g83xYfE0r09dtADBWxqXcsaSafFSUUFwofqQAz6Pe4E,616
94
+ polars/functions/range/_utils.py,sha256=LPXSIBfTxIXPLXXBRFuDwUmkxYPTh9fhebd-iUKmbdA,462
95
+ polars/functions/range/date_range.py,sha256=g-eJjcZUdWFSNq-AZ_bUbUFWnmVHKZuqK9TVSFlqNtM,9466
96
+ polars/functions/range/datetime_range.py,sha256=Mjhqa5gdPnMhA1akugu9yRqT_Uc6Nhhg6Hxd3iS7soM,12131
97
+ polars/functions/range/int_range.py,sha256=sqhhUFF49n16z-Qt3NiIOq3IbGTtOSwO7GLLT4oQ6Zo,9308
98
+ polars/functions/range/linear_space.py,sha256=S6auRbJ7j17qbvIg_kmojfm4nXF_HoBlSsXNmABCSk4,9899
99
+ polars/functions/range/time_range.py,sha256=6-s3uH2F-Y0nx2-Dm5qx4N6nVaiu-R1IhpI2LBy6TpM,8661
100
+ polars/functions/repeat.py,sha256=vdAFgTi5wa6eTXZ2OVqxh3QojT5ip-tUD51CNDVC5rk,6915
101
+ polars/functions/whenthen.py,sha256=X39VLbiUImA55-EYvJmctOEIaQAXsx_GkeA5Tnaek3s,14001
102
+ polars/interchange/__init__.py,sha256=fkAQk79vfOnoqKpaANRegv3bLFcKMi32us4i_aplBqM,266
103
+ polars/interchange/buffer.py,sha256=-PzsZ0F2LZPZSlBH8qDMOOxGXoFCzroxq95nnH_qKuc,2378
104
+ polars/interchange/column.py,sha256=IKY9VNWPX2lkN7ZQsMRwNg_NFp6FD7nRpoujvZLAFWo,6507
105
+ polars/interchange/dataframe.py,sha256=ClDrO1gk4wldCoSdMrRdqHhg131hstEy7agY9IYyJbM,7891
106
+ polars/interchange/from_dataframe.py,sha256=vlIIimOfddvhbUQzxS_dxN-ZB2e5XUxAr68aoIPoDJI,11059
107
+ polars/interchange/protocol.py,sha256=puE2B3mTc4aLWPLY0wT4lK4Xb5cpwJJdc1EQn8oIR7w,9102
108
+ polars/interchange/utils.py,sha256=vV6QZtPEAA4sf9XoVotYI_E6fc4Wlcl5zBvQ5PQkifM,5177
109
+ polars/io/__init__.py,sha256=df4Q10vu6mx8amVakaZoxlgjNM5Rm3_hm1jSpT4Qfwg,1766
110
+ polars/io/_utils.py,sha256=SeHg23HOXM8q4bqjfxYGcyVOcdwf1WymTWkJpsezx0w,10894
111
+ polars/io/avro.py,sha256=r2Dtc4RB1OgO-_C8Ee8wnagNRygedLxQzasnFWPkmDk,1553
112
+ polars/io/clipboard.py,sha256=DBHCZ5Slpx_SAr3i5hgRkoAR9kMYbB7S1hxosBgyURs,1076
113
+ polars/io/cloud/__init__.py,sha256=Hm7zfclMowX2XyPApsIIXVVw7trKDGr96DoaMtmNhBQ,461
114
+ polars/io/cloud/_utils.py,sha256=owKPRr0W454ZUrT9i2iiGxSvIZuQK_4Oh9yox3ATHTk,2154
115
+ polars/io/cloud/credential_provider/__init__.py,sha256=Hm7zfclMowX2XyPApsIIXVVw7trKDGr96DoaMtmNhBQ,461
116
+ polars/io/cloud/credential_provider/_builder.py,sha256=0mod4bI3tPC6y58iNDnqrk6Q5oRTGaWwlYF84Lp_YKo,17734
117
+ polars/io/cloud/credential_provider/_providers.py,sha256=dXarNSAxLSxCkLxD2Iq3Q-UWE2ynBRad9H2Bbwy2hAI,19956
118
+ polars/io/csv/__init__.py,sha256=wyLVjUA6nCQf9g7iKqjycA08a_w0N0dYoYRzUfOcc0E,235
119
+ polars/io/csv/_utils.py,sha256=MXC1ASrKCbBL7M-V9ZSTf6QK12ETBPzP7t_JUv3BxwM,1195
120
+ polars/io/csv/batched_reader.py,sha256=4lfnbT0BC5p1V5n1hIiYJoTd8Q1lqmyRY4eTziTVeU8,5160
121
+ polars/io/csv/functions.py,sha256=9OICOVrk36UeLbo11YLrCDIobU-kYePcp2iPx9r2zhw,62564
122
+ polars/io/database/__init__.py,sha256=WrRnFV1hsRzTUNKxDzpBN5hOrpQ3xpJhjSPoneR5uFY,141
123
+ polars/io/database/_arrow_registry.py,sha256=jEZDBGfGWaK89966Ok5ZbuUoqq4XdLSotND74QVSg0U,2261
124
+ polars/io/database/_cursor_proxies.py,sha256=PB2PWzlbi4vdx1cGRZIfQuWMgjjBLw7ETsPJcBhppQg,5123
125
+ polars/io/database/_executor.py,sha256=AKtnsxLw4XnckGBhZT8Bz5p4saFcKshDGp4-wFFje4I,22632
126
+ polars/io/database/_inference.py,sha256=c7oXTizyq51PRKDJ0xERmx0gAVRe1f_5Scs7NZKtPdE,9748
127
+ polars/io/database/_utils.py,sha256=AOeQdj0fqVth3uk9TqMaTvoSfNqWlHpwkpWGrVxEM8c,5392
128
+ polars/io/database/functions.py,sha256=Lthpl1zXxFgMnqjXtM_QxxFpGiF1Bat9tiXdE-BHm3o,21747
129
+ polars/io/delta.py,sha256=hncHprKv8MJcn2v_Yfna799PDHRRIaE5UOcI7531Jcg,19037
130
+ polars/io/iceberg/__init__.py,sha256=wVxuOVavpScfpWoEPsypW19eXxPR85urgiGzcdM0D3A,84
131
+ polars/io/iceberg/_utils.py,sha256=RdtYgqpna8DOcJTM4LNiFdf5QqH-cuxUpLTT8-uXCYA,22803
132
+ polars/io/iceberg/dataset.py,sha256=oE2A80DBE3mnWPuZBaTq0n3w8BZymY-jrqu3dwZYg6Q,19530
133
+ polars/io/iceberg/functions.py,sha256=7FRRpZq3Pv9HK38ZmaBwlftKrNnfr53a5b70lx79d6A,5713
134
+ polars/io/ipc/__init__.py,sha256=TKRrs39Dr5LVz_QB6N4DRGA2cW9IcXtKfxe6k6ybfIw,190
135
+ polars/io/ipc/functions.py,sha256=Xh4v9qswURglaj9M3vUKK4UKhaOuWo6_05Lg2RmoSpg,19106
136
+ polars/io/json/__init__.py,sha256=cQ0FULSZOLMeTYZNMOcffAolB807K3W-ynEy9N-vdsY,70
137
+ polars/io/json/read.py,sha256=qUxlRSn4yoV9uRY2L8jbyxXBcQmfse4UCiv5khsfMG8,3574
138
+ polars/io/ndjson.py,sha256=UPUsY6gkG6NOTNNGznHpezlBfnNkbt3xGKfWQXNQ0LQ,13572
139
+ polars/io/parquet/__init__.py,sha256=xWE8oqpr3f_IDIh9kPDPo-OXt2XLAZJjFoh7Duu5kNI,369
140
+ polars/io/parquet/field_overwrites.py,sha256=leIkHzIy4bSPN-07bV7RBcvNjUS-gSLRy8azy1ya1-o,4698
141
+ polars/io/parquet/functions.py,sha256=wnO5yA0_ofApmaCyerQZXhBlG2gJK7Ss7AKEvtNoZIA,28560
142
+ polars/io/partition.py,sha256=I45jZ7KNnWN7FGO8A1FF3dMKO64OeomCMJQXXEdf4lA,16645
143
+ polars/io/plugins.py,sha256=5bbB5loxB8tq1AOtRZdcHQCAMMa31T6sYq3Ymq8iwJo,5779
144
+ polars/io/pyarrow_dataset/__init__.py,sha256=CKs324snU2vsvaOn3Mvkeqg9cOIKgH3daQCJDoo8GBA,117
145
+ polars/io/pyarrow_dataset/anonymous_scan.py,sha256=eDLFb9vlxDXPJbfWSnAqOtAVj6Na3Exk4uAZPq0vLtM,3132
146
+ polars/io/pyarrow_dataset/functions.py,sha256=VoMfkTMPx-EdVh02EtwaPHOU4KtsLwzwmYeG1MKbFy0,2775
147
+ polars/io/scan_options/__init__.py,sha256=c6Aqz1Ams2Vkv5iIgjO4vhV8mvpY6RrcQPjdlGDEx-w,107
148
+ polars/io/scan_options/_options.py,sha256=P4KPHvJtA7IpraFBjxMvEpjXfNiRDL8FeXhlRgKoJiM,1786
149
+ polars/io/scan_options/cast_options.py,sha256=zmHglr165eabI31X7ITjwFqRF0qdwA-YjK5F7YDkBTs,4663
150
+ polars/io/spreadsheet/__init__.py,sha256=IdjO_muVEpBzULzpQTpM0mePMgAzc3QL6RpP1CnkHYk,120
151
+ polars/io/spreadsheet/_utils.py,sha256=1RrQLROQtvxUZ8eKtbChsuCyoq97rXF25L1kU47Nuvg,1322
152
+ polars/io/spreadsheet/_write_utils.py,sha256=ONdXAzazMZWd4NoKcPgThcvBLDOd4tPuAZWE6c1B-Sk,23068
153
+ polars/io/spreadsheet/functions.py,sha256=Zq-ZuXm7cGox9CjmJ8NwQmqAJbHKNS4QuTbGofnPCBI,50855
154
+ polars/lazyframe/__init__.py,sha256=DyeJylpO2_Tup_ax8LhuQ8yykq2evidqsuLlnKztQ84,230
155
+ polars/lazyframe/engine_config.py,sha256=PuN7N0XvYMA2xXwN1DTvVG3IGyK2BAu42JVK3Jg7Xrs,1986
156
+ polars/lazyframe/frame.py,sha256=pMpwl9-qtC8ZQQfZmEgfe6ppkq_EUfUi6am-RC0WogI,333342
157
+ polars/lazyframe/group_by.py,sha256=iluhwJsfiTsC-UyeXFqNEYL5gEB59udLB-RCt1Irk_4,26431
158
+ polars/lazyframe/in_process.py,sha256=c1NEOorulc9tkawzsmphDamGU-_bzhB7nAOZstp4Sk0,1175
159
+ polars/lazyframe/opt_flags.py,sha256=pfCHK6WVzCOn2yqVKZzvzWflTOaoBySDszc78iTRYbQ,12846
160
+ polars/meta/__init__.py,sha256=YzIklkll0wLAfPL8R_LyVs6483XR9CXImO1b5TntXDU,464
161
+ polars/meta/build.py,sha256=OcKZJ0R8oJjoi27HiTA4rviuQT8BJpS1GtyBVFBa_74,739
162
+ polars/meta/index_type.py,sha256=Wh1euWz3ZbDcHb9A976lfcwQYCNXUOQuiYZohQWdL48,629
163
+ polars/meta/thread_pool.py,sha256=H2Xzi-NVlqz3G-QEfs11ACTdvHVj4IaDfSG3dZ8M-bs,1515
164
+ polars/meta/versions.py,sha256=sUfxP3285ugRxdZnh1O_tsGZEq4DwHzrLJV6Wv3AJEU,3756
165
+ polars/ml/__init__.py,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
166
+ polars/ml/torch.py,sha256=M77FVgO2ED4q9bMHNgE_YyMBXGlIxkK8x9lMvxaghzU,7097
167
+ polars/ml/utilities.py,sha256=IJ-h4CcwUVH_bQ8UPyv3UwtXUNyUZ5W3-hjZGow-nvU,1000
168
+ polars/plugins.py,sha256=y2kE5nWU_v4Zk0kGaVV1MQybLBUg9RaV2nw21H_ZaO0,5184
169
+ polars/py.typed,sha256=47DEQpj8HBSa-_TImW-5JCeuQeRkm5NMpJWZG3hSuFU,0
170
+ polars/pyproject.toml,sha256=uwbRJxHv08kWFQrnaE2M54Tz-GnXVjFR82qTkDCN_i8,2770
171
+ polars/schema.py,sha256=oU3rhRCNUi-zuM2TdcoFs4VZNN0CAgBkBOYAHFH76Ew,8351
172
+ polars/selectors.py,sha256=eVJH3BWSZ1ybn4Qv9ByYY7wbLSWb9MgA205wA4ge338,104128
173
+ polars/series/__init__.py,sha256=0MZwil-bHjkar5t5iAIlulvOPGGtaL1etcfhoO7wKr4,74
174
+ polars/series/array.py,sha256=lg07D1g-3Px2H45rqW5Cselg2-oyeppmihsaONqZ8ps,19658
175
+ polars/series/binary.py,sha256=0BcvoQhziDAkgLJxJarLof6BFz3-tyammnNdZM5WC30,6495
176
+ polars/series/categorical.py,sha256=lx7XEi5HBbTtO68fciLJUlkfsbRmGw0S5j6uXXzbNRc,6824
177
+ polars/series/datetime.py,sha256=Bcw6r6mhsm40eAl9kl0KYmlocR5QJvJFER1MlwS7y3k,68255
178
+ polars/series/list.py,sha256=DfZ3okRdKLloxJRRJRdr0YOqU6j9kTLAB9pQXDXjw4I,28257
179
+ polars/series/plotting.py,sha256=2rN-7I9lP7NFa3Ui6a70ZmV-zsI12JPyoHlx9gMVbpY,6864
180
+ polars/series/series.py,sha256=46HYI97uMp4V7xl9Zyw_UY9zDcqXywEFiSx0NM0dhRU,277656
181
+ polars/series/string.py,sha256=KIPIplW48NkXPpwy3Pmk8Ts0il-Kq0yX6CpTDNn9OMY,74150
182
+ polars/series/struct.py,sha256=QEAg66IZ6XYjSV5omNGf96q45wYlkDsQBBCvd_--BW4,4292
183
+ polars/series/utils.py,sha256=U63hv122LEfsEyeBIJrKodWL5WD3ivdlUMGJszxhwbE,6494
184
+ polars/sql/__init__.py,sha256=XfZESvOuSu8uT8cSgOWv8UxXDdT_xk6aNSUDEr6WCUY,130
185
+ polars/sql/context.py,sha256=IGcTBNO48Y8WcVclF_mvEOx9LzQo-9ZmvKIE20oVFjM,24664
186
+ polars/sql/functions.py,sha256=khu_2WOvth1rqrSf1fBhiLP_-bUh3r7M_49iS_KgLvU,4747
187
+ polars/string_cache.py,sha256=Ag9NXxrGuZLWyBGDAzZ9xV6CQWpMK0kV81k_M49Z0pk,5668
188
+ polars/testing/__init__.py,sha256=II2BYerxalFINhx_Dv3IIc8bOUbIIRwZ3gOFCigBnj4,287
189
+ polars/testing/asserts/__init__.py,sha256=SDFQDfGq1wK69kx4pjuvEUqWaMamy2f-D2bvXk9PqyA,309
190
+ polars/testing/asserts/frame.py,sha256=UAbaQalxwZtzoys-40PHsBB8d5uAndkk0ggGPNvKsOg,7523
191
+ polars/testing/asserts/series.py,sha256=rcDqy3s47qSy8Sm97nNeIy6hGGqPvjH3iFGY8Xj1E18,6715
192
+ polars/testing/asserts/utils.py,sha256=Fo5DCfFUBjuDqUIgPm7iSNQkEB6p-4l5HEP3j-oq2YQ,410
193
+ polars/testing/parametric/__init__.py,sha256=jADadWkEp44t3qnmKi9glYG765DTaBa-PsXQR52S5wo,744
194
+ polars/testing/parametric/profiles.py,sha256=v6adNY0hO5Pgy82tdwnpK7XPC106xkMXptOuPKmYQFU,3782
195
+ polars/testing/parametric/strategies/__init__.py,sha256=ZOLy7eRc_GaORKXt0KeqAxo8BCWrIuuNrMCj8x6fTnQ,506
196
+ polars/testing/parametric/strategies/_utils.py,sha256=mQ7lTApluaoC00DJpX_hPkSrmDF3PDMZNnOwTjl_7YU,411
197
+ polars/testing/parametric/strategies/core.py,sha256=Gcutyr-PqeOiZ57J2X1vdLXCqnCq5tszUYG5JpO57uE,22764
198
+ polars/testing/parametric/strategies/data.py,sha256=3aOtIzclaBBpChGaykderVARHKJ7QxlULlV0zHJMH4Y,13752
199
+ polars/testing/parametric/strategies/dtype.py,sha256=IafjFV3P2qf59ZCyR2T-WxqZJRFvE27ym6v4VseZXtU,13943
200
+ polars/testing/parametric/strategies/legacy.py,sha256=v31yNc2ywgNWZQpAINUA2Cs2u1rExSPKq4QBs_68Cjs,6000
201
+ polars/type_aliases.py,sha256=tz5J2yiD3WzVfFOp_cXkfgHMyng5Yv9yIK97wNmJRK0,873
202
+ _polars_runtime_compat/_polars_runtime_compat.pyd,sha256=F7PMrmbOSotCwWt3fFdiOyFmhmC3U8ThyeE_He-JNF8,140187648
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-win_amd64
@@ -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.