├── .gitignore ├── LICENSE ├── Procfile ├── README.md ├── downloader ├── __init__.py ├── admin.py ├── apps.py ├── forms.py ├── migrations │ └── __init__.py ├── models.py ├── tests.py ├── urls.py └── views.py ├── manage.py ├── requirements.txt ├── runtime.txt ├── sc1.png ├── static_files ├── css │ ├── fonts │ │ ├── CircularStd-Black.eot │ │ ├── CircularStd-Black.otf │ │ ├── CircularStd-Black.svg │ │ ├── CircularStd-Black.ttf │ │ ├── CircularStd-Black.woff │ │ ├── CircularStd-Black.woff2 │ │ ├── CircularStd-BlackItalic.eot │ │ ├── CircularStd-BlackItalic.otf │ │ ├── CircularStd-BlackItalic.svg │ │ ├── CircularStd-BlackItalic.ttf │ │ ├── CircularStd-BlackItalic.woff │ │ ├── CircularStd-BlackItalic.woff2 │ │ ├── CircularStd-Bold.eot │ │ ├── CircularStd-Bold.otf │ │ ├── CircularStd-Bold.svg │ │ ├── CircularStd-Bold.ttf │ │ ├── CircularStd-Bold.woff │ │ ├── CircularStd-Bold.woff2 │ │ ├── CircularStd-BoldItalic.eot │ │ ├── CircularStd-BoldItalic.otf │ │ ├── CircularStd-BoldItalic.svg │ │ ├── CircularStd-BoldItalic.ttf │ │ ├── CircularStd-BoldItalic.woff │ │ ├── CircularStd-BoldItalic.woff2 │ │ ├── CircularStd-Book.eot │ │ ├── CircularStd-Book.otf │ │ ├── CircularStd-Book.svg │ │ ├── CircularStd-Book.ttf │ │ ├── CircularStd-Book.woff │ │ ├── CircularStd-Book.woff2 │ │ ├── CircularStd-BookItalic.eot │ │ ├── CircularStd-BookItalic.otf │ │ ├── CircularStd-BookItalic.svg │ │ ├── CircularStd-BookItalic.ttf │ │ ├── CircularStd-BookItalic.woff │ │ ├── CircularStd-BookItalic.woff2 │ │ ├── CircularStd-Medium.eot │ │ ├── CircularStd-Medium.otf │ │ ├── CircularStd-Medium.svg │ │ ├── CircularStd-Medium.ttf │ │ ├── CircularStd-Medium.woff │ │ ├── CircularStd-Medium.woff2 │ │ ├── CircularStd-MediumItalic.eot │ │ ├── CircularStd-MediumItalic.otf │ │ ├── CircularStd-MediumItalic.svg │ │ ├── CircularStd-MediumItalic.ttf │ │ ├── CircularStd-MediumItalic.woff │ │ ├── CircularStd-MediumItalic.woff2 │ │ ├── Gotham-Black.woff │ │ ├── Gotham-Bold.woff │ │ ├── Gotham-BookItalic.woff │ │ ├── Gotham-Light.woff │ │ ├── Gotham-Thin.woff │ │ ├── Gotham-ThinItalic.woff │ │ ├── Gotham-UltraItalic.woff │ │ ├── Gotham-XLight.woff │ │ ├── Gotham-XLightItalic.woff │ │ ├── GothamBold.woff │ │ ├── GothamBoldItalic.woff │ │ ├── GothamBook.woff │ │ ├── GothamBookItalic.woff │ │ ├── GothamLight.woff │ │ ├── GothamLightItalic.woff │ │ ├── GothamMedium.woff │ │ ├── GothamMediumItalic.woff │ │ ├── GothamMedium_1.woff │ │ └── example.html │ └── main.css ├── img │ └── background.svg └── js │ ├── bootstrap.js │ ├── main.js │ └── popper.js ├── templates ├── base.html └── home.html └── youtubedownloader ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn youtubedownloader.wsgi --log-file - -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/README.md -------------------------------------------------------------------------------- /downloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloader/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/admin.py -------------------------------------------------------------------------------- /downloader/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/apps.py -------------------------------------------------------------------------------- /downloader/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/forms.py -------------------------------------------------------------------------------- /downloader/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloader/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/models.py -------------------------------------------------------------------------------- /downloader/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/tests.py -------------------------------------------------------------------------------- /downloader/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/urls.py -------------------------------------------------------------------------------- /downloader/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/downloader/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.7.10 -------------------------------------------------------------------------------- /sc1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/sc1.png -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-Black.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-Bold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-BookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-BookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-Light.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-Thin.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-ThinItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-UltraItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-UltraItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-XLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-XLight.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-XLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/Gotham-XLightItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamBold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamBoldItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBook.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamBook.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamBookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamLight.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamLightItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamMedium.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamMediumItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMedium_1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/GothamMedium_1.woff -------------------------------------------------------------------------------- /static_files/css/fonts/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/fonts/example.html -------------------------------------------------------------------------------- /static_files/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/css/main.css -------------------------------------------------------------------------------- /static_files/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/img/background.svg -------------------------------------------------------------------------------- /static_files/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/js/bootstrap.js -------------------------------------------------------------------------------- /static_files/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_files/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/static_files/js/popper.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/templates/home.html -------------------------------------------------------------------------------- /youtubedownloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /youtubedownloader/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/youtubedownloader/asgi.py -------------------------------------------------------------------------------- /youtubedownloader/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/youtubedownloader/settings.py -------------------------------------------------------------------------------- /youtubedownloader/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/youtubedownloader/urls.py -------------------------------------------------------------------------------- /youtubedownloader/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/saadhaxxan/Youtube-Video-Downloader/HEAD/youtubedownloader/wsgi.py --------------------------------------------------------------------------------