Files
selmerBot/commands/scraper.js
T

21 lines
621 B
JavaScript
Raw Normal View History

2022-03-10 20:30:03 -05:00
module.exports ={
name: "scraper",
description: ".....",
execute(message, args) {
const axios = require('axios');
const cheerio = require('cheerio')
const url = args[0];
axios(url)
.then(response => {
const html = response.data;
const $ = cheerio.load(html);
2022-04-30 21:07:16 -04:00
//lyrics = $('.para_row').text();
2022-03-10 20:30:03 -05:00
2022-04-30 21:12:00 -04:00
message.channel.send(html);
2022-04-30 21:09:16 -04:00
// console.log(lyrics);
2022-03-10 20:30:03 -05:00
})
.catch(console.error);
}
}
//TEST: https://www.karaoketexty.cz/texty-pisni/zoegirl/plain-170199