Metadata-Version: 2.1
Name: jodotnetmodules
Version: 0.0.2
Summary: Useful features that you can use with a Discord Bot
Project-URL: Homepage, https://github.com/JoDotNet/JoDotNetModules
Project-URL: Bug Tracker, https://github.com/JoDotNet/JoDotNetModules/issues
Author: JoDotNet
License-File: LICENSE
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 3
Requires-Python: >=3.8.0
Description-Content-Type: text/markdown

# JoDotNetModules

This Library will give you access to the latest videoes of a YouTube channel and Twitch Live notifications.
It is easy to install; you only run the setup and do routine checks.

It is best used with Discord Bots


### YouTube Example
```python
import time
from jodotnetmodules import youtuberequests

CHANNEL_ID = "Enter_YouTube_Channel_ID"
API_KEY = "Enter_Your_Secret_API_Key"
LOCATION = r"C:\Users\user\Desktop\ExampleFolder"


# Only run this once, if you run it multiple times it will mess the files up.
youtuberequests.SETUP(id=CHANNEL_ID, key=API_KEY, location=LOCATION)


# This loop will print out the status, if there is any new videos it will print it out.
while True:
    request = youtuberequests.CheckVideos(location=LOCATION)
    print(request)
    time.sleep(1800)
```
