├── LICENSE ├── YouTubeDownloader ├── forms.py ├── settings.py ├── urls.py ├── views.py └── wsgi.py ├── db.sqlite3 ├── manage.py ├── readme.md ├── requirements.txt ├── static_files ├── css │ ├── bootstrap.css │ └── main.css ├── img │ ├── logo.png │ └── youtube.png └── js │ ├── app.js │ └── particles.min.js ├── templates ├── base.html └── home.html └── vercel.json /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/LICENSE -------------------------------------------------------------------------------- /YouTubeDownloader/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/YouTubeDownloader/forms.py -------------------------------------------------------------------------------- /YouTubeDownloader/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/YouTubeDownloader/settings.py -------------------------------------------------------------------------------- /YouTubeDownloader/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/YouTubeDownloader/urls.py -------------------------------------------------------------------------------- /YouTubeDownloader/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/YouTubeDownloader/views.py -------------------------------------------------------------------------------- /YouTubeDownloader/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/YouTubeDownloader/wsgi.py -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/db.sqlite3 -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/manage.py -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/readme.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /static_files/css/bootstrap.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/css/bootstrap.css -------------------------------------------------------------------------------- /static_files/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/css/main.css -------------------------------------------------------------------------------- /static_files/img/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/img/logo.png -------------------------------------------------------------------------------- /static_files/img/youtube.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/img/youtube.png -------------------------------------------------------------------------------- /static_files/js/app.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/js/app.js -------------------------------------------------------------------------------- /static_files/js/particles.min.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/static_files/js/particles.min.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/templates/home.html -------------------------------------------------------------------------------- /vercel.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/hi-im-gabriel/django-ytdownloader/HEAD/vercel.json --------------------------------------------------------------------------------