Switched to tabs. Adding missing actor entries when scraping actors, with batch ID.

This commit is contained in:
2020-05-14 04:26:05 +02:00
parent f1eb29c713
commit 11eb66f834
178 changed files with 16594 additions and 16929 deletions

View File

@@ -7,12 +7,12 @@ const { argv } = require('yargs');
const url = argv.url || 'http://localhost:5000/media/actors/tommy-pistol/1580341442712.jpeg';
async function scan() {
console.log(url);
console.log(url);
const res = await bhttp.get(url);
const stats = await sharp(res.body).stats();
const res = await bhttp.get(url);
const stats = await sharp(res.body).stats();
console.log(stats);
console.log(stats);
}
scan();