/mfs-scraper

http://www.myfrenchstartup.com/fr/liste-startup-france/-1

Primary LanguageCoffeeScript

MFS Startup & Founder Scrapping

Requirements

Warning: you must have meteor installed on your machine.

curl https://install.meteor.com/ | sh

Launching The MFS Scrapping App

Go to the app directory, and launch meteor:

cd mfs/
meteor

Query to display the results:

meteor mongo
> db.founders.find({ linkedin: { $exists: true} }, {_id: 0, url: 0 }).forEach(function(f){print(tojson(f, '', true));});