32 lines
924 B
TypeScript
32 lines
924 B
TypeScript
import {readFileSync} from "fs"
|
|
import {resolve, dirname} from "path"
|
|
import {load} from "cheerio"
|
|
|
|
const FLAG_URL = "https://www.flagpictures.com/countries/languages/";
|
|
const FLAG_FILE = resolve( __dirname, "./flagref.html" )
|
|
|
|
type locale = {
|
|
flag: string,
|
|
language: {
|
|
name: string,
|
|
abbreviation : string,
|
|
}
|
|
}
|
|
|
|
async function capture () {
|
|
// const flagHtml = await fetch(FLAG_URL, {
|
|
// method: "GET",
|
|
// headers: { "Content-Type": "text/html", 'User-Agent': 'Mozilla/5.0 (Windows NT 10.0; Win64; x64) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/91.0.4472.124 Safari/537.36'
|
|
// }
|
|
// });
|
|
const flagHtml = readFileSync(FLAG_FILE, {encoding: "utf-8"});
|
|
const $ = load(flagHtml);
|
|
const countryLangFlags = $("table").find("tr").map(e => {
|
|
const tds = $(e).find("td");
|
|
console.log(tds.length)
|
|
})
|
|
}
|
|
|
|
(async function () {
|
|
await capture()
|
|
})(); |