|
Installation
Checkout the application and add it to your settings.py file Eg INSTALLED_APPS = ( 'django.contrib.auth', 'django.contrib.contenttypes', 'django.contrib.sessions', 'django.contrib.sites', 'django.contrib.admin', 'django.contrib.flatpages', 'django_youtube_syncronizer', ) #BR para portugues, EN para inglês ;) YOUTUBE_SYNC_LANG = 'EN' Then, synchronize the database with the command python manage.py syncdb After Django has created the tables in the database, you need to enter the admin and sign a new channel, which in turn will have all the videos and their descriptions saved in the bank. Remembering that you can add as many channels you want. The program will synchronize all, one at a time. To synchronize just run the command: python manage.py youtube_sync |