Skip to content
/ Gander Public

Gander is a web app for deciding what movies to watch with only a limited time

Notifications You must be signed in to change notification settings

eesayas/Gander

Repository files navigation

Gitpod Ready-to-Code

Gander

Gander is a web app for deciding what movies to watch with only a limited time

Website Link

Gander won second place in CMPUT401 Winter 2020 Hackathon!

Read more in this article by Cybera

Accessing admin dashboard

  1. Go to '/admin' route
  2. Enter the following credentials...
Username: johndoe
Password: password

OR

Create a superuser

python3 manage.py createsuperuser

Netfix Data: netflix_titles.csv

Entering data from netflix_titles.csv

  1. Make a model in './webapp/models.py'
# This is a Movie object that will be stored in the DB
class Movie(models.Model):
    movie_id = models.CharField(max_length=100)
    name = models.CharField(max_length=100)
    duration = models.IntegerField()
    cover_photo = models.CharField(max_length=10000, default='https://www.voiceofsandiego.org/wp-content/uploads/2013/08/film081513.jpg')

    def __str__(self):
        return self.name
  1. Add config to './webapp/apps.py'
class WebappConfig(AppConfig):
    name = 'webapp'
  1. Add config to './project/settings.py'
INSTALLED_APPS = [
    'django.contrib.admin',
    'django.contrib.auth',
    'django.contrib.contenttypes',
    'django.contrib.sessions',
    'django.contrib.messages',
    'django.contrib.staticfiles',
    'webapp.apps.WebappConfig'          #added config
]
  1. Go to './webapp/admin.py' to register model
from django.contrib import admin
from .models import Movie

# Register your models here.
admin.site.register(Movie)
  1. Make migrations
python3 manage.py makemigrations
python3 manage.py migrate
  1. Enter python shell
python3 manage.py shell
  1. in Python Shell enter the following...
>>> from webapp.models import Movie
>>> import csv

>>> with open('netflix_titles.csv') as csvfile: 
...:     reader = csv.DictReader(csvfile) 
...:     for row in reader: 
...:         if row['type'] == 'Movie': 
...:             p = Movie(movie_id=row['show_id'],name=row['title'],duration=int(row['duration'].split()[0])) 
...:             p.save() 
...: 
>>> exit()

NOTE: You have to wait until ... does not show up anymore before you exit(). Because it will take time to load/read the data into the DB. Another indicator might be a '.journal' file in the root dir. When '.journal' is present and changing, loading/reading is happening. After '.journal' becomes missing and no longer present, the loading/reading is done.

  1. Runserver again
python3 manage.py runserver
  1. Check '/admin' if imported .csv data is present

Webscraping netflix page for movie pictures

NOTE: You may need to install some packages before starting console/shell

pip3 install requests
pip3 install lxml

In python console/shell:

from webapp.models import Movie
import requests
from lxml import html

data = Movie.objects.all()
for m in data:
    try:
        page_url = 'https://www.netflix.com/title/' + m.movie_id
        page = requests.get(page_url)
        tree = html.fromstring(page.content)
        image = tree.xpath("//*[contains(@class, 'hero-image-mobile')]/@style")
        photo_url = image[0].split('"')[1].split('"')[0]
        m.cover_photo=photo_url
        m.save()
        print(photo_url)
    except Exception as e:
        print(e)
        pass 

About

Gander is a web app for deciding what movies to watch with only a limited time

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published