Val Town is a social website to write and deploy JavaScript.
Build APIs and schedule functions from your browser.
1
2
3
4
5
6
7
8
import { fetch } from "https://esm.town/v/std/fetch";
export const webscrapeMinhaBibliotecaCatolicaBoxList = (async (crn) => {
const sourceUrl =
`https://ssb.ua.edu/pls/PROD/ua_bwckschd.p_disp_detail_sched?term_in=202340&crn_in=43971`;
let siteText = await fetch(sourceUrl);
return await siteText.text();
})();
October 23, 2023