putting it all togeather

This commit is contained in:
2026-08-04 02:34:16 +00:00
parent d6503b7d92
commit 33d78759fe
7 changed files with 282 additions and 179 deletions
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
import asyncio
import twitch_video_info
import twitch_download_videos
import build_videos
if __name__ == "__main__":
# Get Twitch Video Info
asyncio.run(twitch_video_info.main())
# Download Twitch Videos
twitch_download_videos.main()
#Build
build_videos.main()