Skip to content

Commit 84aa712

Browse files
committed
update readme
1 parent fa434f4 commit 84aa712

File tree

1 file changed

+42
-0
lines changed

1 file changed

+42
-0
lines changed

README.ko.md

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,42 @@
1+
# json-downloader
2+
3+
> *Read this in other languages: [English](README.md), :kr: [한국어](README.ko.md)*
4+
5+
## 소개
6+
- Windows 콘솔용 파일 다운로더
7+
- 개인적 목적으로 작성된 것입니다.
8+
9+
### DONE
10+
- 파일을 지속적으로 다운로드 할 수있는 기능
11+
- json 파일에서 다운로드 목록 가져 오기
12+
13+
### TODO
14+
- 압축 파일에서 파일 추출
15+
16+
## 프로그램 사용 방법
17+
- json 매개 변수로 'json-downloader.exe' 실행
18+
```cmd
19+
json-downloader.exe data.json
20+
```
21+
22+
### Json 파일 포맷
23+
- json 파일(예: data.json)은 다음으로 구성됩니다.
24+
```json
25+
{
26+
"https://raw.githubusercontent.com/j2doll/json-downloader/master/README.md" : "README.md" ,
27+
"https://raw.githubusercontent.com/j2doll/json-downloader/master/LICENSE" : "LICENSE"
28+
}
29+
```
30+
- 첫 번째 인수는 다운로드 할 파일의 URL입니다.
31+
- 두 번째 인수는 로컬에 저장할 파일의 이름입니다.
32+
33+
## 필요한 환경
34+
- Visual Studio 2017 x64
35+
- Windows 10 x64 (어쩌면 Windows 7/8 x64에서도 빌드될 것입니다.)
36+
37+
## 라이센스와 링크
38+
- json-downloader는 GPL 3 라이센스 입니다. [https://github.com/j2doll/json-downloader](https://github.com/j2doll/json-downloader)
39+
- curl는 MIT 스타일 라이센스 입니다. [https://curl.haxx.se/docs/copyright.html](https://curl.haxx.se/docs/copyright.html)
40+
- JSON for Modern C++는 MIT 라이센스 입니다. [https://github.com/nlohmann/json/releases](https://github.com/nlohmann/json/releases)
41+
- spdlog는 MIT 라이센스 입니다. [https://github.com/gabime/spdlog](https://github.com/gabime/spdlog)
42+
- unarr는 LGPL 3 라이센스 입니다. [https://github.com/selmf/unarr](https://github.com/selmf/unarr)

0 commit comments

Comments
 (0)