├── .gitignore ├── ParseInput.py ├── README.md ├── content └── .keep ├── demo └── Landing_page.png ├── env.yml ├── not_downloaded └── .gitkeep ├── static 2 └── YTDL7.png ├── templates ├── index.html ├── success.html └── waiting.html └── yt-interval.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/.gitignore -------------------------------------------------------------------------------- /ParseInput.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/ParseInput.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/README.md -------------------------------------------------------------------------------- /content/.keep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo/Landing_page.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/demo/Landing_page.png -------------------------------------------------------------------------------- /env.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/env.yml -------------------------------------------------------------------------------- /not_downloaded/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static 2/YTDL7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/static 2/YTDL7.png -------------------------------------------------------------------------------- /templates/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/templates/index.html -------------------------------------------------------------------------------- /templates/success.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/templates/success.html -------------------------------------------------------------------------------- /templates/waiting.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/templates/waiting.html -------------------------------------------------------------------------------- /yt-interval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/DinRigtigeFar/yt-interval/HEAD/yt-interval.py --------------------------------------------------------------------------------