Automation to download images using Excel cell names.
Project made 100% in Rust 🦀 to automate image downloads using the name of each cell specified in Excel.
Special thanks to owners of Calamine and Image_search libs.
To compile the script, simply download the repository and run the following command:
$ cargo build --release
Follow the template for using the script:
$ getpicture FILE.xlsx SHEET_NAME INITIAL_LINE INITIAL_COLUMN FINAL_LINE FINAL_COLUMN
When using this command it will create a folder called "downloads" and the downloaded images will be in the same folder.
$ getpicture products.xlsx ProductsSheet 3 4 20 4
Using this exact command it will look for the products.xlsx file, the ProductsSheet sheet and then it will download all the images based on the cell names starting from line 3 of column 4 to line 20 of the same column.