uqload-dl


Nameuqload-dl JSON
Version 1.1 PyPI version JSON
download
home_pagehttps://github.com/JoelFH23/uqload-downloader-python
SummaryDownload any video from the Uqload site
upload_time2024-11-01 02:10:57
maintainerNone
docs_urlNone
authorJoel Flores
requires_python>=3.9
licenseGPLv3
keywords uqload download video
VCS
bugtrack_url
requirements httpx
Travis-CI No Travis.
coveralls test coverage No coveralls.
            # Uqload Downloader Python

You can download any video from Uqload. You only need the URL of the video.

Inspired by [thomasarmel/uqload_downloader](https://github.com/thomasarmel/uqload_downloader)

---

## Requirements

-   Python 3.9 or greater.

## Installation

### GUI version

[Download](https://github.com/JoelFH23/uqload-downloader-gui/releases/tag/uqload-downloader-gui-1.0)

### From PyPI

You can install the package directly from PyPI using pip:

```bash
python -m pip install uqload-dl
```

### From Source Code

1. Clone the repository:

```bash
git clone https://github.com/JoelFH23/uqload-downloader-python
```

2. Navigate to the package directory:

```bash
cd uqload-downloader-python
```

3. Install the package:

```bash
python -m pip install .
```

Alternatively, you can install it in development mode to easily make changes:

```bash
python -m pip install -e .
```

### Directly from GitHub

You can install the package directly from GitHub using pip:

```bash
python -m pip install git+https://github.com/JoelFH23/uqload-downloader-python
```

## Usage

### Using the CLI

To download a video

```bash
uqload_dl -u https://uqload.io/xxxxxxxxxxxx.html
```

You can specify a video name using "-n" or "--name"

```bash
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"

```bash
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.

### Using a Python Script

```Python
from uqload_dl import UQLoad
uqload = UQLoad(url="https://uqload.io/xxxxxxxxxxxx.html",output_file="The best video")
uqload.download() # download the video
```

### Example Usage

```bash
(python3.9) PS C:\Users\Joel\desktop> uqload_dl -u vule3vel9n5q
Looking for video...
------------------------------------------------------------
                video info
------------------------------------------------------------
url : https://m180.uqload.io/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6j6f5krce4q/v.mp4
title : python testing time
image_url : https://m180.uqload.io/i/05/02288/vule3vel9n5q_xt.jpg
resolution : 860x360
duration : 00:22
size : 915562 bytes
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.

```bash
(python3.9) PS C:\Users\Joel\desktop> uqload_dl -u vule3vel9n5q -y
Looking for video...
------------------------------------------------------------
                video info
------------------------------------------------------------
url : https://m180.uqload.io/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6jydssrce4q/v.mp4
title : python testing time
image_url : https://m180.uqload.io/i/05/02288/vule3vel9n5q_xt.jpg
resolution : 860x360
duration : 00:22
size : 915562 bytes
type : video/mp4
------------------------------------------------------------
Downloading... |----------------------------------------| 100.00% completed
Video saved as: C:\Users\Joel\desktop\python testing time.mp4
```

## License

Licensed under the [GPLv3](https://choosealicense.com/licenses/gpl-3.0/).

            

Raw data

            {
    "_id": null,
    "home_page": "https://github.com/JoelFH23/uqload-downloader-python",
    "name": "uqload-dl",
    "maintainer": null,
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": null,
    "keywords": "uqload, download, video",
    "author": "Joel Flores",
    "author_email": null,
    "download_url": "https://files.pythonhosted.org/packages/cd/29/258ec30242599391d01c58a3472e4ae74a98fda598ed8b751ccbd0371870/uqload_dl-1.1.tar.gz",
    "platform": null,
    "description": "# Uqload Downloader Python\r\n\r\nYou can download any video from Uqload. You only need the URL of the video.\r\n\r\nInspired by [thomasarmel/uqload_downloader](https://github.com/thomasarmel/uqload_downloader)\r\n\r\n---\r\n\r\n## Requirements\r\n\r\n-   Python 3.9 or greater.\r\n\r\n## Installation\r\n\r\n### GUI version\r\n\r\n[Download](https://github.com/JoelFH23/uqload-downloader-gui/releases/tag/uqload-downloader-gui-1.0)\r\n\r\n### From PyPI\r\n\r\nYou can install the package directly from PyPI using pip:\r\n\r\n```bash\r\npython -m pip install uqload-dl\r\n```\r\n\r\n### From Source Code\r\n\r\n1. Clone the repository:\r\n\r\n```bash\r\ngit clone https://github.com/JoelFH23/uqload-downloader-python\r\n```\r\n\r\n2. Navigate to the package directory:\r\n\r\n```bash\r\ncd uqload-downloader-python\r\n```\r\n\r\n3. Install the package:\r\n\r\n```bash\r\npython -m pip install .\r\n```\r\n\r\nAlternatively, you can install it in development mode to easily make changes:\r\n\r\n```bash\r\npython -m pip install -e .\r\n```\r\n\r\n### Directly from GitHub\r\n\r\nYou can install the package directly from GitHub using pip:\r\n\r\n```bash\r\npython -m pip install git+https://github.com/JoelFH23/uqload-downloader-python\r\n```\r\n\r\n## Usage\r\n\r\n### Using the CLI\r\n\r\nTo download a video\r\n\r\n```bash\r\nuqload_dl -u https://uqload.io/xxxxxxxxxxxx.html\r\n```\r\n\r\nYou can specify a video name using \"-n\" or \"--name\"\r\n\r\n```bash\r\nuqload_dl -u https://uqload.io/xxxxxxxxxxxx.html -n \"The best video\"\r\n```\r\n\r\nif no name is specified, the original name of the video will be used.\r\n\r\nYou can specify the path where the video will be stored using \"-o\" or \"--outdir\"\r\n\r\n```bash\r\nuqload_dl -u https://uqload.io/xxxxxxxxxxxx.html -n \"The best video\" -o C:\\\\Users\\\\Joel\\\\Desktop\\\\My Videos\r\n```\r\n\r\nif no path is specified, the current working path will be used.\r\n\r\n### Using a Python Script\r\n\r\n```Python\r\nfrom uqload_dl import UQLoad\r\nuqload = UQLoad(url=\"https://uqload.io/xxxxxxxxxxxx.html\",output_file=\"The best video\")\r\nuqload.download() # download the video\r\n```\r\n\r\n### Example Usage\r\n\r\n```bash\r\n(python3.9) PS C:\\Users\\Joel\\desktop> uqload_dl -u vule3vel9n5q\r\nLooking for video...\r\n------------------------------------------------------------\r\n                video info\r\n------------------------------------------------------------\r\nurl : https://m180.uqload.io/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6j6f5krce4q/v.mp4\r\ntitle : python testing time\r\nimage_url : https://m180.uqload.io/i/05/02288/vule3vel9n5q_xt.jpg\r\nresolution : 860x360\r\nduration : 00:22\r\nsize : 915562 bytes\r\ntype : video/mp4\r\n------------------------------------------------------------\r\nDo you want to download the video? (yes/[no]):\r\n```\r\n\r\nNote: sometimes the resolution and duration will not be available.\r\n\r\nYou can use \"-y\" or \"--yes\" to start the download automatically.\r\n\r\n```bash\r\n(python3.9) PS C:\\Users\\Joel\\desktop> uqload_dl -u vule3vel9n5q -y\r\nLooking for video...\r\n------------------------------------------------------------\r\n                video info\r\n------------------------------------------------------------\r\nurl : https://m180.uqload.io/3rfkv4rhrvw2q4drdkgpxmnva6flydhkehdqtxrb6635d6s4w6jydssrce4q/v.mp4\r\ntitle : python testing time\r\nimage_url : https://m180.uqload.io/i/05/02288/vule3vel9n5q_xt.jpg\r\nresolution : 860x360\r\nduration : 00:22\r\nsize : 915562 bytes\r\ntype : video/mp4\r\n------------------------------------------------------------\r\nDownloading... |----------------------------------------| 100.00% completed\r\nVideo saved as: C:\\Users\\Joel\\desktop\\python testing time.mp4\r\n```\r\n\r\n## License\r\n\r\nLicensed under the [GPLv3](https://choosealicense.com/licenses/gpl-3.0/).\r\n",
    "bugtrack_url": null,
    "license": "GPLv3",
    "summary": "Download any video from the Uqload site",
    "version": "1.1",
    "project_urls": {
        "Homepage": "https://github.com/JoelFH23/uqload-downloader-python"
    },
    "split_keywords": [
        "uqload",
        " download",
        " video"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "80f8219ac19168a721891440f56a2cac64a201c2f236dc4c90ffbe798f5f5c37",
                "md5": "14ef2ba4e9c35d6f27dba6d17985669d",
                "sha256": "30454efbdca2726c12fca5a470ec2b9652852683a021c3de65b1257fddcc2666"
            },
            "downloads": -1,
            "filename": "uqload_dl-1.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "14ef2ba4e9c35d6f27dba6d17985669d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 25182,
            "upload_time": "2024-11-01T02:10:55",
            "upload_time_iso_8601": "2024-11-01T02:10:55.898113Z",
            "url": "https://files.pythonhosted.org/packages/80/f8/219ac19168a721891440f56a2cac64a201c2f236dc4c90ffbe798f5f5c37/uqload_dl-1.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "cd29258ec30242599391d01c58a3472e4ae74a98fda598ed8b751ccbd0371870",
                "md5": "fa1cc568a8acd951db4a5590ec31c4d6",
                "sha256": "af7b7bd95928fdcea9d0c78f7200567f6502883cb28636e513fcfcf0cee33281"
            },
            "downloads": -1,
            "filename": "uqload_dl-1.1.tar.gz",
            "has_sig": false,
            "md5_digest": "fa1cc568a8acd951db4a5590ec31c4d6",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 27450,
            "upload_time": "2024-11-01T02:10:57",
            "upload_time_iso_8601": "2024-11-01T02:10:57.665695Z",
            "url": "https://files.pythonhosted.org/packages/cd/29/258ec30242599391d01c58a3472e4ae74a98fda598ed8b751ccbd0371870/uqload_dl-1.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2024-11-01 02:10:57",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "JoelFH23",
    "github_project": "uqload-downloader-python",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": false,
    "requirements": [
        {
            "name": "httpx",
            "specs": [
                [
                    "==",
                    "0.25.1"
                ]
            ]
        }
    ],
    "lcname": "uqload-dl"
}
        
Elapsed time: 3.73037s