polars_io/cloud/
mod.rs

1//! Interface with cloud storage through the object_store crate.
2
3#[cfg(feature = "cloud")]
4mod adaptors;
5#[cfg(feature = "cloud")]
6mod glob;
7#[cfg(feature = "cloud")]
8mod object_store_setup;
9pub mod options;
10#[cfg(feature = "cloud")]
11mod polars_object_store;
12
13#[cfg(feature = "cloud")]
14pub use adaptors::*;
15#[cfg(feature = "cloud")]
16pub use glob::*;
17#[cfg(feature = "cloud")]
18pub use object_store_setup::*;
19pub use options::*;
20#[cfg(feature = "cloud")]
21pub use polars_object_store::*;
22
23#[cfg(feature = "cloud")]
24pub mod credential_provider;