File tree Expand file tree Collapse file tree 1 file changed +28
-9
lines changed Expand file tree Collapse file tree 1 file changed +28
-9
lines changed Original file line number Diff line number Diff line change 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 )
You can’t perform that action at this time.
0 commit comments