mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-21 19:49:05 -05:00
Update FB and Flickr importers to be similar in names and descriptions (#2615)
This commit is contained in:
@@ -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": {
|
||||
|
||||
@@ -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,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",
|
||||
|
||||
@@ -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,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": {
|
||||
|
||||
@@ -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;
|
||||
|
||||
|
||||
@@ -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' +
|
||||
|
||||
Reference in New Issue
Block a user