Answers for "scrape data from ao3"

0

scrape data from ao3

const ao3scraper = require('ao3scraper')
//replace with your fic, this is just for demo
const pageURL = "https://archiveofourown.org/works/35864404"

ao3scraper(pageURL).then(ficInfo => {
    //do something with results
}).catch(err => {
    // This code block will also execute if the link is a 404
    console.error(err)
});
Posted by: Guest on January-01-2022

Code answers related to "scrape data from ao3"

Code answers related to "Javascript"

Browse Popular Code Answers by Language