├── .gitignore ├── 1.jpeg ├── 2.jpeg ├── 3.jpeg ├── 4.jpeg ├── Episodes ├── __init__.py ├── settings.py ├── urls.py └── wsgi.py ├── LICENSE ├── README.md ├── manage.py ├── requirements.txt └── tvshow ├── __init__.py ├── admin.py ├── apps.py ├── migrations ├── 0001_initial.py ├── 0002_remove_episode_siterating.py ├── 0003_auto_20160727_1900.py ├── 0004_auto_20160727_1904.py ├── 0005_auto_20160729_2027.py ├── 0006_auto_20160729_2051.py ├── 0007_auto_20160811_0911.py ├── 0008_show_last_updated.py ├── 0009_auto_20160823_2136.py └── __init__.py ├── models.py ├── templates └── tvshow │ ├── add_search.html │ ├── header.html │ ├── home.html │ ├── recommended.html │ ├── search_page.html │ ├── single.html │ └── single_season_modal_snippet.html ├── tests.py ├── urls.py ├── utils ├── __init__.py ├── cts.py ├── data.csv ├── dataset_builder.py ├── extra_train_data.csv ├── recommender.py └── tvdb_api_wrap.py └── views.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/.gitignore -------------------------------------------------------------------------------- /1.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/1.jpeg -------------------------------------------------------------------------------- /2.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/2.jpeg -------------------------------------------------------------------------------- /3.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/3.jpeg -------------------------------------------------------------------------------- /4.jpeg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/4.jpeg -------------------------------------------------------------------------------- /Episodes/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /Episodes/settings.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/Episodes/settings.py -------------------------------------------------------------------------------- /Episodes/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/Episodes/urls.py -------------------------------------------------------------------------------- /Episodes/wsgi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/Episodes/wsgi.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/README.md -------------------------------------------------------------------------------- /manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/manage.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/requirements.txt -------------------------------------------------------------------------------- /tvshow/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tvshow/admin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/admin.py -------------------------------------------------------------------------------- /tvshow/apps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/apps.py -------------------------------------------------------------------------------- /tvshow/migrations/0001_initial.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0001_initial.py -------------------------------------------------------------------------------- /tvshow/migrations/0002_remove_episode_siterating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0002_remove_episode_siterating.py -------------------------------------------------------------------------------- /tvshow/migrations/0003_auto_20160727_1900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0003_auto_20160727_1900.py -------------------------------------------------------------------------------- /tvshow/migrations/0004_auto_20160727_1904.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0004_auto_20160727_1904.py -------------------------------------------------------------------------------- /tvshow/migrations/0005_auto_20160729_2027.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0005_auto_20160729_2027.py -------------------------------------------------------------------------------- /tvshow/migrations/0006_auto_20160729_2051.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0006_auto_20160729_2051.py -------------------------------------------------------------------------------- /tvshow/migrations/0007_auto_20160811_0911.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0007_auto_20160811_0911.py -------------------------------------------------------------------------------- /tvshow/migrations/0008_show_last_updated.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0008_show_last_updated.py -------------------------------------------------------------------------------- /tvshow/migrations/0009_auto_20160823_2136.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/migrations/0009_auto_20160823_2136.py -------------------------------------------------------------------------------- /tvshow/migrations/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tvshow/models.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/models.py -------------------------------------------------------------------------------- /tvshow/templates/tvshow/add_search.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/add_search.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/header.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/header.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/home.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/home.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/recommended.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/recommended.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/search_page.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/search_page.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/single.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/single.html -------------------------------------------------------------------------------- /tvshow/templates/tvshow/single_season_modal_snippet.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/templates/tvshow/single_season_modal_snippet.html -------------------------------------------------------------------------------- /tvshow/tests.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/tests.py -------------------------------------------------------------------------------- /tvshow/urls.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/urls.py -------------------------------------------------------------------------------- /tvshow/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /tvshow/utils/cts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/cts.py -------------------------------------------------------------------------------- /tvshow/utils/data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/data.csv -------------------------------------------------------------------------------- /tvshow/utils/dataset_builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/dataset_builder.py -------------------------------------------------------------------------------- /tvshow/utils/extra_train_data.csv: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/extra_train_data.csv -------------------------------------------------------------------------------- /tvshow/utils/recommender.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/recommender.py -------------------------------------------------------------------------------- /tvshow/utils/tvdb_api_wrap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/utils/tvdb_api_wrap.py -------------------------------------------------------------------------------- /tvshow/views.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/guptachetan1997/Episodes/HEAD/tvshow/views.py --------------------------------------------------------------------------------