polars-df 0.21.0-aarch64-linux → 0.22.0-aarch64-linux

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.
Files changed (53) hide show
  1. checksums.yaml +4 -4
  2. data/CHANGELOG.md +27 -0
  3. data/Cargo.lock +55 -48
  4. data/Cargo.toml +3 -0
  5. data/LICENSE-THIRD-PARTY.txt +23 -49
  6. data/README.md +12 -0
  7. data/lib/polars/3.2/polars.so +0 -0
  8. data/lib/polars/3.3/polars.so +0 -0
  9. data/lib/polars/3.4/polars.so +0 -0
  10. data/lib/polars/array_expr.rb +382 -3
  11. data/lib/polars/array_name_space.rb +281 -0
  12. data/lib/polars/binary_expr.rb +67 -0
  13. data/lib/polars/binary_name_space.rb +43 -0
  14. data/lib/polars/cat_expr.rb +224 -0
  15. data/lib/polars/cat_name_space.rb +138 -0
  16. data/lib/polars/config.rb +2 -2
  17. data/lib/polars/convert.rb +6 -6
  18. data/lib/polars/data_frame.rb +794 -27
  19. data/lib/polars/data_type_expr.rb +52 -0
  20. data/lib/polars/data_types.rb +26 -5
  21. data/lib/polars/date_time_expr.rb +252 -1
  22. data/lib/polars/date_time_name_space.rb +299 -0
  23. data/lib/polars/expr.rb +1248 -206
  24. data/lib/polars/functions/business.rb +95 -0
  25. data/lib/polars/functions/datatype.rb +21 -0
  26. data/lib/polars/functions/lazy.rb +14 -1
  27. data/lib/polars/io/csv.rb +1 -1
  28. data/lib/polars/io/iceberg.rb +27 -0
  29. data/lib/polars/io/json.rb +4 -4
  30. data/lib/polars/io/ndjson.rb +4 -4
  31. data/lib/polars/io/parquet.rb +32 -7
  32. data/lib/polars/io/scan_options.rb +4 -1
  33. data/lib/polars/lazy_frame.rb +1028 -28
  34. data/lib/polars/list_expr.rb +217 -17
  35. data/lib/polars/list_name_space.rb +231 -22
  36. data/lib/polars/meta_expr.rb +89 -0
  37. data/lib/polars/name_expr.rb +36 -0
  38. data/lib/polars/query_opt_flags.rb +50 -0
  39. data/lib/polars/scan_cast_options.rb +20 -1
  40. data/lib/polars/schema.rb +79 -3
  41. data/lib/polars/selector.rb +72 -0
  42. data/lib/polars/selectors.rb +3 -3
  43. data/lib/polars/series.rb +1053 -54
  44. data/lib/polars/string_expr.rb +436 -32
  45. data/lib/polars/string_name_space.rb +736 -50
  46. data/lib/polars/struct_expr.rb +103 -0
  47. data/lib/polars/struct_name_space.rb +19 -1
  48. data/lib/polars/utils/serde.rb +17 -0
  49. data/lib/polars/utils/various.rb +22 -1
  50. data/lib/polars/utils.rb +5 -1
  51. data/lib/polars/version.rb +1 -1
  52. data/lib/polars.rb +6 -0
  53. metadata +8 -2
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 60d0b090b5bc6c08d21767a42eadc963c2ba4c10a770ca489d2de9fdac59a427
4
- data.tar.gz: 887c38c08649329156f0aa88ac441fab94b5a35bc30b11a736ae4d212fc3e721
3
+ metadata.gz: 6b37510e4ac89512e010a1c6e3479694762e136eadcc12290b6e23b36375ff63
4
+ data.tar.gz: 904aa2bd4caa850e58fc6fdbd82f1c067e407d972a0c6522eddca5943ba76878
5
5
  SHA512:
