Scraper that gets the announcements from EES postgraduate programme of NTUA.
A Node.js package that scraps the new EES site and retrieve the announcements of the programme. This package is quite useful for thesis work or other academic projects.
First install the package using npm:
npm install --save ees-announcements-scraper-v2
Then, require the package and use it like so:
const eesScraperV2 = require('ees-announcements-scraper-v2');
var eesAnnouncements = eesScraperV2.getDetailedAnnouncements();
eesAnnouncements.then(function (results) {
console.log("eesAnnouncements", results);
});
Returns all announcements as an array of objects with the below details:
- title
- date
- link
Returns all announcements as an array of objects with the below details:
- title
- content
- date
- link
- files
Returns specific announcement as a json object with the below details:
- title
- content
- files
Returns specific announcement as a json object with the below details:
- title
- content
- date
- link
- files
GNU GPLv3