pip install instagram-scraper- Write the desired accounts to a file
targets.txt - Change the username and password in
scraper.py - Run
scraper.py
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| from pathlib import Path | |
| import struct | |
| path_to_i_files = input("Path to $I files: ") | |
| i_dir = Path(path_to_i_files) | |
| csv_file = open('recycle_bin.csv', 'a', encoding='utf-16') | |
| csv_file.write("file size, timestamp, file name") | |
| for file in i_dir.glob('$I*'): |