Update FB and Flickr importers to be similar in names and descriptions (#2615)

This commit is contained in:
Mike Gray
2016-09-27 13:28:11 -04:00
committed by GitHub
parent 429784dd00
commit 181f549179
7 changed files with 9 additions and 9 deletions
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "noms-fb-find-photos",
"description": "Finds photos in slurped flickr data",
"description": "Finds photos in slurped Facebook data",
"license": "Apache-2.0",
"main": "dist/main.js",
"scripts": {
+1 -1
View File
@@ -22,7 +22,7 @@ import {
const args = argv
.usage(
'Finds photos in slurped Facebook metadata\n\n' +
'Usage: fb/find-photos <in-object> <out-dataset>')
'Usage: node . <in-dataset> <out-dataset>')
.demand(2)
.argv;
+1 -1
View File
@@ -1,5 +1,5 @@
{
"name": "noms-facebook-slurp",
"name": "noms-fb-slurp",
"description": "Imports photo metadata from Facebook",
"license": "Apache-2.0",
"main": "dist/main.js",
+2 -2
View File
@@ -21,8 +21,8 @@ import {
const args = argv
.usage(
'Imports photo metadata from Facebook API\n\n' +
'Usage: noms-facebook-slurp --access-token=<token> <dest-dataset>\n\n' +
'Parses photo metadata from Facebook API\n\n' +
'Usage: node . --access-token=<token> <dest-dataset>\n\n' +
'Create an access token as follows:\n' +
'1. Browse to https://developers.facebook.com/tools/explorer/\n' +
'2. Login with your Facebook credentials\n' +
+1 -1
View File
@@ -1,6 +1,6 @@
{
"name": "noms-flickr-find-photos",
"description": "Creates standard photo structs out of slurped flickr data",
"description": "Finds photos in slurped Flickr data",
"license": "Apache-2.0",
"main": "dist/main.js",
"scripts": {
+1 -1
View File
@@ -23,7 +23,7 @@ import {
const args = argv
.usage(
'Indexes Photo objects out of slurped Flickr metadata\n\n' +
'Usage: flickr-find-photos <in-object> <out-dataset>')
'Usage: node . <in-object> <out-dataset>')
.demand(2)
.argv;
+2 -2
View File
@@ -19,8 +19,8 @@ import {
const args = argv
.usage(
'Parses photo information out of Flickr API\n\n' +
'Usage: flickr-photos --api-key=<key> --api-secret=<secret> ' +
'Parses photo metadata out of Flickr API\n\n' +
'Usage: node . --api-key=<key> --api-secret=<secret> ' +
'[--auth-token=<token> --auth-secret=<secret>] <dest-dataset>\n\n' +
'You can create a Flickr API key at: ' +
'https://www.flickr.com/services/apps/create/apply\n\n' +