MusicConnectionMachine / StructuredData

In this project we will be scanning structured online resources such as DBPedia, Worldcat, MusicBrainz, IMSLP and other databases
GNU General Public License v3.0
4 stars 3 forks source link

Enable multiple scripts for cli.js #76

Closed TimHenkelmann closed 7 years ago

TimHenkelmann commented 7 years ago

At the moment, the cli only takes one script as input parameter. Adjust it, such that

node cli.js -s dbpedia worldcat musicbrainz

or

node cli.js -s all

is possible.

TimHenkelmann commented 7 years ago

Implemented in #78 The input parameters changed such that one can now execute the scripts like

node cli.js dbpedia worldcat

(scrapes dbpedia and worldcat) or

node cli.js all

(scrapes dbpedia, musicbrainz [and worldcat+allmusic as soon as they are added])

kordianbruck commented 7 years ago

Good thinking @TimHenkelmann - excellent implementation. Makes much more sense this way.