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