14 stable releases

2.0.7 Aug 20, 2024
2.0.6 Aug 8, 2024
2.0.4 Aug 2, 2024
1.0.6 Jul 1, 2024
1.0.5 Jun 30, 2024

#1505 in Web programming

Download history 206/week @ 2024-06-28 15/week @ 2024-07-05 529/week @ 2024-08-02 142/week @ 2024-08-09 151/week @ 2024-08-16 16/week @ 2024-08-23

838 downloads per month

MIT license

40KB
684 lines

Shuller

Library for link fetching from Rule34 and other implementable sites

Note for learn more info about this lib check doc.rs on crates.io

Example (use macro instead)

use shuller::prelude::*;
async fn example() {
    let instance: Posts = R34Params::init()
        .positive_tags(vec!["dark", "fish"])
        .negative_tags(vec!["ai_generated"])
        .limit(3)
        .download() // or url_generate()
        .await
        .unwrap();
        println!("{:#?}", instance.get_urls_ext())
}

Example via macro

  • Generate Url by params and manual fetch data structure Posts
    use shuller::prelude::*;
    async fn macro_normal() {
        let instance = R34!(
            p = vec!["dark", "fish"],
            n = vec!["ai_generated"],
            limit = 2,
            page = 2
        )
        .download()
        .await
        .unwrap(); // handle error
    }
    
  • Fetch data structure Posts, macro include
    use shuller::prelude::*;
    async fn macro_download() {
        let instance = R34!(D;
            p = vec!["dark", "fish"],
            n = vec!["ai_generated"],
            limit = 2,
            page = 2
        )
        .unwrap(); // handle error
    }
    
  • Generate Url via macro, it's just url.
    use shuller::prelude::*;
    async fn macro_url() {
        let instance = R34!(U;
            p = vec!["dark", "fish"],
            n = vec!["ai_generated"],
            limit = 2,
            page = 2
        );
    }
    
  • Generate random Params and Url, and download Post with random id
    use shuller::prelude::*;
      async fn r() {
          let params = R34!(R;);
          let url = R34!(R; D);
          let posts = R34!(R; U).unwrap(); // handle error
      }
    

Dependencies

~4–15MB
~211K SLoC