Metadata-Version: 1.1
Name: crawl-image
Version: 0.0.6
Summary: fast crawl web image source
Home-page: https://github.com/xiaohong2019/crawl_image
Author: xiaohong2019
Author-email: 2229009854@qq.com
License: UNKNOWN
Description: # crawl_image
        
        ## Introduction
        多线程快速抓取网页所有图片资源到指定路径，原理是抓取img标签的src，再整合域名成资源完整url，分发到程序线程去下载。
        
        ## Example
        ```py
        from crawl_image.model.img_crawl_model import ImgCrawlModel
        from crawl_image.img_crawl import crawl_start
        
        img_crawl_model = ImgCrawlModel()
        img_crawl_model.url = 'http://huaban.com/'
        img_crawl_model.img_save_path = 'D:/crawl/image'
        crawl_start(img_crawl_model)
        ```
        
        ## Features
        - 高速下载
        - 抓取所有图片
        - 自解网页编码
        - 过滤图片类型
        
        ## Communication
        - 未来已来 203737026
        
        ## Copyright and License
        code for you
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
