对于服务器等不便安装百度网盘客户端的环境,以及需要批量定时与百度网盘文件传输,bypy库则很好的解决这类需求。
01
# 安装bypy
第一次运行时需要授权,安装后运行bypy info会有提示,需根据提示来授权你的百度网盘账号即可。
pip install bypy
02
# 常见命令
# 遍历文件夹
bypy list
# 数据下载
bypy downdir [remotedir] [localdir] - download a remote directory (recursively)
bypy downfile <remotefile> [localpath] - download a remote file.
bypy download [remotepath] [localpath] - download a remote directory (recursively) / file
# 数据上传
bypy syncup [localdir] [remotedir] [deleteremote] - sync up from the local directory to the remote directory
bypy upload [localpath] [remotepath] [ondup] - upload a file or directory (recursively)
03
# 更多命令
bypy help
04
# 下载加速器
# 直接在下载命令后追加
--downloader aria2
05
# 更多资料
更多信息参考项目的github仓库。
https://github.com/houtianze/bypy?tab=readme-ov-file
戳这里关注我
请点赞、在看、关注,你们的支持是我更新的动力。