One Paragraph of project description goes here
These instructions will get you a copy of the project up and running on your local machine for development and testing purposes. See deployment for notes on how to deploy the project on a live system.
| #! /bin/bash | |
| # ECHO COMMAND | |
| # echo Hello World! | |
| # VARIABLES | |
| # Uppercase by convention | |
| # Letters, numbers, underscores | |
| NAME="Bob" | |
| # echo "My name is $NAME" |
| import pandas as pd | |
| dataset_path_movies = '/movies.list.gz' | |
| dataset_path_keywords = '/keywords.list.gz' | |
| dataset_path_genres = '/genres.list.gz' | |
| dataset_path_ratings = '/ratings.list.gz' | |
| print("Opening Keyword File.") | |
| cols_keywords = ['movie', 'keyword'] |
These rules are adopted from the AngularJS commit conventions.
| import json | |
| from django.contrib.auth.decorators import login_required | |
| from django.http import HttpResponse | |
| from django.utils.decorators import method_decorator | |
| class LoginRequiredMixin(object): | |
| @method_decorator(login_required) | |
| def dispatch(self, request, *args, **kwargs): |
| CCA2 | Name | CCA3 | Nationality | |
|---|---|---|---|---|
| AD | Andorra | AND | Andorran | |
| AE | United Arab Emirates | ARE | Emirati | |
| AF | Afghanistan | AFG | Afghan | |
| AG | Antigua and Barbuda | ATG | Antiguan, Barbudan | |
| AI | Anguilla | AIA | Anguillian | |
| AL | Albania | ALB | Albanian | |
| AM | Armenia | ARM | Armenian | |
| AN | Netherlands Antilles | ANT | Dutch | |
| AO | Angola | AGO | Angolan |