Kisskh-다운로더 README에 오신 것을 환영합니다! 이 패키지는 https://kisskh.co/에서 프로그램을 다운로드하기 위한 간단한 명령줄 도구입니다. 시작하기 위해 알아야 할 모든 사항은 다음과 같습니다.
Kisskh-downloader를 설치하려면 다음 명령을 실행하면 됩니다.
pip install -U kisskh-downloader
패키지를 설치한 후, kisskh dl
명령을 사용하여 명령줄에서 프로그램을 다운로드할 수 있습니다.
kisskh dl --help
Usage: kisskh dl [OPTIONS] DRAMA_URL_OR_NAME
Options:
-f, --first INTEGER Starting episode number.
-l, --last INTEGER Ending episode number.
-q, --quality [360p|480p|540p|720p|1080p]
Quality of the video to be downloaded.
-s, --sub-langs TEXT Languages of the subtitles to download.
-o, --output-dir TEXT Output directory where downloaded files will
be store.
--help Show this message and exit.
다음은 몇 가지 예입니다.
kisskh dl "https://kisskh.co/Drama/Island-Season-2?id=7000" -o .
kisskh dl "Stranger Things" -o .
1. Stranger Things - Season 4
2. Stranger Things - Season 1
3. Stranger Things - Season 2
4. Stranger Things - Season 3
Please select one from above: 1
❗ 선택한 품질을 사용할 수 없는 경우 해당 품질보다 낮은 품질을 얻으려고 시도합니다. 그것도 사용할 수 없는 경우 최상의 품질을 얻으려고 노력합니다.
720p로 Alchemy of Souls
에피소드 4~8을 다운로드하세요.
kisskh dl "https://kisskh.co/Drama/Alchemy-of-Souls?id=5043" -f 4 -l 8 -q 720p -o .
720p로 A Business Proposal
의 에피소드 3을 다운로드합니다.
kisskh dl "https://kisskh.co/Drama/A-Business-Proposal?id=4608" -f 3 -l 3 -q 720p -o .
에피소드 URL을 제공하여 단일 에피소드를 다운로드할 수도 있습니다.
kisskh dl "https://kisskh.co/Drama/A-Business-Proposal/Episode-3?id=4608&ep=86439&page=0&pageSize=100" -o .
더 많은 옵션을 보려면 --help
플래그를 사용하세요.
다운로드한 자막을 해독하려면 --decrypt-subtitle
또는 -ds
플래그를 해독 키 및 초기화 벡터와 함께 전달해야 합니다. #14를 확인하세요.
다음은 명령줄에서 이러한 매개변수를 전달하는 방법의 예입니다.
kisskh download " " --decrypt-subtitle --key " your_key_here " --initialization-vector " your_iv_here "
이러한 매개변수를 환경 변수로 설정할 수도 있습니다. KISSKH_KEY
및 KISSKH_INITIALIZATION_VECTOR
환경 변수를 설정하면 기본적으로 사용됩니다.
다음은 이러한 환경 변수를 설정하는 방법의 예입니다.
export KISSKH_KEY= " your_key_here "
export KISSKH_INITIALIZATION_VECTOR= " your_iv_here "
set KISSKH_KEY = " your_key_here "
set KISSKH_INITIALIZATION_VECTOR = " your_iv_here "
이러한 환경 변수를 설정한 후 키와 초기화 벡터를 명시적으로 전달하지 않고 --decrypt-subtitle
플래그를 사용할 수 있습니다.
kisskh download " Drama Name " --decrypt-subtitle
"your_key_here"
및 "your_iv_here"
실제 암호 해독 키 및 초기화 벡터로 바꾸십시오.
디버깅을 활성화하려면 kisskh dl
실행하는 동안 -vv
플래그를 사용하세요.
kisskh -vv dl "https://kisskh.co/Drama/A-Business-Proposal?id=4608" -f 3 -l 3 -q 720p