Metadata-Version: 2.1
Name: NiuLab-Download-TikTok-Videos
Version: 1.0.0
Summary: Downloads TikTok 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-TikTok-videos


NiuLab-download-TikTok-videos is a Python library that downloads tiktok videos with help of their ID.

## Installation

Use the package manager [pip](https://pip.pypa.io/en/stable/) to install NiuLab-download-TikTok-videos.

```bash
pip install NiuLab_download_TikTok_videos
```

## Usage

```python
from NiuLab_download_TikTok_videos import NiuLab_download_TikTok_videos

NiuLab_download_TikTok_videos.tiktok_download(XLSX_FILE_LOCATION ,DESTINATION_FOLDER)

```
## Example Usage

```python
from NiuLab_download_TikTok_videos import NiuLab_download_TikTok_videos

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

```

### Dependencies

To use **NiuLab_download_TikTok_videos** in your application developments, you must have installed the following dependencies : 
 
 - Pandas
 - OpenPyXl
 - TikTokApi


You can install all the dependencies by running the commands below 

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

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

**TikTokApi**
```bash
pip install TikTokApi
```

## 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"

