Skip to content

Commit

Permalink
readme
Browse files Browse the repository at this point in the history
  • Loading branch information
hwfan committed Jun 26, 2022
1 parent 31dd7ff commit 2d90a23
Show file tree
Hide file tree
Showing 2 changed files with 13 additions and 7 deletions.
9 changes: 6 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,12 @@ DriveDownloader now supports:
- `URL/FILELIST`: target url/filelist to download from. **The example of filelist is shown in `tests/test.list`.**
- `--filename/-o FILENAME`: (optional) output filename. Example: 'hello.txt'
- `--thread-number/-n NUMBER`: (optional) the thread number when using multithread.
- `--force-back-google/-F`: (optional) use the backup downloader for Google drive (it needs authentication, but is more stable).
- Using proxy:
- Set the environment variables `http_proxy` and `https_proxy` to your proxy addresses, and DriveDownloader will automatically read them.

- Resume:
- If your download was interrupted accidentally, simply restart the command will resume, regardless the number of threads.

## Installation
1. Install from pip
```
Expand Down Expand Up @@ -114,15 +117,15 @@ Some code of DriveDownloader is borrowed from [PyDrive2](https://github.com/iter
- [x] Support more netdrives - OneDrive for Business, Dropbox, ...
- [x] Downloading files from a list.
- [x] Multi-thread downloading.
- [ ] Resume downloading.
- [x] Resume downloading.
- [ ] Window-based UI.
- [ ] Quick Start.
## Update Log
### v1.6.0
- (WIP) Added automatic resume downloading.
- Added automatic resume downloading.
- Changed the progress bar manager to [rich](https://github.com/Textualize/rich).
### v1.5.0
Expand Down
11 changes: 7 additions & 4 deletions README_CN.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,15 +14,18 @@ DriveDownloader当前支持:
## 命令用法

```
ddl URL/FILELIST [--filename FILENAME] [--thread-number NUMBER] [--version] [--help]
ddl URL/FILELIST [--filename FILENAME] [--thread-number NUMBER] [--force-back-google] [--version] [--help]
```

- `URL/FILELIST`: 目标的URL或者文件列表。**文件列表的格式请参考:`tests/test.list`.**
- `--filename/-o FILENAME`: (可选) 输出的文件名,如'hello.txt'
- `--thread-number/-n NUMBER`: (可选) 多线程的线程数量。
- `--force-back-google/-F`: (可选) 对于谷歌网盘使用备份下载器 (需要谷歌账号认证,但可以保证稳定连接)
- 使用代理服务器:
- 请将环境变量 `http_proxy``https_proxy` 设置成你的代理服务器地址,DriveDownloader会自动读取它们。

- 断点续传:
- 如果您的下载意外中断,只需要重启同样的命令即可恢复。

## 安装方式

1. 从pip安装
Expand Down Expand Up @@ -114,15 +117,15 @@ DriveDownloader当前支持:
- [x] 支持更多网盘 - OneDrive for Business, Dropbox, 直链等。
- [x] 从列表下载
- [x] 多线程下载
- [ ] 断点续传
- [x] 断点续传
- [ ] 基于窗口的UI
- [ ] 快速开始
## 更新日志
### v1.6.0
- (WIP) 增加断点续传功能。
- 增加断点续传功能。
- 采用新的进度条管理器[rich](https://github.com/Textualize/rich)。
### v1.5.0
Expand Down

0 comments on commit 2d90a23

Please sign in to comment.