Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-io/src/prelude.rs
6939 views
1
pub use crate::cloud;
2
#[cfg(feature = "csv")]
3
pub use crate::csv::{read::*, write::*};
4
#[cfg(any(feature = "ipc", feature = "ipc_streaming"))]
5
pub use crate::ipc::*;
6
#[cfg(feature = "json")]
7
pub use crate::json::*;
8
#[cfg(feature = "json")]
9
pub use crate::ndjson::core::*;
10
#[cfg(feature = "parquet")]
11
pub use crate::parquet::{metadata::*, read::*, write::*};
12
#[cfg(feature = "parquet")]
13
pub use crate::partition::write_partitioned_dataset;
14
pub use crate::path_utils::*;
15
pub use crate::shared::{SerReader, SerWriter};
16
pub use crate::utils::*;
17
18