uqload-dl


Nameuqload-dl JSON
Version 1.0 PyPI version JSON
download
home_pagehttps://github.com/JoelFH23/uqload-downloader-python
SummaryDownload any video from the Uqload site
upload_time2023-12-14 10:29:28
maintainer
docs_urlNone
authorJoel Flores
requires_python>=3.9
licenseGPLv3
keywords uqload download video
VCS
bugtrack_url
requirements No requirements were recorded.
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

### 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": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "uqload,download,video",
    "author": "Joel Flores",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/ec/e8/133d0dc017669e79c4a10bef1fbf1cbde616ea3c6c5b59309662a5be2ad5/uqload_dl-1.0.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### 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.0",
    "project_urls": {
        "Homepage": "https://github.com/JoelFH23/uqload-downloader-python"
    },
    "split_keywords": [
        "uqload",
        "download",
        "video"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "76cea6909ae20c926e0b1563f848f6f29f8efdd2447647d0bebd1e909f1dc4b7",
                "md5": "b35143ee2127504e1c12048f91cb7767",
                "sha256": "e645449e2ef13e599c04e3430ff2a1d6d1efe950120f552e74ead4e7bf8da308"
            },
            "downloads": -1,
            "filename": "uqload_dl-1.0-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "b35143ee2127504e1c12048f91cb7767",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 24785,
            "upload_time": "2023-12-14T10:29:26",
            "upload_time_iso_8601": "2023-12-14T10:29:26.556028Z",
            "url": "https://files.pythonhosted.org/packages/76/ce/a6909ae20c926e0b1563f848f6f29f8efdd2447647d0bebd1e909f1dc4b7/uqload_dl-1.0-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "ece8133d0dc017669e79c4a10bef1fbf1cbde616ea3c6c5b59309662a5be2ad5",
                "md5": "61c76c8c256cb9327ca1afd75c4fe1da",
                "sha256": "b7972bd89131025dedcca3cbb6bff0f099c354ab99dd15642c6265818f166d6e"
            },
            "downloads": -1,
            "filename": "uqload_dl-1.0.tar.gz",
            "has_sig": false,
            "md5_digest": "61c76c8c256cb9327ca1afd75c4fe1da",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 27204,
            "upload_time": "2023-12-14T10:29:28",
            "upload_time_iso_8601": "2023-12-14T10:29:28.377215Z",
            "url": "https://files.pythonhosted.org/packages/ec/e8/133d0dc017669e79c4a10bef1fbf1cbde616ea3c6c5b59309662a5be2ad5/uqload_dl-1.0.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-14 10:29:28",
    "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": [],
    "lcname": "uqload-dl"
}
        
Elapsed time: 0.16959s