polars_io/cloud/
mod.rs

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