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.
- 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
Choose the installation method that fits your environment.
Pull the published image from Docker Hub:
docker pull nyndow/thenkiri-dl:latestRun it with a named volume for downloads:
docker run -it -v thenkiri_downloads:/downloads nyndow/thenkiri-dl:latestAccess a shell inside the container:
docker run -it nyndow/thenkiri-dl:latest bashThis project includes a Dockerfile so you can run Thenkiri-dl without installing Python or dependencies locally.
docker build -t thenkiri-dl .docker run -it thenkiri-dlTo keep downloaded files and logs outside the container, mount local directories:
docker run -it \
-v "$PWD/downloads:/downloads" \
-v "$PWD/logs:/app/logs" \
thenkiri-dldocker run -it \
-e DOWNLOAD_PATH=/downloads \
-e THENKIRI_LOG_PATH=/app/logs/thenkiri.log \
-v "$PWD/downloads:/downloads" \
-v "$PWD/logs:/app/logs" \
thenkiri-dlMake sure you have aria2 and/or wget installed on your system.
git clone https://github.com/Nyndow/Thenkiri-dl
cd Thenkiri-dl
pip install -r requirements.txtCreate a .env file at the root of the directory and add:
DOWNLOAD_PATH=~/Videos/Thenkiri-dlTo run:
cd src
python main.pyThis 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.


