pydownloader4downloads.khin.../README.md

46 lines
1.7 KiB
Markdown
Raw Permalink Normal View History

2024-01-16 09:41:02 +00:00
# pydownloader4[downloads.khinsider](https://downloads.khinsider.com/)
Download almost any album from [downloads.khinsider](https://downloads.khinsider.com/) using a multithreaded python script
2024-01-16 09:37:07 +00:00
## How to use the script
Download the source code by running git clone
```
git clone https://github.com/OlaYZen/pydownloader4downloads.khinsider.git
```
2024-01-16 09:37:37 +00:00
Install the required python libraries by downloading the requirements.txt found in the source code and running the following command
2024-01-16 09:37:07 +00:00
```
pip install -r requirements.txt
```
Start the program using Python and enter the album URL of the website by running
```
python Downloader.py
2024-01-16 09:37:07 +00:00
```
2024-01-16 09:43:18 +00:00
## Info
2024-01-17 12:18:06 +00:00
The script might crash on PCs with less RAM. Recommended amount is 8GB
2024-01-16 10:15:14 +00:00
2024-01-17 12:18:06 +00:00
The script tries to find FLAC, MP3, and M4A files. It prioritizes FLAC files but if there isn't then it tries MP3 and if both are missing then M4A.
The downloaded files will be "Audio files". By default, the folder will be created where the python script is located.
2024-01-16 10:15:14 +00:00
## Settings
Some basic settings can be changed inside the settings.ini file. This file is needed to make the script work. Inside the file, you may find options such as changing the download path, amount of threads, priority of the downloads, and amount of retries before giving an error.
2024-01-16 10:15:14 +00:00
Here is the default settings
2024-01-16 10:15:14 +00:00
```
[Retries] ; Amount of retries per file before the script gives an error
max_retries = 2
2024-01-16 10:15:14 +00:00
[Threads] ; Setting this value to 0, every thread on the cpu will be used
max_workers = 1
2024-01-16 10:15:14 +00:00
[Download]
priority_order = flac, mp3, m4a
; C:\example\for\windows
; /example/for/linux
2024-05-03 08:24:13 +00:00
; If empty, the downloads will be inside a folder called "Audio files" in the same location as the script
download_path =
2024-01-17 12:18:06 +00:00
```