├── .github └── workflows │ ├── django.yml │ └── jekyll.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── Procfile ├── Readme.md ├── db.sqlite3 ├── demo.png ├── djangoProject ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py ├── docker-compose.yml ├── manage.py ├── requirements.txt ├── 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 ├── static_serve └── static_root │ ├── css │ └── main.css │ └── js │ ├── bootstrap.js │ ├── main.js │ └── popper.js ├── templates ├── base.html ├── home.html └── home2.html └── ytdl ├── __init__.py ├── __pycache__ ├── __init__.cpython-38.pyc ├── admin.cpython-38.pyc ├── forms.cpython-38.pyc ├── models.cpython-38.pyc └── views.cpython-38.pyc ├── admin.py ├── apps.py ├── forms.py ├── migrations ├── __init__.py └── __pycache__ │ └── __init__.cpython-38.pyc ├── models.py ├── tests.py └── views.py /.github/workflows/django.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/.github/workflows/django.yml -------------------------------------------------------------------------------- /.github/workflows/jekyll.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/.github/workflows/jekyll.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn djangoProject.wsgi --log-file - -------------------------------------------------------------------------------- /Readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/Readme.md -------------------------------------------------------------------------------- /db.sqlite3: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /demo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/demo.png -------------------------------------------------------------------------------- /djangoProject/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /djangoProject/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/djangoProject/asgi.py -------------------------------------------------------------------------------- /djangoProject/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/djangoProject/settings.py -------------------------------------------------------------------------------- /djangoProject/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/djangoProject/urls.py -------------------------------------------------------------------------------- /djangoProject/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/djangoProject/wsgi.py -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Black.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Black.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BlackItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BlackItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Bold.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Bold.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BoldItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BoldItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Book.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Book.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-BookItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-BookItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-Medium.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-Medium.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.eot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.eot -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.otf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.otf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.svg -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.ttf -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/CircularStd-MediumItalic.woff2: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/CircularStd-MediumItalic.woff2 -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Black.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-Black.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Bold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-Bold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-BookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-BookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Light.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-Light.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-Thin.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-Thin.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-ThinItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-ThinItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-UltraItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-UltraItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-XLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-XLight.woff -------------------------------------------------------------------------------- /static_files/css/fonts/Gotham-XLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/Gotham-XLightItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBold.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamBold.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBoldItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamBoldItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBook.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamBook.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamBookItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamBookItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamLight.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamLight.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamLightItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamLightItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMedium.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamMedium.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMediumItalic.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamMediumItalic.woff -------------------------------------------------------------------------------- /static_files/css/fonts/GothamMedium_1.woff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/GothamMedium_1.woff -------------------------------------------------------------------------------- /static_files/css/fonts/example.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/fonts/example.html -------------------------------------------------------------------------------- /static_files/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/css/main.css -------------------------------------------------------------------------------- /static_files/img/background.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/img/background.svg -------------------------------------------------------------------------------- /static_files/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/js/bootstrap.js -------------------------------------------------------------------------------- /static_files/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_files/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_files/js/popper.js -------------------------------------------------------------------------------- /static_serve/static_root/css/main.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_serve/static_root/css/main.css -------------------------------------------------------------------------------- /static_serve/static_root/js/bootstrap.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_serve/static_root/js/bootstrap.js -------------------------------------------------------------------------------- /static_serve/static_root/js/main.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /static_serve/static_root/js/popper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/static_serve/static_root/js/popper.js -------------------------------------------------------------------------------- /templates/base.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/templates/base.html -------------------------------------------------------------------------------- /templates/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/templates/home.html -------------------------------------------------------------------------------- /templates/home2.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/templates/home2.html -------------------------------------------------------------------------------- /ytdl/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ytdl/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/__pycache__/admin.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/__pycache__/admin.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/__pycache__/forms.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/__pycache__/forms.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/__pycache__/models.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/__pycache__/models.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/__pycache__/views.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/__pycache__/views.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/admin.py -------------------------------------------------------------------------------- /ytdl/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/apps.py -------------------------------------------------------------------------------- /ytdl/forms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/forms.py -------------------------------------------------------------------------------- /ytdl/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /ytdl/migrations/__pycache__/__init__.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/migrations/__pycache__/__init__.cpython-38.pyc -------------------------------------------------------------------------------- /ytdl/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/models.py -------------------------------------------------------------------------------- /ytdl/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/tests.py -------------------------------------------------------------------------------- /ytdl/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ranahaani/YouTube-Downloader/HEAD/ytdl/views.py --------------------------------------------------------------------------------