@@ -22,7 +22,7 @@ Instamancer is a new type of scraping tool that leverages Puppeteer's ability to
2222Read more about how Instamancer works [ here] ( https://scriptsmith.github.io/instamancer/ ) .
2323
2424### Features
25- - Scrape hashtags, users, and posts
25+ - Scrape hashtags, users, tagged users, and posts
2626- Download images, albums, and videos
2727- Output JSON, CSV
2828- Batch scraping
@@ -46,6 +46,8 @@ Metadata that Instamancer is able to gather from posts:
4646- User (Username, Full name, Profile picture, Profile privacy)
4747- Location (Name, Street, Zip code, City, Region, Country)
4848- Sponsored status
49+ - Gating information
50+ - Fact checking information
4951
5052## Install
5153
@@ -107,7 +109,8 @@ Usage: instamancer <command> [options]
107109
108110Commands:
109111 instamancer hashtag [id] Scrape a hashtag
110- instamancer user [id] Scrape a user
112+ instamancer user [id] Scrape a users posts
113+ instamancer tagged [id] Scrape a user's tagged posts
111114 instamancer post [ids] Scrape a comma-separated list of posts
112115 instamancer search [query] Perform a search of users, tags and places
113116 instamancer batch [batchfile] Read newline-separated arguments from a file
@@ -186,6 +189,7 @@ import {createApi} from "instamancer"
186189
187190createApi (" hashtag" , id , options );
188191createApi (" user" , id , options );
192+ createApi (" tagged" , id , options );
189193createApi (" post" , ids , options );
190194createApi (" search" , query , options );
191195```
@@ -246,6 +250,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
246250 <th>Tool</th>
247251 <th>Hashtags</th>
248252 <th>Users</th>
253+ <th>Tagged posts</th>
249254 <th>Locations</th>
250255 <th>Posts</th>
251256 <th>Stories</th>
@@ -275,6 +280,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
275280 <td><a href="https://github.com/ScriptSmith/instamancer">Instamancer</a></td>
276281 <td>:heavy_check_mark:</td>
277282 <td>:heavy_check_mark:</td>
283+ <td>:heavy_check_mark:</td>
278284 <td>:x:</td>
279285 <td>:heavy_check_mark:</td>
280286 <td>:x:</td>
@@ -305,6 +311,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
305311 <td>:x:</td>
306312 <td>:x:</td>
307313 <td>:x:</td>
314+ <td>:x:</td>
308315 <td>:heavy_check_mark:</td>
309316 <td>:x:</td>
310317 <td>:x:</td>
@@ -334,6 +341,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
334341 <td>:heavy_check_mark:</td>
335342 <td>:heavy_check_mark:</td>
336343 <td>:heavy_check_mark:</td>
344+ <td>:heavy_check_mark:</td>
337345 <td>:x:</td>
338346 <td>:x:</td>
339347 <td>:heavy_check_mark:</td>
@@ -356,6 +364,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
356364 <td><a href="https://github.com/althonos/InstaLooter">Instalooter</a></td>
357365 <td>:heavy_check_mark:</td>
358366 <td>:heavy_check_mark:</td>
367+ <td>:x:</td>
359368 <td>:heavy_check_mark:</td>
360369 <td>:heavy_check_mark:</td>
361370 <td>:x:</td>
@@ -384,6 +393,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
384393 <td>:heavy_check_mark:</td>
385394 <td>:heavy_check_mark:</td>
386395 <td>:x:</td>
396+ <td>:x:</td>
387397 <td>:heavy_check_mark:</td>
388398 <td>:x:</td>
389399 <td>:heavy_check_mark:</td>
@@ -412,6 +422,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
412422 <td>:heavy_check_mark:</td>
413423 <td>:heavy_check_mark:</td>
414424 <td>:x:</td>
425+ <td>:x:</td>
415426 <td>:heavy_check_mark:</td>
416427 <td>:x:</td>
417428 <td>:heavy_check_mark:</td>
@@ -442,6 +453,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
442453 <td>:heavy_check_mark:</td>
443454 <td>:heavy_check_mark:</td>
444455 <td>:heavy_check_mark:</td>
456+ <td>:heavy_check_mark:</td>
445457 <td>:x:</td>
446458 <td>:x:</td>
447459 <td>:x:</td>
@@ -464,6 +476,7 @@ To see a speed comparison, visit [this page](https://scriptsmith.github.io/insta
464476 <td><a href="https://github.com/postaddictme/instagram-php-scraper">Instagram PHP Scraper</a></td>
465477 <td>:heavy_check_mark:</td>
466478 <td>:heavy_check_mark:</td>
479+ <td>:x:</td>
467480 <td>:heavy_check_mark:</td>
468481 <td>:heavy_check_mark:</td>
469482 <td>:x:</td>
0 commit comments