A Django web application to upload, analyse, store and remove your Youtube data. Take your data from https://takeout.google.com/. And authentication system with e-mail confirmation.
See the example: Video Preview
Additional information on https://www.python.org/downloads/
$ mkdir myproject && cd myproject
$ git clone https://github.com/MagicTearsAsunder/YouTube_Analyzer.git
$ cd TODO
$ pip install -r requirements.txt
In shindeiru/settings.py add your Google account credentials to EMAIL_HOST_USER and EMAIL_HOST_PASSWORD. If you don't have Google account - create it. Alternitavely, you can use other SMTP host.
Instructions, how to set Django SMTP described
here.
EMAIL_HOST = 'smtp.gmail.com'
EMAIL_PORT = 587
# TODO:
EMAIL_HOST_USER = ""
# TODO:
EMAIL_HOST_PASSWORD = ""
EMAIL_USE_TLS = True
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
docker-compose up







