Skip to content

Nyndow/Thenkiri-dl

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

47 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Thenkiri-dl

Thenkiri-dl is a CLI tool designed to download videos from
https://Thenkiri.com quickly and easily.

It uses aria2 and/or wget to ensure fast and reliable downloads.


Features

  • Search shows available on Thenkiri and Dramakey
  • Select episodes directly from the terminal
  • Download using aria2 or wget
  • Resume interrupted downloads (download links remain active for ~8 hours)
  • Simple CLI interface

Installation

Choose the installation method that fits your environment.


🐳 Docker Hub image

Pull the published image from Docker Hub:

docker pull nyndow/thenkiri-dl:latest

Run it with a named volume for downloads:

docker run -it -v thenkiri_downloads:/downloads nyndow/thenkiri-dl:latest

Access a shell inside the container:

docker run -it nyndow/thenkiri-dl:latest bash

🔧 Local Docker installation

This project includes a Dockerfile so you can run Thenkiri-dl without installing Python or dependencies locally.

Build the Docker image locally

docker build -t thenkiri-dl .

Run the container locally

docker run -it thenkiri-dl

Run with local download and log folders

To keep downloaded files and logs outside the container, mount local directories:

docker run -it \
  -v "$PWD/downloads:/downloads" \
  -v "$PWD/logs:/app/logs" \
  thenkiri-dl

Override Docker environment variables

docker run -it \
  -e DOWNLOAD_PATH=/downloads \
  -e THENKIRI_LOG_PATH=/app/logs/thenkiri.log \
  -v "$PWD/downloads:/downloads" \
  -v "$PWD/logs:/app/logs" \
  thenkiri-dl

🛠️ Manual installation

Make sure you have aria2 and/or wget installed on your system.

Clone the repository

git clone https://github.com/Nyndow/Thenkiri-dl
cd Thenkiri-dl
pip install -r requirements.txt

Create a .env file at the root of the directory and add:

DOWNLOAD_PATH=~/Videos/Thenkiri-dl

To run:

cd src
python main.py

Usage

Search for the show

Searching for a show

Select the episodes you wish to download

Selecting episodes

Download by choosing wget or aria2

Choosing download method


Disclaimer

This project is created for educational purposes only.
I am not affiliated with Thenkiri.com.
Use this tool responsibly and respect the website's terms of service.

About

Kdrama and movies bunk downloader

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors