Metadata-Version: 2.1
Name: bing_image_downloader
Version: 1.0.3
Summary: Python library to download bulk images from Bing.com
Home-page: https://github.com/gurugaurav/bing_image_downloader
Author: Guru Prasad Singh
Author-email: g.gaurav541@gmail.com
License: UNKNOWN
Description: 
        ## Bing Image Downloader
        <hr>
        
        Python liberary to download bulk of images form Bing.com.It uses async url, so it is very fast.<br/>
        
        
        ### Disclaimer<br />
        
        This program lets you download tons of images from Bing.
        Please do not download or use any image that violates its copyright terms. 
        
        ### Installation <br />
        ```sh
        pip install bing-image-downloader
        ```
        
        or 
        ```bash
        git clone https://github.com/gurugaurav/bing_image_downloader
        cd bing_image_downloader
        pip install .
        ```
        
        
        
        ### Usage <br />
        ```python
        from bing_image_downloader import downloader
        downloader.download(query_string, limit=100,  output_dir='dataset', adult_filter_off=True, force_replace=False)
        ```
        
        `query_string` : String to be searched.<br />
        `limit` : Number of images to download.<br />
        `output_dir` : Name of output dir.<br />
        `adult_filter_off` : Enable of disable adult filteration.<br />
        `force_replace` : Delete folder if present and start a fresh download.<br />
        
        
        
        
        
        ### PyPi <br />
        https://pypi.org/project/bing-image-downloader/
          
        
        
        
        
Keywords: bing,images,scraping,image download,bulk image downloader
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Description-Content-Type: text/markdown
