xplore
X scraper for Rust
💥 PRs are welcome.
❗We are still in the early development phase, so please be aware that the interfaces may evolve as we continue to refine the project.
Features
- Authentication with cookies
- Comprehensive user profile management
- Timeline retrieval
- Tweet interactions (like, retweet, post)
- Advanced search capabilities
- User relationship management (follow/unfollow)
Installation
[]
= "0.1"
Usage
Two method to authenticate with Cookie:
- By using
login
let mut xplore = new.await.unwrap;
xplore.login.await;
OR
- By using
set_cookie
let mut xplore = new.await.unwrap;
let cookie = var.expect;
xplore.set_cookie.await;
A quick start
use dotenv;
use env;
use Xplore;
async