Data scraper for Uni Kassel Mensa.
- node
git clone https://github.com/nikeee/node-canteen-cli
cd node-canteen-cli
npm ci
npm run compile
node build/app.js list # to list evailable canteens
node build/app.js pull <name> # to pull data as JSON of a specific canteen
Output will be stdout.
To pull all available canteens into separate files:
node build/app.js list | parallel "node build/app.js pull {} > {}.json"