//! # spools
//! spools is a content scraping library for Instagram's [Threads](https://threads.net).
//! spools aims to provide a more comfortable interface than Threads' cumbersome and obfuscated
//! internal API, with the added bonus of not requiring an account.
//!
//! ## Making a client
//! In order to use any of the provided methods, creating a client is required.
//! User and post fetching by ID are provided through [`Threads`] methods.
//!
//! ```rust
//! # use spools;
//! #
//! # async fn run() -> Result<(), spools::SpoolsError> {
//! let client = spools::Threads::new()?;
//! let user = client.fetch_user("zuck").await?;
//! let post = client.fetch_post(&user.posts[0].code).await?;
//! # Ok(())
//! # }
pub use SpoolsError;
pub use ;
pub use ;
pub use Threads;
pub use ;