├── .gitignore ├── .htaccess ├── Procfile ├── README.md ├── downloader ├── __init__.py ├── admin.py ├── apps.py ├── functions.py ├── migrations │ └── __init__.py ├── models.py ├── templates │ └── downloader │ │ ├── download.html │ │ └── home.html ├── tests.py ├── urls.py └── views.py ├── manage.py ├── passenger_wsgi.py ├── requirements.txt └── tiktok ├── .env ├── __init__.py ├── asgi.py ├── settings.py ├── urls.py └── wsgi.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/.gitignore -------------------------------------------------------------------------------- /.htaccess: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/.htaccess -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | web: gunicorn tiktok.wsgi 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/README.md -------------------------------------------------------------------------------- /downloader/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloader/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/admin.py -------------------------------------------------------------------------------- /downloader/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/apps.py -------------------------------------------------------------------------------- /downloader/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/functions.py -------------------------------------------------------------------------------- /downloader/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /downloader/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/models.py -------------------------------------------------------------------------------- /downloader/templates/downloader/download.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/templates/downloader/download.html -------------------------------------------------------------------------------- /downloader/templates/downloader/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/templates/downloader/home.html -------------------------------------------------------------------------------- /downloader/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/tests.py -------------------------------------------------------------------------------- /downloader/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/urls.py -------------------------------------------------------------------------------- /downloader/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/downloader/views.py -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/manage.py -------------------------------------------------------------------------------- /passenger_wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/passenger_wsgi.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/requirements.txt -------------------------------------------------------------------------------- /tiktok/.env: -------------------------------------------------------------------------------- 1 | SECRET_KEY=gf!g+aw66@(m3+x!5$rkpukncx7m!h0*gm0x%+5@4#c1=o!9)t 2 | -------------------------------------------------------------------------------- /tiktok/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tiktok/asgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/tiktok/asgi.py -------------------------------------------------------------------------------- /tiktok/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/tiktok/settings.py -------------------------------------------------------------------------------- /tiktok/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/tiktok/urls.py -------------------------------------------------------------------------------- /tiktok/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/FarjaalAhmad/django_tiktok_downloader/HEAD/tiktok/wsgi.py --------------------------------------------------------------------------------