921cfa389c
Refactored `script.py` by adding detailed docstrings and organizing functions. Created `.idea` configuration files and `gotodashboard.js` for `sisa_crawl` project. Added `readme.md` files with usage instructions and context for multiple scripts, and set up `package.json` for `sisa_crawl` dependencies.
26 lines
517 B
JavaScript
26 lines
517 B
JavaScript
|
|
/* Top Level Vars*/
|
|
const email = 'bdaneels@ad.ua.ac.be'
|
|
const password = 'Heideggershut18891'
|
|
const webpage = 'https://sisaweb.uantwerpen.be'
|
|
const runId = 'bd'
|
|
const dasbhoardInschrijvingenURL = 'https://app.sisaweb.uantwerpen.be/psc/csprd_3/EMPLOYEE/SA/c/QQ_INSCHRIJVINGEN.QQ_OVERZ_ING_STDL.GBL?NavColl=true'
|
|
|
|
|
|
/* Dashboard Form Vars*/
|
|
|
|
const career = 'BACA'
|
|
const program = 'B0011'
|
|
|
|
|
|
|
|
|
|
module.exports = {
|
|
email,
|
|
password,
|
|
webpage,
|
|
runId,
|
|
dasbhoardInschrijvingenURL,
|
|
career,
|
|
program
|
|
}; |