6
- metadata.gz: c7a60287d096c7d37d2b0e42e258201d7c271b08c4504c787984ab13d0c052069108ec9778dd9120ff4a4bce8c5b0e66ea717045940c5aa62cc90a133af70388
7
- data.tar.gz: 72901434de7af56e3986f83f2fec2bd33a9544f7c8efb311a63b7e0b4e9d6767a3dd2383602712c8fdc8827d4e56f5d4118c0a253d3b00d7b90420faf664ca24
6
+ metadata.gz: 16f4892bb8cc9cba81d0948284c2250ee1042938cdce3d3f9aef667398896a713fc3e0d42a12a08d769eb3b0bc39fec6305b42f4dbeb2f53273ba20dd860f54d
7
+ data.tar.gz: 649b6dfd0478504ef4b52dfa05b3a74b8b3440037d547561f0bfb5df0238e8c558c5c6a0231231dff67c44715b522f64524945ee9844be2c82da7bbd62f8184a
data/CHANGELOG.md CHANGED
@@ -1,3 +1,30 @@
1
+ ## 0.22.0 (2025-09-17)
2
+
3
+ - Updated Polars to 0.51.0
4
+ - Added `serialize` and `deserialize` methods to `DataFrame`
5
+ - Added `storage_options` and `retries` options to `sink_ipc` method
6
+ - Added `business_day_count` method to `Polars`
7
+ - Added experimental support for Iceberg
8
+ - Added experimental `cast_options` option to `scan_parquet` method
9
+ - Changed `read_parquet_schema` method to return `Schema`
10
+ - Fixed `Object` type
11
+
12
+ ## 0.21.1 (2025-08-18)
13
+
14
+ - Added `read_parquet_metadata` method to `Polars`
15
+ - Added more methods to `Series` and `Expr`
16
+ - Added more methods to `DataFrame` and `LazyFrame`
17
+ - Added more methods to `ArrayExpr` and `ArrayNameSpace`
18
+ - Added more methods to `BinaryExpr` and `BinaryNameSpace`
19
+ - Added more methods to `CatExpr` and `CatNameSpace`
20
+ - Added more methods to `DateTimeExpr` ane `DateTimeNameSpace`
21
+ - Added more methods to `ListExpr` and `ListNameSpace`
22
+ - Added more methods to `MetaExpr`
23
+ - Added more methods to `NameExpr`
24
+ - Added more methods to `StringExpr` and `StringNameSpace`
25
+ - Added more methods to `StructExpr` and `StructNameSpace`
26
+ - Fixed `subset` option for `drop_nulls` method
27
+
1
28
  ## 0.21.0 (2025-08-03)
2
29
 
3
30
  - Updated Polars to 0.50.0
