Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jakobzmrzlikar/movierecommender
A movie search and recommendation web app based on Django.
https://github.com/jakobzmrzlikar/movierecommender
collaborative-filtering django movie-recommendation python
Last synced: 9 days ago
JSON representation
A movie search and recommendation web app based on Django.
- Host: GitHub
- URL: https://github.com/jakobzmrzlikar/movierecommender
- Owner: jakobzmrzlikar
- License: gpl-3.0
- Created: 2021-04-08T08:36:51.000Z (over 3 years ago)
- Default Branch: main
- Last Pushed: 2021-05-25T18:35:35.000Z (over 3 years ago)
- Last Synced: 2023-03-04T13:14:51.681Z (over 1 year ago)
- Topics: collaborative-filtering, django, movie-recommendation, python
- Language: Python
- Homepage:
- Size: 120 MB
- Stars: 0
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# MovieRecommender
A (very simple) movie search and recommendation web app based on Django.
## Usage
Before starting the appliaction, you have to install all dependencies.
For installing them in a seperate virtual enviornment (strongly recommended), run the code below:```
python -m virtualenv
source /bin/activate
pip install -r requirements.txt
```After installing all required dependencies, simply navigate to the project directory and run the Django server:
```
cd movie_recommender/
python manage.py runserver
```## Online demo
An online demo version running on [Binder](https://mybinder.org/) is also available [here](https://mybinder.org/v2/gh/jakobzmrzlikar/MovieRecommender/main?urlpath=proxy/8000/).