Skip to content

Commit d34ba77

Browse files
committed
update readme
1 parent cd410af commit d34ba77

File tree

1 file changed

+28
-9
lines changed

1 file changed

+28
-9
lines changed

README.md

Lines changed: 28 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,19 +1,38 @@
11
# json-downloader
22

3-
## What is it?
4-
- Downloader for Windows Console
5-
- It is written for personal purpose.
6-
- DONE:
7-
- Ability to download files continuously
8-
- Getting a download list from a json file
9-
- TODO:
10-
- Extract files from compressed files
3+
## Introduction
4+
- File Downloader for Windows Console
5+
- It is written for personal purpose.
6+
7+
### DONE
8+
- Ability to download files continuously
9+
- Getting a download list from a json file
10+
11+
### TODO
12+
- Extract files from compressed files
13+
14+
## How to use program
15+
- Execute 'json-downloader.exe' with json parameter
16+
```cmd
17+
json-downloader.exe data.json
18+
```
19+
20+
### Json file format
21+
- The json file(such as data.json) consists of the following:
22+
```json
23+
{
24+
"https://raw.githubusercontent.com/j2doll/json-downloader/master/README.md" : "README.md" ,
25+
"https://raw.githubusercontent.com/j2doll/json-downloader/master/LICENSE" : "LICENSE"
26+
}
27+
```
28+
- The first argument is the URL of the file you want to download.
29+
- The second argument is the name of the file to be saved locally.
1130

1231
## Requred Environment
1332
- Visual Studio 2017 x64
1433
- Windows 10 x64 (Maybe it will also build on Windows 7/8 x64.)
1534

16-
## License
35+
## License and links
1736
- json-downloader is under GPL 3 license. [https://github.com/j2doll/json-downloader](https://github.com/j2doll/json-downloader)
1837
- curl is under MIT style license. [https://curl.haxx.se/docs/copyright.html](https://curl.haxx.se/docs/copyright.html)
1938
- JSON for Modern C++ is under MIT license. [https://github.com/nlohmann/json/releases](https://github.com/nlohmann/json/releases)

0 commit comments

Comments
 (0)