ao3_scraper 1.0.2 copy "ao3_scraper: ^1.0.2" to clipboard
ao3_scraper: ^1.0.2 copied to clipboard

'Fake API' for the fanfiction website Ao3.

This packages provides a "fake API" for accessing Ao3 works and bookmarks by webscraping the website. This package does not work with anything requiring authentication into Ao3.

Features #

You can search for works given a certain keyword, or search through bookmarks of a person. As of now, only the first page of search/bookmarks is scraped.

Usage #

void main() {
  var favWork = Ao3Client.searchWorks("Yesterday Upon the Stair");
  favWork.then((value) {
    // Prints title: Yesterday, Upon the Stair,
    // fandom: Sherlock (TV),
    // author: PhoenixDragon,
    // description: Even if there was the remotest possibility that he was, indeed, Sherlock (and not a random figment of madness come to solid, breathing life),
    // it still wasn't Sherlock. Too much time had passed.,
    // number of chapters: 1,
    // workID: 567621
    print(value[0].toString());

    print(Ao3Client.getURLfromWorkID(
        value[0].workID)); // Prints https://archiveofourown.org/works/567621/
  });

  var bookmarkedWorks = Ao3Client.getBookmarksFromUsername(
      "John"); // Returns all works found in the first page of bookmarks for the given username.
  bookmarkedWorks.then((works) {
    for (var work in works) {
      print(work.toString());
    }
  });
}
3
likes
140
points
34
downloads

Documentation

API reference

Publisher

unverified uploader

Weekly Downloads

'Fake API' for the fanfiction website Ao3.

Repository (GitHub)

License

MIT (license)

Dependencies

html, http

More

Packages that depend on ao3_scraper