ees-announcements-scraper

Scraper that gets the announcements from EES postgraduate programme of NTUA

Usage no npm install needed!

<script type="module">
  import eesAnnouncementsScraper from 'https://cdn.skypack.dev/ees-announcements-scraper';
</script>

README

ees-announcements-scraper

NPM

Codacy Badge npm version License: GPL v3

NPM Publish

Scraper that gets the announcements from EES postgraduate programme of NTUA.

Simple Description

A Node.js package that scraps the EES site and retrieve the announcements of the programme. This package is quite useful for thesis work or other academic projects.

Usage

Install

First install the package using npm:

npm install --save ees-announcements-scraper

Then, require the package and use it like so:

const eesScraper = require('ees-announcements-scraper');

var eesAnnouncements = eesScraper.getAnnouncements();

eesAnnouncements.then(function (results) {
  console.log("eesAnnouncements", results);
});

Functions Documentation

getAnnouncements

Returns all announcements as an array of objects with the below details:

  • title
  • date
  • text
  • htmlText

License

GNU GPLv3