polars-io 0.54.1

IO related logic for the Polars DataFrame library
Documentation
//! Interface with cloud storage through the object_store crate.

#[cfg(feature = "cloud")]
mod glob;
#[cfg(feature = "cloud")]
mod object_store_setup;
pub mod options;
#[cfg(feature = "cloud")]
mod polars_object_store;

#[cfg(feature = "cloud")]
pub use glob::*;
#[cfg(feature = "cloud")]
pub use object_store_setup::*;
pub use options::*;
#[cfg(feature = "cloud")]
pub use polars_object_store::*;

#[cfg(feature = "cloud")]
pub mod cloud_writer;
#[cfg(feature = "cloud")]
pub mod credential_provider;

#[cfg(feature = "cloud")]
pub mod dns;