Shuller
This is LIB for fetching links from Rule34 and other sites which you can implemented
Example usage
async
Example usage with id
async
This is LIB for fetching links from Rule34 and other sites which you can implemented
async fn example() {
use shuller::prelude::*;
let instance: Posts = Params::init()
.positive_tags(vec!["dark", ":)"])
.negative_tags(vec!["ai_generated", "light"])
.limit(3)
.make_link()
.search()
.await
.unwrap(); // or handle error
println!("{:#?}", instance.get_s_urls())
}
async fn example() {
use shuller::prelude::*;
let instance: Posts = Params::init()
.id(10542274)
.make_link()
.search()
.await
.unwrap(); // or handle error
println!("{:#?}", instance.get_s_urls())
}