scrapebadger 0.2.0

Async Rust SDK and CLI for the ScrapeBadger web-scraping API (Amazon, Google, Twitter/X, Reddit, Vinted, Web Scraping).
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
//! Twitter/X tweets, users, communities, lists, spaces, geo, trends, and
//! real-time Stream Monitors / Filter Rules.
//!
//! See <https://docs.scrapebadger.com/api-reference/introduction> and
//! <https://docs.scrapebadger.com/twitter-streams/overview>.

mod generated;
pub use generated::*;

/// Hand-written `*_stream` pagination adapters (methods on [`Twitter`]).
mod pagination;

#[cfg(feature = "stream")]
#[cfg_attr(docsrs, doc(cfg(feature = "stream")))]
pub mod stream;