https://github.com/sujitmandal/url-into-images
provide image download link through csv file and it will download all the images. also you can chose different extension.
https://github.com/sujitmandal/url-into-images
csv pip pypi python
Last synced: 4 months ago
JSON representation
provide image download link through csv file and it will download all the images. also you can chose different extension.
- Host: GitHub
- URL: https://github.com/sujitmandal/url-into-images
- Owner: sujitmandal
- License: mit
- Created: 2020-08-30T08:40:04.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-03-29T15:47:04.000Z (about 4 years ago)
- Last Synced: 2025-10-21T19:14:16.854Z (8 months ago)
- Topics: csv, pip, pypi, python
- Language: Python
- Homepage:
- Size: 38.1 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
[](https://travis-ci.org/sujitmandal/url-into-images) [](https://github.com/sujitmandal/url-into-images/blob/master/LICENSE)     [](https://anaconda.org/conda-forge/url-into-images) [](https://conda.anaconda.org/conda-forge) [](https://anaconda.org/conda-forge/url-into-images) [](https://anaconda.org/conda-forge/url-into-images) 
[](https://pepy.tech/project/url-into-images)
Automatically Download Multiple Images.
## Package Installation :
```
pip install url-into-images
```
[Pypi Package Link](https://pypi.org/project/url-into-images/)
```
conda install -c conda-forge url-into-images
```
[Conda Package Link](https://anaconda.org/conda-forge/url-into-images)
[scrape-search-engine-feedstock](https://github.com/conda-forge/url-into-images-feedstock)
## Url Into Images :
provide image download link through csv file and it will download all the images. also you can chose different extension.
```
• jpg
• jpeg
• png
• bmp
• gif
```
## How to import the module:
```python
URL_PATH = ('') # csv file where image URL contain
IMAGE_PATH = ('') # Download image path
```
## Download JPG
```python
from url_into_images.url_into_images import url_jpg
url_jpg(URL_PATH, IMAGE_PATH)
```
## Download JPEG
```python
from url_into_images.url_into_images import url_jpeg
url_jpeg(URL_PATH, IMAGE_PATH)
```
## Download PNG
```python
from url_into_images.url_into_images import url_png
url_png(URL_PATH, IMAGE_PATH)
```
## Download BMP
```python
from url_into_images.url_into_images import url_bmp
url_bmp(URL_PATH, IMAGE_PATH)
```
## Download GIF
```python
from url_into_images.url_into_images import url_gif
url_gif(URL_PATH, IMAGE_PATH)
```
## Required package’s:
```
• pip install pandas
```
## License:
MIT Licensed
## Author:
Sujit Mandal
[GitHub](https://github.com/sujitmandal)
[PyPi](https://pypi.org/user/sujitmandal/)
[LinkedIn](https://www.linkedin.com/in/sujit-mandal-91215013a/)