Metadata-Version: 2.1
Name: clinton
Version: 0.0.4
Summary: ㅤ
Home-page: https://github.com/Clinton-Abraham
Author: Clinton-Abraham
Author-email: clintonabrahamc@gmail.com
License: MIT
Keywords: apps,python,extensions
Classifier: Natural Language :: English
Classifier: Intended Audience :: Developers
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3.10
Classifier: Programming Language :: Python :: 3.11
Classifier: Programming Language :: Python :: 3.12
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: License :: OSI Approved :: GNU Lesser General Public License v3 (LGPLv3)
Requires-Python: ~=3.10
Description-Content-Type: text/markdown
License-File: LICENSE
Requires-Dist: aiohttp
Requires-Dist: requests
Requires-Dist: ffmpeg-python

<p align="center">
 📦 <a href="https://pypi.org/project/clinton" style="text-decoration:none;">CLINTON</a>
</p>

```python
import asyncio
from Clinton.functions import Media

async def main():
    duration = 7000 # IN SECONDS
    save = "./Home/" # OUTPUT LOCATION
    file = "./Home/Video.mp4" # FILE LOCATION
    result = await Media.screenshot(file, save, duration)
    print(result)

asyncio.run(main())
```
