https://github.com/mikeesto/excel-image-downloader
A Node.js & Python script for downloading image files from a spreadsheet containing URLs
https://github.com/mikeesto/excel-image-downloader
Last synced: about 2 months ago
JSON representation
A Node.js & Python script for downloading image files from a spreadsheet containing URLs
- Host: GitHub
- URL: https://github.com/mikeesto/excel-image-downloader
- Owner: mikeesto
- License: mit
- Created: 2018-02-06T05:19:52.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-21T04:31:26.000Z (about 7 years ago)
- Last Synced: 2025-02-12T09:57:15.448Z (3 months ago)
- Language: Python
- Homepage:
- Size: 18.6 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Excel Image Downloader
A Node.js script for downloading image files from a spreadsheet containing URLs.
## Usage
1. Clone the repository
2. Install required dependencies
```
npm install
```
3. Move your excel spreadsheet to the cloned directory and ensure it is saved as `images.xlsx`
4. On line 20 of `app.js`, change `data[i].ImagePath` to the column heading in your spreadsheet that contains the image URLs.
5. Run the script with
```
node app.js 5
```
Where 5 indicates the number of images to be downloaded. If no argument is provided, the default is 1.6. Look for the newly created `images` directory!
## License
MIT.
## :heart: Credits
[Excel as JSON](https://github.com/stevetarver/excel-as-json)
[Images downloader](https://www.npmjs.com/package/images-downloader)