You can download any video from Uqload. You only need the URL of the video.
Inspired by thomasarmel/uqload_downloader
- Python 3.9 or greater.
You can install the package directly from PyPI using pip:
python -m pip install uqload-dl
- Clone the repository:
git clone https://github.com/JoelFH23/uqload-downloader-python
- Navigate to the package directory:
cd uqload-downloader-python
- Install the package:
python -m pip install .
Alternatively, you can install it in development mode to easily make changes:
python -m pip install -e .
You can install the package directly from GitHub using pip:
python -m pip install git+https://github.com/JoelFH23/uqload-downloader-python
To download a video
uqload_dl -u https://uqload.io/xxxxxxxxxxxx.html
You can specify a video name using "-n" or "--name"
uqload_dl -u https://uqload.io/xxxxxxxxxxxx.html -n "The best video"
if no name is specified, the original name of the video will be used.
You can specify the path where the video will be stored using "-o" or "--outdir"
uqload_dl -u https://uqload.io/xxxxxxxxxxxx.html -n "The best video" -o C:\\Users\\Joel\\Desktop\\My Videos
if no path is specified, the current working path will be used.
from uqload_dl import UQLoad
uqload = UQLoad(url="https://uqload.io/xxxxxxxxxxxx.html",output_file="The best video")
uqload.download() # download the video
(python3.12) C:\Users\Joel>uqload_dl -u vule3vel9n5q
Looking for video...
------------------------------------------------------------
video info
------------------------------------------------------------
url : https://m180.uqload.net/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6jw6napcm4q/v.mp4
title : python testing time
image_url : https://m180.uqload.net/i/05/02288/vule3vel9n5q_xt.jpg
resolution : 860x360
duration : 00:22
size : 894.1 KiB
type : video/mp4
------------------------------------------------------------
Do you want to download the video? (yes/[no]):
Note: sometimes the resolution and duration will not be available.
You can use "-y" or "--yes" to start the download automatically.
(python3.12) C:\Users\Joel>uqload_dl -u vule3vel9n5q -y
Looking for video...
------------------------------------------------------------
video info
------------------------------------------------------------
url : https://m180.uqload.net/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6jumnapcm4q/v.mp4
title : python testing time
image_url : https://m180.uqload.net/i/05/02288/vule3vel9n5q_xt.jpg
resolution : 860x360
duration : 00:22
size : 894.1 KiB
type : video/mp4
------------------------------------------------------------
Downloading... |----------------------------------------| 100.00% completed
Video saved as: C:\Users\Joel\python testing time.mp4
The video has been downloaded successfully
Licensed under the GPLv3.