Metadata-Version: 2.1
Name: VidUniq
Version: 1.2
Summary: A simple video uniquelizer
Home-page: https://github.com/1floppa3/VidUniqLib
Download-URL: https://github.com/1floppa3/VidUniqLib/archive/main.zip
Author: 1Floppa3
Author-email: denis.kochetkov2006@gmail.com
License: GPL-3.0 license
Classifier: License :: OSI Approved :: GNU General Public License v3 (GPLv3)
Classifier: Operating System :: OS Independent
Classifier: Intended Audience :: End Users/Desktop
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3 :: Only
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: Implementation :: PyPy
Classifier: Programming Language :: Python :: Implementation :: CPython
Requires-Python: >=3.10
Description-Content-Type: text/markdown
License-File: LICENSE.md

# VidUniqLib

![Language](https://img.shields.io/badge/Language-Python3.10-yellow.svg?style=flat)
![License](https://img.shields.io/pypi/l/VidUniqLib?color=blueviolet)

_**PyPi**_ Video Uniquelizer Library
###### The purpose of the library is to slightly modify the video so that it cannot be matched with the original video

## Installation
Install the current version with [PyPI](https://pypi.org/project/VidUniqLib/):
```bash
pip install VidUniq
```
Or from GitHub:
```bash
pip install https://github.com/1floppa3/VidUniqLib/archive/main.zip
```

## Usage
You can generate a token for clubhouse by going to the account section and generating a new token
```python
from VidUniqLib import VideoUniquelizer

url: str = 'https://some_invalid_site.site/api.php?wtf=invalid.mp4' #  Could be list
path_list: list[str] = [ #  Could bee 'str' or 'pathlib.Path'
    'some_invalid_folder_IdnaP19f/',
    'some_invalid_file_dmAgo30z.mp4'
]

uniq = VideoUniquelizer(path=path_list, url=url)
uniq.uniquelize('uniquelized/')
```

## Example
You can find an example of usage here: [VidUniq](https://github.com/1floppa3/VidUniq)
