# BXC_DownloadImage **Repository Path**: Vanishi/BXC_DownloadImage ## Basic Information - **Project Name**: BXC_DownloadImage - **Description**: 图片下载工具(可用于收集样本) - **Primary Language**: Unknown - **License**: MIT - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 49 - **Forks**: 45 - **Created**: 2024-01-18 - **Last Updated**: 2025-08-07 ## Categories & Tags **Categories**: Uncategorized **Tags**: Python ## README # BXC_DownloadImage * 作者:北小菜 * 官网:http://www.beixiaocai.com * 邮箱:bilibili_bxc@126.com * QQ:1402990689 * 微信:bilibili_bxc * 哔哩哔哩主页:https://space.bilibili.com/487906612 * gitee开源地址:https://gitee.com/Vanishi/BXC_DownloadImage * github开源地址:https://github.com/beixiaocai/BXC_DownloadImage ### 介绍 1. Python开发的图片下载工具,能够根据指定关键词,自动搜索图片,自动下载图片,自动过滤图片,并自动合成视频 2. 下载图片的采集入口支持百度搜索和必应搜索 ### 关联项目 * [模型训练框架](https://gitee.com/Vanishi/BXC_AutoML) ### 运行环境 | 程序 | 版本 | | ---------- | ------- | | python | 3.10 | | 依赖库 | requirements.txt | ### 快速开始 ~~~ //下载图片(指定关键字采集图片) python main.py //将图片合成视频(指定图片文件路径) python gen_video.py ~~~ ### 创建python虚拟环境并安装第三方库 ~~~ 1. 创建虚拟环境 python -m venv venv 2. 命令行切换到虚拟环境 venv\Scripts\active 3. 查看pip版本 pip -V 4. 可以选择性决定是否更新pip (可以不更新,但较低版本的pip可能会导致一些库无法正常安装) python -m pip install --upgrade pip -i https://pypi.tuna.tsinghua.edu.cn/simple 5. 安装依赖库 pip install -r requirements.txt -i https://pypi.tuna.tsinghua.edu.cn/simple 6. 将本地依赖库导入到 requirements.txt pip freeze > requirements.txt ~~~