Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
pola-rs
GitHub Repository: pola-rs/polars
Path: blob/main/crates/polars-io/src/cloud/mod.rs
8424 views
1
//! Interface with cloud storage through the object_store crate.
2
3
#[cfg(feature = "cloud")]
4
mod glob;
5
#[cfg(feature = "cloud")]
6
mod object_store_setup;
7
pub mod options;
8
#[cfg(feature = "cloud")]
9
mod polars_object_store;
10
11
#[cfg(feature = "cloud")]
12
pub use glob::*;
13
#[cfg(feature = "cloud")]
14
pub use object_store_setup::*;
15
pub use options::*;
16
#[cfg(feature = "cloud")]
17
pub use polars_object_store::*;
18
19
#[cfg(feature = "cloud")]
20
pub mod cloud_writer;
21
#[cfg(feature = "cloud")]
22
pub mod credential_provider;
23
24