@padrocha/uam-scraping
Version:
Scraping of teachers
22 lines • 670 B
text/typescript
export const config = {
CONSOLESIZE: 60,
USER: '',
PASS: '',
PATH: {
SIIUAM: 'https://ayamictlan.uam.mx:8443/sae/azc/aewbf001.omuestraframes?mod=1',
MISPROFESORES: 'https://www.misprofesores.com'
},
// shows the Chromium
HEADLESS: true,
// configs the waiting time
TIMEOUT: 500,
// configs the navegation total waiting time
NAVIGATION: 15_000_000,
// configs total of tries that a process could be done
TRIES: 15,
JSONUEA: './assets/json/schedule-ueas.json',
PDF: {
DIRECTORY: 'C:\\uam-scraping',
SCHEDULE: 'C:\\uam-scraping\\schedule.pdf'
}
} as const;