Metadata-Version: 2.1
Name: NiuLab_download_YouTube_shorts
Version: 1.0.1
Summary: Downloads Youtube Videos
Author-email: "Shuo Niu, Abhisan Ghimire" <invictuscreatesanapp@gmail.com>
License: MIT License
        
        Copyright (c) 2022 Niu Lab
        
        Permission is hereby granted, free of charge, to any person obtaining a copy
        of this software and associated documentation files (the "Software"), to deal
        in the Software without restriction, including without limitation the rights
        to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
        copies of the Software, and to permit persons to whom the Software is
        furnished to do so, subject to the following conditions:
        
        The above copyright notice and this permission notice shall be included in all
        copies or substantial portions of the Software.
        
        THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
        IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
        FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
        AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
        LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
        OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
        SOFTWARE.
        
Classifier: Programming Language :: Python :: 3
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
License-File: LICENSE

# NiuLab-download-YouTube-shorts


NiuLab-download-YouTube-shorts is a Python library that downloads youtube videos with help of their ID.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install NiuLab-crawl-YouTube-screenshots.

```bash
pip install NiuLab-download-YouTube-shorts
```

## Usage

```python
from NiuLab_download_Youtube_shorts import NiuLab_download_Youtube_shorts

NiuLab_download_Youtube_shorts.youtube_download(XLSX_FILE_LOCATION ,DESTINATION_FOLDER)

```
## Example Usage

```python
from NiuLab_download_Youtube_shorts import NiuLab_download_Youtube_shorts

NiuLab_download_Youtube_shorts.youtube_download(r'C:\Users\testUser\PycharmProjects\python_package_test\test_file.xlsx',r'C:\Users\testUser\PycharmProjects\outputFolder')

```

### Dependencies

To use **NiuLab-download-YouTube-shorts** in your application developments, you must have installed the following dependencies : 
 
 - Pandas
 - Youtube-Dl 
 - OpenPyXl


You can install all the dependencies by running the commands below 

**Pandas**
```bash
pip install pandas
```

**Youtube-Dl**
```bash
pip install youtube-dl
```

**OpenPyXL**
```bash
 pip install openpyxl
```

## License
[MIT](https://choosealicense.com/licenses/mit/)

# NOTE : This package is under process of development.

## Some things to remember:

1. It supports "XLSX" filetype as input
2. Provide raw full pathname for input file and output destination folder
3. First column of excel file should contain all id for videos and it should have title as "video_id"

