bypy - Python client for Baidu Yun (Personal Cloud Storage) 百度云/百度网盘Python客户端
- 最新: 目录上传/下载/同步加入了多进程支持(
--processes
)
这是一个百度云/百度网盘的Python客户端。主要的目的就是在Linux环境下(Windows下应该也可用,但没有仔细测试过)通过命令行来使用百度云盘的2TB的巨大空间。比如,你可以用在Raspberry Pi树莓派上。它提供文件列表、下载、上传、比较、向上同步、向下同步,等操作。
由于百度PCS API权限限制,程序只能存取百度云端/apps/bypy
目录下面的文件和目录。
据说百度PCS API最多返回目录下1000个文件( #306 ),如果属实,百度云盘上若有超过1000个文件的目录,将有一部分文件无法被看到 / 下载
特征: 支持Unicode/中文;失败重试;递归上传/下载;目录比较; 哈希缓存。
界面是英文的,主要是因为这个是为了Raspberry Pi树莓派开发的。
重要:需要把系统的区域编码设置为UTF-8。(参见:http://perlgeek.de/en/article/set-up-a-clean-utf8-environment)
- 通过
pip
来安装:pip install bypy
(支持Python 2.7+, 3.3+)
-
作为独立程序: 运行
bypy
(或者python -m bypy
,或者python3 -m bypy
)可以看到命令行支持的全部命令和参数。
-
作为一个包,在代码中使用:
import bypy
简单的图形界面:
运行 bypygui
要找多线程图形界面的,这个貌似不错:bcloud
显示使用帮助和所有命令(英文):
bypy
第一次运行时需要授权,只需跑任何一个命令(比如 bypy info
)然后跟着说明(登陆等)来授权即可。授权只需一次,一旦成功,以后不会再出现授权提示.
更详细的了解某一个命令:
bypy help <command>
显示在云盘(程序的)根目录下文件列表:
bypy list
把当前目录同步到云盘:
bypy syncup
or
bypy upload
把云盘内容同步到本地来:
bypy syncdown
or
bypy downdir /
比较本地当前目录和云盘(程序的)根目录(个人认为非常有用):
bypy compare
更多命令和详细解释请见运行bypy
的输出。
- 运行时添加
-v
参数,会显示进度详情。 - 运行时添加
-d
,会显示一些调试信息。 - 运行时添加
-ddd
,还会会显示HTTP通讯信息(警告:非常多)
请移步至wiki,方便分享/交流。
from bypy import ByPy
bp=ByPy()
bp.list() # or whatever instance methods of ByPy class
请阅: LICENSE
- Latest feature: Multiprocessing added to directory upload / download / sync(
--processes
)
This is a Python client for Baidu Yun (a.k.a PCS - Personal Cloud Storage), an online storage website offering 2 TB (fast) free personal storage. This main purpose is to be able to utilize this stoarge service under Linux environment (console), e.g. Raspberry Pi.
Due to Baidu PC permission restrictions, this program can only access your /apps/bypy
directoy at Baidu PCS
It's said the Baidu PCS API won't return more than 1000 items inside a directory ( #306 ),if this is true,you won't be able to see / download some files if you have a directoyr with more than 1000 files on Baidu Cloud
Features: Unicode / Chinese support; Retry on failures; Recursive down/up-load; Directory comparison; Hash caching.
Important: You need to set you system locale encoding to UTF-8 for this to work (You can refere here: http://perlgeek.de/en/article/set-up-a-clean-utf8-environment)
pip install bypy
(Supports Python 2.7+, 3.3+)
-
Standalone program
- Simply run
bypy
(orpython -m bypy
, orpython3 -m bypy
) You will see all the commands and parameters it supports
- Simply run
-
As a package in your code
import bypy
Simple GUI:
Run bypygui
For advanced GUI with parallel downloading capbility, this seems a good choice: bcloud
To get help and a list of available commands:
bypy
To authorize for first time use, run any commands e.g. bypy info
and follow the instructions (login etc). This is a one-time requirement only.
To get more details about certain command:
bypy help <command>
List files at (App's) root directory at Baidu PCS:
bypy list
To sync up to the cloud (from the current directory):
bypy syncup
or
bypy upload
To sync down from the cloud (to the current directory):
bypy syncdown
or
bypy downdir /
To compare the current directory to (App's) root directory at Baidu PCS (which I think is very useful):
bypy compare
To get more information about the commands, check the output of bypy
.
- Add in
-v
parameter, it will print more details about the progress. - Add in
-d
parameter, it will print some debug messages. - Add in
-ddd
, it will display HTTP messages as well (Warning: A lot)
Please go to wiki
from bypy import ByPy
bp=ByPy()
bp.list() # or whatever instance methods of ByPy class
Please refer to LICENSE
PCS API Document: http://developer.baidu.com/wiki/index.php?title=docs/pcs/rest/file_data_apis_list