├── .gitignore ├── Bot ├── Info │ ├── Sub │ │ ├── cursedmemes.txt │ │ ├── dankvideos.txt │ │ ├── funny.txt │ │ └── shitposting.txt │ ├── check.txt │ ├── client id.txt │ ├── client secret.txt │ ├── gmail.txt │ ├── intro video.txt │ ├── limit.txt │ ├── link.txt │ ├── name.txt │ ├── outro video.txt │ ├── part.txt │ ├── password.txt │ ├── transition video.txt │ ├── user agent.txt │ ├── username.txt │ └── vid_no.txt └── Reddit │ └── temp.txt ├── LICENCE ├── README.md ├── Youtube Reddit Bot.vbs ├── con_gui.py ├── icon.ico ├── main_gui.pyw ├── requirements.bat └── requirements.sh /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/.gitignore -------------------------------------------------------------------------------- /Bot/Info/Sub/cursedmemes.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/Sub/dankvideos.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/Sub/funny.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/Sub/shitposting.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/check.txt: -------------------------------------------------------------------------------- 1 | No -------------------------------------------------------------------------------- /Bot/Info/client id.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/client secret.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/gmail.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/intro video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/limit.txt: -------------------------------------------------------------------------------- 1 | 20 -------------------------------------------------------------------------------- /Bot/Info/link.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/name.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/outro video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/part.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Bot/Info/password.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/transition video.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/user agent.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/username.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Bot/Info/vid_no.txt: -------------------------------------------------------------------------------- 1 | 1 -------------------------------------------------------------------------------- /Bot/Reddit/temp.txt: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /LICENCE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/LICENCE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Youtube Reddit Bot GUI 2 | 3 | 4 | -------------------------------------------------------------------------------- /Youtube Reddit Bot.vbs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/Youtube Reddit Bot.vbs -------------------------------------------------------------------------------- /con_gui.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/con_gui.py -------------------------------------------------------------------------------- /icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/icon.ico -------------------------------------------------------------------------------- /main_gui.pyw: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/main_gui.pyw -------------------------------------------------------------------------------- /requirements.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/requirements.bat -------------------------------------------------------------------------------- /requirements.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/TheLowSpecPC/YoutubeRedditBot-GUI/HEAD/requirements.sh --------------------------------------------------------------------------------