data/Cargo.lock CHANGED
@@ -1391,8 +1391,9 @@ dependencies = [
1391
1391
 
1392
1392
  [[package]]
1393
1393
  name = "magnus"
1394
- version = "0.7.1"
1395
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1394
+ version = "0.8.1"
1395
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1396
+ checksum = "bd2ac6e71886be00ac34db92aa732c793c5107c95191805b9a1c7e70e6d342e0"
1396
1397
  dependencies = [
1397
1398
  "chrono",
1398
1399
  "magnus-macros",
@@ -1403,8 +1404,9 @@ dependencies = [
1403
1404
 
1404
1405
  [[package]]
1405
1406
  name = "magnus-macros"
1406
- version = "0.6.0"
1407
- source = "git+https://github.com/matsadler/magnus.git?rev=4125ee2ab5a405d17aa6d7503961c1ecdbe499ef#4125ee2ab5a405d17aa6d7503961c1ecdbe499ef"
1407
+ version = "0.8.0"
1408
+ source = "registry+https://github.com/rust-lang/crates.io-index"
1409
+ checksum = "47607461fd8e1513cb4f2076c197d8092d921a1ea75bd08af97398f593751892"
1408
1410
  dependencies = [
1409
1411
  "proc-macro2",
1410
1412
  "quote",
@@ -1654,7 +1656,7 @@ dependencies = [
1654
1656
 
1655
1657
  [[package]]
1656
1658
  name = "polars"
1657
- version = "0.21.0"
1659
+ version = "0.22.0"
1658
1660
  dependencies = [
1659
1661
  "ahash",
1660
1662
  "bytes",
@@ -1664,10 +1666,11 @@ dependencies = [
1664
1666
  "magnus",
1665
1667
  "mimalloc",
1666
1668
  "num-traits",
1667
- "polars 0.50.0",
1669
+ "polars 0.51.0",
1668
1670
  "polars-arrow",
1669
1671
  "polars-core",
1670
1672
  "polars-dtype",
1673
+ "polars-error",
1671
1674
  "polars-io",
1672
1675
  "polars-lazy",
1673
1676
  "polars-parquet",
@@ -1680,9 +1683,9 @@ dependencies = [
1680
1683
 
1681
1684
  [[package]]
1682
1685
  name = "polars"
1683
- version = "0.50.0"
1686
+ version = "0.51.0"
1684
1687
  source = "registry+https://github.com/rust-lang/crates.io-index"
1685
- checksum = "fde57577c2b4b823d85617c2c95c11fcdc649e68467030e321e573800524946c"
1688
+ checksum = "a5f7feb5d56b954e691dff22a8b2d78d77433dcc93c35fe21c3777fdc121b697"
1686
1689
  dependencies = [
1687
1690
  "getrandom 0.2.16",
1688
1691
  "getrandom 0.3.3",
@@ -1702,9 +1705,9 @@ dependencies = [
1702
1705
 
1703
1706
  [[package]]
1704
1707
  name = "polars-arrow"
1705
- version = "0.50.0"
1708
+ version = "0.51.0"
1706
1709
  source = "registry+https://github.com/rust-lang/crates.io-index"
1707
- checksum = "29f705dc037eb0a4213554a19320f13c02095c63bdd5e9e7f960817fa29b7b8d"
1710
+ checksum = "32b4fed2343961b3eea3db2cee165540c3e1ad9d5782350cc55a9e76cf440148"
1708
1711
  dependencies = [
1709
1712
  "atoi_simd",
1710
1713
  "avro-schema",
@@ -1745,9 +1748,9 @@ dependencies = [
1745
1748
 
1746
1749
  [[package]]
1747
1750
  name = "polars-compute"
1748
- version = "0.50.0"
1751
+ version = "0.51.0"
1749
1752
  source = "registry+https://github.com/rust-lang/crates.io-index"
1750
- checksum = "896f4efdf1292121df34d6214fd32e634ce9aa5f3739519b3ccd9c11bda75d2a"
1753
+ checksum = "138785beda4e4a90a025219f09d0d15a671b2be9091513ede58e05db6ad4413f"
1751
1754
  dependencies = [
1752
1755
  "atoi_simd",
1753
1756
  "bytemuck",
@@ -1771,9 +1774,9 @@ dependencies = [
1771
1774
 
1772
1775
  [[package]]
1773
1776
  name = "polars-core"
1774
- version = "0.50.0"
1777
+ version = "0.51.0"
1775
1778
  source = "registry+https://github.com/rust-lang/crates.io-index"
1776
- checksum = "11e2c54762ac17a039552033d81779b58619b832aa4f36ebc3395f9aa8bce083"
1779
+ checksum = "e77b1f08ef6dbb032bb1d0d3365464be950df9905f6827a95b24c4ca5518901d"
1777
1780
  dependencies = [
1778
1781
  "bitflags",
1779
1782
  "boxcar",
@@ -1807,9 +1810,9 @@ dependencies = [
1807
1810
 
1808
1811
  [[package]]
1809
1812
  name = "polars-dtype"
1810
- version = "0.50.0"
1813
+ version = "0.51.0"
1811
1814
  source = "registry+https://github.com/rust-lang/crates.io-index"
1812
- checksum = "6bdc47854d72f3df098a06b984de4105ca5030123445d3edef27502e6034019a"
1815
+ checksum = "89c43d0ea57168be4546c4d8064479ed8b29a9c79c31a0c7c367ee734b9b7158"
1813
1816
  dependencies = [
1814
1817
  "boxcar",
1815
1818
  "hashbrown",
@@ -1822,9 +1825,9 @@ dependencies = [
1822
1825
 
1823
1826
  [[package]]
1824
1827
  name = "polars-error"
1825
- version = "0.50.0"
1828
+ version = "0.51.0"
1826
1829
  source = "registry+https://github.com/rust-lang/crates.io-index"
1827
- checksum = "24d0fe86ef36dfa5c9e0b9833effd2e42cd64054b862fe40a243a635ecf62771"
1830
+ checksum = "b9cb5d98f59f8b94673ee391840440ad9f0d2170afced95fc98aa86f895563c0"
1828
1831
  dependencies = [
1829
1832
  "avro-schema",
1830
1833
  "object_store",
@@ -1837,9 +1840,9 @@ dependencies = [
1837
1840
 
1838
1841
  [[package]]
1839
1842
  name = "polars-expr"
1840
- version = "0.50.0"
1843
+ version = "0.51.0"
1841
1844
  source = "registry+https://github.com/rust-lang/crates.io-index"
1842
- checksum = "98212e4899b5432f2b89f2f33c665240f8882cf757e7a5d18cf7b03ba80cdc1e"
1845
+ checksum = "343931b818cf136349135ba11dbc18c27683b52c3477b1ba8ca606cf5ab1965c"
1843
1846
  dependencies = [
1844
1847
  "bitflags",
1845
1848
  "hashbrown",
@@ -1860,9 +1863,9 @@ dependencies = [
1860
1863
 
1861
1864
  [[package]]
1862
1865
  name = "polars-io"
1863
- version = "0.50.0"
1866
+ version = "0.51.0"
1864
1867
  source = "registry+https://github.com/rust-lang/crates.io-index"
1865
- checksum = "cba1a01ed61ec1ba3f3f7d1a7c4ad61cb7ece4bfd606d5d52bfa1384ce707109"
1868
+ checksum = "10388c64b8155122488229a881d1c6f4fdc393bc988e764ab51b182fcb2307e4"
1866
1869
  dependencies = [
1867
1870
  "async-trait",
1868
1871
  "atoi_simd",
@@ -1909,9 +1912,9 @@ dependencies = [
1909
1912
 
1910
1913
  [[package]]
1911
1914
  name = "polars-json"
1912
- version = "0.50.0"
1915
+ version = "0.51.0"
1913
1916
  source = "registry+https://github.com/rust-lang/crates.io-index"
1914
- checksum = "9d546be779c0f2e87870538deb87ca6d90910ba09cb867409c87ed5c13518b5d"
1917
+ checksum = "b26d1a04292a82183c8eba94fdf1584f200bfac5ac2f4a6c5652c8c8ed3bb41c"
1915
1918
  dependencies = [
1916
1919
  "chrono",
1917
1920
  "chrono-tz",
@@ -1931,9 +1934,9 @@ dependencies = [
1931
1934
 
1932
1935
  [[package]]
1933
1936
  name = "polars-lazy"
1934
- version = "0.50.0"
1937
+ version = "0.51.0"
1935
1938
  source = "registry+https://github.com/rust-lang/crates.io-index"
1936
- checksum = "1aa4dbd41c7508735c3e8c2607aef39679d89298b53f1462710fc3f95b6c5cbd"
1939
+ checksum = "0fb6e2c6c2fa4ea0c660df1c06cf56960c81e7c2683877995bae3d4e3d408147"
1937
1940
  dependencies = [
1938
1941
  "bitflags",
1939
1942
  "chrono",
@@ -1959,9 +1962,9 @@ dependencies = [
1959
1962
 
1960
1963
  [[package]]
1961
1964
  name = "polars-mem-engine"
1962
- version = "0.50.0"
1965
+ version = "0.51.0"
1963
1966
  source = "registry+https://github.com/rust-lang/crates.io-index"
1964
- checksum = "712491f22624672d1c97a0f1faca93645ce749aa497c04dd67914738872474e1"
1967
+ checksum = "20a856e98e253587c28d8132a5e7e5a75cb2c44731ca090f1481d45f1d123771"
1965
1968
  dependencies = [
1966
1969
  "futures",
1967
1970
  "memmap2",
@@ -1982,9 +1985,9 @@ dependencies = [
1982
1985
 
1983
1986
  [[package]]
1984
1987
  name = "polars-ops"
1985
- version = "0.50.0"
1988
+ version = "0.51.0"
1986
1989
  source = "registry+https://github.com/rust-lang/crates.io-index"
1987
- checksum = "7c433eb8eb4d5767504a6a145df286e503307d773dc92a085b9cabc6eaaafb01"
1990
+ checksum = "acf6062173fdc9ba05775548beb66e76643a148d9aeadc9984ed712bc4babd76"
1988
1991
  dependencies = [
1989
1992
  "aho-corasick",
1990
1993
  "argminmax",
@@ -2022,9 +2025,9 @@ dependencies = [
2022
2025
 
2023
2026
  [[package]]
2024
2027
  name = "polars-parquet"
2025
- version = "0.50.0"
2028
+ version = "0.51.0"
2026
2029
  source = "registry+https://github.com/rust-lang/crates.io-index"
2027
- checksum = "6efe8ffb9207c3d50d47ee9b5ee750beb889e7cffd2b61291766c74a020ee51d"
2030
+ checksum = "cc1d769180dec070df0dc4b89299b364bf2cfe32b218ecc4ddd8f1a49ae60669"
2028
2031
  dependencies = [
2029
2032
  "async-stream",
2030
2033
  "base64",
@@ -2060,9 +2063,9 @@ dependencies = [
2060
2063
 
2061
2064
  [[package]]
2062
2065
  name = "polars-plan"
2063
- version = "0.50.0"
2066
+ version = "0.51.0"
2064
2067
  source = "registry+https://github.com/rust-lang/crates.io-index"
2065
- checksum = "2219ff36b304d0543185773cf182c49eca4f558403fb33c464b7688cd4f178d2"
2068
+ checksum = "1cd3a2e33ae4484fe407ab2d2ba5684f0889d1ccf3ad6b844103c03638e6d0a0"
2066
2069
  dependencies = [
2067
2070
  "bitflags",
2068
2071
  "bytemuck",
@@ -2096,9 +2099,9 @@ dependencies = [
2096
2099
 
2097
2100
  [[package]]
2098
2101
  name = "polars-row"
2099
- version = "0.50.0"
2102
+ version = "0.51.0"
2100
2103
  source = "registry+https://github.com/rust-lang/crates.io-index"
2101
- checksum = "1eb03bbe6518a9a50fbe2f0d587f6634cf33f1e485657ef3db2bfab997fbc7a4"
2104
+ checksum = "18734f17e0e348724df3ae65f3ee744c681117c04b041cac969dfceb05edabc0"
2102
2105
  dependencies = [
2103
2106
  "bitflags",
2104
2107
  "bytemuck",
@@ -2111,9 +2114,9 @@ dependencies = [
2111
2114
 
2112
2115
  [[package]]
2113
2116
  name = "polars-schema"
2114
- version = "0.50.0"
2117
+ version = "0.51.0"
2115
2118
  source = "registry+https://github.com/rust-lang/crates.io-index"
2116
- checksum = "4b2daa5d628c4aa56deed967cc64fd24c9f62a919c8aaaf2b77b1457f8684f98"
2119
+ checksum = "8e6c1ab13e04d5167661a9854ed1ea0482b2ed9b8a0f1118dabed7cd994a85e3"
2117
2120
  dependencies = [
2118
2121
  "indexmap",
2119
2122
  "polars-error",
@@ -2124,9 +2127,9 @@ dependencies = [
2124
2127
 
2125
2128
  [[package]]
2126
2129
  name = "polars-sql"
2127
- version = "0.50.0"
2130
+ version = "0.51.0"
2128
2131
  source = "registry+https://github.com/rust-lang/crates.io-index"
2129
- checksum = "f9021d46eb864c2bd944a51676c24c17eaa9e5fe755be464a50827179e6dcb8d"
2132
+ checksum = "c4e7766da02cc1d464994404d3e88a7a0ccd4933df3627c325480fbd9bbc0a11"
2130
2133
  dependencies = [
2131
2134
  "bitflags",
2132
2135
  "hex",
@@ -2145,9 +2148,9 @@ dependencies = [
2145
2148
 
2146
2149
  [[package]]
2147
2150
  name = "polars-stream"
2148
- version = "0.50.0"
2151
+ version = "0.51.0"
2149
2152
  source = "registry+https://github.com/rust-lang/crates.io-index"
2150
- checksum = "22323af55f0f2f9f9d64d65a5b0277b8dfa45300e4f6ba8d96e30817059c433e"
2153
+ checksum = "31f6c6ca1ea01f9dea424d167e4f33f5ec44cd67fbfac9efd40575ed20521f14"
2151
2154
  dependencies = [
2152
2155
  "async-channel",
2153
2156
  "async-trait",
@@ -2177,14 +2180,15 @@ dependencies = [
2177
2180
  "recursive",
2178
2181
  "slotmap",
2179
2182
  "tokio",
2183
+ "tokio-util",
2180
2184
  "version_check",
2181
2185
  ]
2182
2186
 
2183
2187
  [[package]]
2184
2188
  name = "polars-time"
2185
- version = "0.50.0"
2189
+ version = "0.51.0"
2186
2190
  source = "registry+https://github.com/rust-lang/crates.io-index"
2187
- checksum = "954b926cf121787c9fd2cf274b66ed85be46ab425405d0c5a1830c885c78b259"
2191
+ checksum = "f6a3a6e279a7a984a0b83715660f9e880590c6129ec2104396bfa710bcd76dee"
2188
2192
  dependencies = [
2189
2193
  "atoi_simd",
2190
2194
  "bytemuck",
@@ -2206,14 +2210,15 @@ dependencies = [
2206
2210
 
2207
2211
  [[package]]
2208
2212
  name = "polars-utils"
2209
- version = "0.50.0"
2213
+ version = "0.51.0"
2210
2214
  source = "registry+https://github.com/rust-lang/crates.io-index"
2211
- checksum = "846a868e172550e4a3a465d7cdddee06377ccd0ea863cd49afd6f903078e0cff"
2215
+ checksum = "57b267021b0e5422d7fbc70fd79e51b9f9a8466c585779373a18b0199e973f29"
2212
2216
  dependencies = [
2213
2217
  "bincode",
2214
2218
  "bytemuck",
2215
2219
  "bytes",
2216
2220
  "compact_str",
2221
+ "either",
2217
2222
  "flate2",
2218
2223
  "foldhash",
2219
2224
  "hashbrown",
@@ -2446,9 +2451,9 @@ dependencies = [
2446
2451
 
2447
2452
  [[package]]
2448
2453
  name = "rb-sys-env"
2449
- version = "0.1.2"
2454
+ version = "0.2.2"
2450
2455
  source = "registry+https://github.com/rust-lang/crates.io-index"
2451
- checksum = "a35802679f07360454b418a5d1735c89716bde01d35b1560fc953c1415a0b3bb"
2456
+ checksum = "08f8d2924cf136a1315e2b4c7460a39f62ef11ee5d522df9b2750fab55b868b6"
2452
2457
 
2453
2458
  [[package]]
2454
2459
  name = "recursive"
@@ -3158,6 +3163,8 @@ dependencies = [
3158
3163
  "bytes",
3159
3164
  "futures-core",
3160
3165
  "futures-sink",
3166
+ "futures-util",
3167
+ "hashbrown",
3161
3168
  "pin-project-lite",
3162
3169
  "tokio",
3163
3170
  ]
data/Cargo.toml CHANGED
@@ -4,3 +4,6 @@ resolver = "2"
4
4
 
5
5
  [profile.release]
6
6
  strip = true
7
+
8
+ [profile.dev]
9
+ strip = true
@@ -542,11 +542,11 @@ lz4-sys v1.11.1+lz4-1.10.0
542
542
  https://github.com/10xGenomics/lz4-rs
543
543
  MIT
544
544
 
545
- magnus v0.7.1
545
+ magnus v0.8.1
546
546
  https://github.com/matsadler/magnus
547
547
  MIT
548
548
 
549
- magnus-macros v0.6.0
549
+ magnus-macros v0.8.0
550
550
  https://github.com/matsadler/magnus
551
551
  MIT
552
552
 
@@ -646,11 +646,11 @@ planus v1.1.1
646
646
  https://github.com/planus-org/planus
647
647
  MIT/Apache-2.0
648
648
 
649
- polars v0.50.0
649
+ polars v0.51.0
650
650
  https://www.pola.rs/
651
651
  MIT
652
652
 
653
- polars-arrow v0.50.0
653
+ polars-arrow v0.51.0
654
654
  https://www.pola.rs/
655
655
  MIT AND Apache-2.0
656
656
 
@@ -658,47 +658,47 @@ polars-arrow-format v0.2.0
658
658
  https://github.com/DataEngineeringLabs/arrow-format
659
659
  Apache-2.0
660
660
 
661
- polars-compute v0.50.0
661
+ polars-compute v0.51.0
662
662
  https://www.pola.rs/
663
663
  MIT
664
664
 
665
- polars-core v0.50.0
665
+ polars-core v0.51.0
666
666
  https://www.pola.rs/
667
667
  MIT
668
668
 
669
- polars-dtype v0.50.0
669
+ polars-dtype v0.51.0
670
670
  https://www.pola.rs/
671
671
  MIT
672
672
 
673
- polars-error v0.50.0
673
+ polars-error v0.51.0
674
674
  https://www.pola.rs/
675
675
  MIT
676
676
 
677
- polars-expr v0.50.0
677
+ polars-expr v0.51.0
678
678
  https://www.pola.rs/
679
679
  MIT
680
680
 
681
- polars-io v0.50.0
681
+ polars-io v0.51.0
682
682
  https://www.pola.rs/
683
683
  MIT
684
684
 
685
- polars-json v0.50.0
685
+ polars-json v0.51.0
686
686
  https://www.pola.rs/
687
687
  MIT
688
688
 
689
- polars-lazy v0.50.0
689
+ polars-lazy v0.51.0
690
690
  https://www.pola.rs/
691
691
  MIT
692
692
 
693
- polars-mem-engine v0.50.0
693
+ polars-mem-engine v0.51.0
694
694
  https://www.pola.rs/
695
695
  MIT
696
696
 
697
- polars-ops v0.50.0
697
+ polars-ops v0.51.0
698
698
  https://www.pola.rs/
699
699
  MIT
700
700
 
701
- polars-parquet v0.50.0
701
+ polars-parquet v0.51.0
702
702
  https://www.pola.rs/
703
703
  MIT AND Apache-2.0
704
704
 
@@ -706,31 +706,31 @@ polars-parquet-format v0.1.0
706
706
  https://github.com/pola-rs/parquet-format
707
707
  MIT AND Apache-2.0
708
708
 
709
- polars-plan v0.50.0
709
+ polars-plan v0.51.0
710
710
  https://www.pola.rs/
711
711
  MIT
712
712
 
713
- polars-row v0.50.0
713
+ polars-row v0.51.0
714
714
  https://www.pola.rs/
715
715
  MIT
716
716
 
717
- polars-schema v0.50.0
717
+ polars-schema v0.51.0
718
718
  https://www.pola.rs/
719
719
  MIT
720
720
 
721
- polars-sql v0.50.0
721
+ polars-sql v0.51.0
722
722
  https://www.pola.rs/
723
723
  MIT
724
724
 
725
- polars-stream v0.50.0
725
+ polars-stream v0.51.0
726
726
  https://www.pola.rs/
727
727
  MIT
728
728
 
729
- polars-time v0.50.0
729
+ polars-time v0.51.0
730
730
  https://www.pola.rs/
731
731
  MIT
732
732
 
733
- polars-utils v0.50.0
733
+ polars-utils v0.51.0
734
734
  https://www.pola.rs/
735
735
  MIT
736
736
 
@@ -806,7 +806,7 @@ rb-sys-build v0.9.117
806
806
  https://github.com/oxidize-rb/rb-sys
807
807
  MIT OR Apache-2.0
808
808
 
809
- rb-sys-env v0.1.2
809
+ rb-sys-env v0.2.2
810
810
  https://github.com/oxidize-rb/rb-sys
811
811
  MIT OR Apache-2.0
812
812
 
@@ -25236,32 +25236,6 @@ LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25236
25236
  OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25237
25237
  SOFTWARE.
25238
25238
 
25239
- ================================================================================
25240
- magnus magnus-macros/LICENSE
25241
- ================================================================================
25242
-
25243
- MIT License
25244
-
25245
- Copyright (c) 2023, 2022, 2021 Matthew Sadler
25246
-
25247
- Permission is hereby granted, free of charge, to any person obtaining a copy
25248
- of this software and associated documentation files (the "Software"), to deal
25249
- in the Software without restriction, including without limitation the rights
25250
- to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
25251
- copies of the Software, and to permit persons to whom the Software is
25252
- furnished to do so, subject to the following conditions:
25253
-
25254
- The above copyright notice and this permission notice shall be included in all
25255
- copies or substantial portions of the Software.
25256
-
25257
- THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
25258
- IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
25259
- FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
25260
- AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
25261
- LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
25262
- OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
25263
- SOFTWARE.
25264
-
25265
25239
  ================================================================================
25266
25240
  magnus-macros LICENSE
25267
25241
  ================================================================================
data/README.md CHANGED
@@ -88,6 +88,12 @@ From Avro
88
88
  Polars.read_avro("file.avro")
89
89
  ```
90
90
 
91
+ From Iceberg (requires [iceberg](https://github.com/ankane/iceberg-ruby)) [experimental]
92
+
93
+ ```ruby
94
+ Polars.scan_iceberg(table)
95
+ ```
96
+
91
97
  From Delta Lake (requires [deltalake-rb](https://github.com/ankane/delta-ruby)) [experimental]
92
98
 
93
99
  ```ruby
@@ -365,6 +371,12 @@ Avro
365
371
  df.write_avro("file.avro")
366
372
  ```
367
373
 
374
+ Iceberg [experimental]
375
+
376
+ ```ruby
377
+ df.write_iceberg(table, mode: "append")
378
+ ```
379
+
368
380
  Delta Lake [experimental]
369
381
 
370
382
  ```ruby
Binary file
Binary file
Binary file