├── .DS_Store ├── .github └── ISSUE_TEMPLATE │ ├── bug_report.md │ └── feature_request.md ├── BotTuber.png ├── CODE_OF_CONDUCT.md ├── Credits ├── Google.py ├── LICENSE ├── README.md ├── botTuber.py ├── config.py ├── instaloader_test.py ├── instalooter_test.py ├── intro.mp4 ├── make_compilation.py ├── outro.mp4 ├── requirements.txt ├── scrape_videos.py ├── setup_google.py └── upload_ytvid.py /.DS_Store: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/.DS_Store -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/bug_report.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/.github/ISSUE_TEMPLATE/bug_report.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /BotTuber.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/BotTuber.png -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Credits: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/Credits -------------------------------------------------------------------------------- /Google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/Google.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/README.md -------------------------------------------------------------------------------- /botTuber.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/botTuber.py -------------------------------------------------------------------------------- /config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/config.py -------------------------------------------------------------------------------- /instaloader_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/instaloader_test.py -------------------------------------------------------------------------------- /instalooter_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/instalooter_test.py -------------------------------------------------------------------------------- /intro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/intro.mp4 -------------------------------------------------------------------------------- /make_compilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/make_compilation.py -------------------------------------------------------------------------------- /outro.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/outro.mp4 -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/requirements.txt -------------------------------------------------------------------------------- /scrape_videos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/scrape_videos.py -------------------------------------------------------------------------------- /setup_google.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/setup_google.py -------------------------------------------------------------------------------- /upload_ytvid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/sam5epi0l/BotTuber/HEAD/upload_ytvid.py --------------------------------------------------------------------------------