polars-runtime-compat 1.34.0b2__cp39-abi3-win_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.
- _polars_runtime_compat/.gitkeep +0 -0
- _polars_runtime_compat/_polars_runtime_compat.pyd +0 -0
- polars/__init__.py +528 -0
- polars/_cpu_check.py +265 -0
- polars/_dependencies.py +355 -0
- polars/_plr.py +99 -0
- polars/_plr.pyi +2496 -0
- polars/_reexport.py +23 -0
- polars/_typing.py +478 -0
- polars/_utils/__init__.py +37 -0
- polars/_utils/async_.py +102 -0
- polars/_utils/cache.py +176 -0
- polars/_utils/cloud.py +40 -0
- polars/_utils/constants.py +29 -0
- polars/_utils/construction/__init__.py +46 -0
- polars/_utils/construction/dataframe.py +1397 -0
- polars/_utils/construction/other.py +72 -0
- polars/_utils/construction/series.py +560 -0
- polars/_utils/construction/utils.py +118 -0
- polars/_utils/convert.py +224 -0
- polars/_utils/deprecation.py +406 -0
- polars/_utils/getitem.py +457 -0
- polars/_utils/logging.py +11 -0
- polars/_utils/nest_asyncio.py +264 -0
- polars/_utils/parquet.py +15 -0
- polars/_utils/parse/__init__.py +12 -0
- polars/_utils/parse/expr.py +242 -0
- polars/_utils/polars_version.py +19 -0
- polars/_utils/pycapsule.py +53 -0
- polars/_utils/scan.py +27 -0
- polars/_utils/serde.py +63 -0
- polars/_utils/slice.py +215 -0
- polars/_utils/udfs.py +1251 -0
- polars/_utils/unstable.py +63 -0
- polars/_utils/various.py +782 -0
- polars/_utils/wrap.py +25 -0
- polars/api.py +370 -0
- polars/catalog/__init__.py +0 -0
- polars/catalog/unity/__init__.py +19 -0
- polars/catalog/unity/client.py +733 -0
- polars/catalog/unity/models.py +152 -0
- polars/config.py +1571 -0
- polars/convert/__init__.py +25 -0
- polars/convert/general.py +1046 -0
- polars/convert/normalize.py +261 -0
- polars/dataframe/__init__.py +5 -0
- polars/dataframe/_html.py +186 -0
- polars/dataframe/frame.py +12582 -0
- polars/dataframe/group_by.py +1067 -0
- polars/dataframe/plotting.py +257 -0
- polars/datatype_expr/__init__.py +5 -0
- polars/datatype_expr/array.py +56 -0
- polars/datatype_expr/datatype_expr.py +304 -0
- polars/datatype_expr/list.py +18 -0
- polars/datatype_expr/struct.py +69 -0
- polars/datatypes/__init__.py +122 -0
- polars/datatypes/_parse.py +195 -0
- polars/datatypes/_utils.py +48 -0
- polars/datatypes/classes.py +1213 -0
- polars/datatypes/constants.py +11 -0
- polars/datatypes/constructor.py +172 -0
- polars/datatypes/convert.py +366 -0
- polars/datatypes/group.py +130 -0
- polars/exceptions.py +230 -0
- polars/expr/__init__.py +7 -0
- polars/expr/array.py +964 -0
- polars/expr/binary.py +346 -0
- polars/expr/categorical.py +306 -0
- polars/expr/datetime.py +2620 -0
- polars/expr/expr.py +11272 -0
- polars/expr/list.py +1408 -0
- polars/expr/meta.py +444 -0
- polars/expr/name.py +321 -0
- polars/expr/string.py +3045 -0
- polars/expr/struct.py +357 -0
- polars/expr/whenthen.py +185 -0
- polars/functions/__init__.py +193 -0
- polars/functions/aggregation/__init__.py +33 -0
- polars/functions/aggregation/horizontal.py +298 -0
- polars/functions/aggregation/vertical.py +341 -0
- polars/functions/as_datatype.py +848 -0
- polars/functions/business.py +138 -0
- polars/functions/col.py +384 -0
- polars/functions/datatype.py +121 -0
- polars/functions/eager.py +524 -0
- polars/functions/escape_regex.py +29 -0
- polars/functions/lazy.py +2751 -0
- polars/functions/len.py +68 -0
- polars/functions/lit.py +210 -0
- polars/functions/random.py +22 -0
- polars/functions/range/__init__.py +19 -0
- polars/functions/range/_utils.py +15 -0
- polars/functions/range/date_range.py +303 -0
- polars/functions/range/datetime_range.py +370 -0
- polars/functions/range/int_range.py +348 -0
- polars/functions/range/linear_space.py +311 -0
- polars/functions/range/time_range.py +287 -0
- polars/functions/repeat.py +301 -0
- polars/functions/whenthen.py +353 -0
- polars/interchange/__init__.py +10 -0
- polars/interchange/buffer.py +77 -0
- polars/interchange/column.py +190 -0
- polars/interchange/dataframe.py +230 -0
- polars/interchange/from_dataframe.py +328 -0
- polars/interchange/protocol.py +303 -0
- polars/interchange/utils.py +170 -0
- polars/io/__init__.py +64 -0
- polars/io/_utils.py +317 -0
- polars/io/avro.py +49 -0
- polars/io/clipboard.py +36 -0
- polars/io/cloud/__init__.py +17 -0
- polars/io/cloud/_utils.py +80 -0
- polars/io/cloud/credential_provider/__init__.py +17 -0
- polars/io/cloud/credential_provider/_builder.py +520 -0
- polars/io/cloud/credential_provider/_providers.py +618 -0
- polars/io/csv/__init__.py +9 -0
- polars/io/csv/_utils.py +38 -0
- polars/io/csv/batched_reader.py +142 -0
- polars/io/csv/functions.py +1495 -0
- polars/io/database/__init__.py +6 -0
- polars/io/database/_arrow_registry.py +70 -0
- polars/io/database/_cursor_proxies.py +147 -0
- polars/io/database/_executor.py +578 -0
- polars/io/database/_inference.py +314 -0
- polars/io/database/_utils.py +144 -0
- polars/io/database/functions.py +516 -0
- polars/io/delta.py +499 -0
- polars/io/iceberg/__init__.py +3 -0
- polars/io/iceberg/_utils.py +697 -0
- polars/io/iceberg/dataset.py +556 -0
- polars/io/iceberg/functions.py +151 -0
- polars/io/ipc/__init__.py +8 -0
- polars/io/ipc/functions.py +514 -0
- polars/io/json/__init__.py +3 -0
- polars/io/json/read.py +101 -0
- polars/io/ndjson.py +332 -0
- polars/io/parquet/__init__.py +17 -0
- polars/io/parquet/field_overwrites.py +140 -0
- polars/io/parquet/functions.py +722 -0
- polars/io/partition.py +491 -0
- polars/io/plugins.py +187 -0
- polars/io/pyarrow_dataset/__init__.py +5 -0
- polars/io/pyarrow_dataset/anonymous_scan.py +109 -0
- polars/io/pyarrow_dataset/functions.py +79 -0
- polars/io/scan_options/__init__.py +5 -0
- polars/io/scan_options/_options.py +59 -0
- polars/io/scan_options/cast_options.py +126 -0
- polars/io/spreadsheet/__init__.py +6 -0
- polars/io/spreadsheet/_utils.py +52 -0
- polars/io/spreadsheet/_write_utils.py +647 -0
- polars/io/spreadsheet/functions.py +1323 -0
- polars/lazyframe/__init__.py +9 -0
- polars/lazyframe/engine_config.py +61 -0
- polars/lazyframe/frame.py +8564 -0
- polars/lazyframe/group_by.py +669 -0
- polars/lazyframe/in_process.py +42 -0
- polars/lazyframe/opt_flags.py +333 -0
- polars/meta/__init__.py +14 -0
- polars/meta/build.py +33 -0
- polars/meta/index_type.py +27 -0
- polars/meta/thread_pool.py +50 -0
- polars/meta/versions.py +120 -0
- polars/ml/__init__.py +0 -0
- polars/ml/torch.py +213 -0
- polars/ml/utilities.py +30 -0
- polars/plugins.py +155 -0
- polars/py.typed +0 -0
- polars/pyproject.toml +96 -0
- polars/schema.py +265 -0
- polars/selectors.py +3117 -0
- polars/series/__init__.py +5 -0
- polars/series/array.py +776 -0
- polars/series/binary.py +254 -0
- polars/series/categorical.py +246 -0
- polars/series/datetime.py +2275 -0
- polars/series/list.py +1087 -0
- polars/series/plotting.py +191 -0
- polars/series/series.py +9197 -0
- polars/series/string.py +2367 -0
- polars/series/struct.py +154 -0
- polars/series/utils.py +191 -0
- polars/sql/__init__.py +7 -0
- polars/sql/context.py +677 -0
- polars/sql/functions.py +139 -0
- polars/string_cache.py +185 -0
- polars/testing/__init__.py +13 -0
- polars/testing/asserts/__init__.py +9 -0
- polars/testing/asserts/frame.py +231 -0
- polars/testing/asserts/series.py +219 -0
- polars/testing/asserts/utils.py +12 -0
- polars/testing/parametric/__init__.py +33 -0
- polars/testing/parametric/profiles.py +107 -0
- polars/testing/parametric/strategies/__init__.py +22 -0
- polars/testing/parametric/strategies/_utils.py +14 -0
- polars/testing/parametric/strategies/core.py +615 -0
- polars/testing/parametric/strategies/data.py +452 -0
- polars/testing/parametric/strategies/dtype.py +436 -0
- polars/testing/parametric/strategies/legacy.py +169 -0
- polars/type_aliases.py +24 -0
- polars_runtime_compat-1.34.0b2.dist-info/METADATA +31 -0
- polars_runtime_compat-1.34.0b2.dist-info/RECORD +203 -0
- polars_runtime_compat-1.34.0b2.dist-info/WHEEL +4 -0
- polars_runtime_compat-1.34.0b2.dist-info/licenses/LICENSE +1 -0
|
@@ -0,0 +1,203 @@
|
|
|
1
|
+
polars_runtime_compat-1.34.0b2.dist-info/METADATA,sha256=aT-7YAqmBHFnYb6K-JOO1_XAnTuRY_b1AlwWRgZD2-0,1335
|
|
2
|
+
polars_runtime_compat-1.34.0b2.dist-info/WHEEL,sha256=VPkCyWw1RVO9Fn-kukc1BJ55-ZbMs9YMowAKSb8B8Oo,94
|
|
3
|
+
polars_runtime_compat-1.34.0b2.dist-info/licenses/LICENSE,sha256=Hogezyhi0B5uW8K4YeRohtKm-wFJnAxQiiCacnGxPPI,10
|
|
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=kk0DD1-7AKKbxSMk7a9kkqkDChKyaxdSkH9pN0WrUMU,114835968
|
|
203
|
+
polars_runtime_compat-1.34.0b2.dist-info/RECORD,,
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
../LICENSE
|