Video Demo: https://youtu.be/VEcQriEV2k4
This app will allow one to:
- Search the OMDB database for a movie(s)
- Add movie(s) to list
- View list of movies I've seen
- Python version Python 3.9.5
- Django version 3.2.9
git clonethe repository,cdinto the folder, and open in your favorite IDE.- It's never a bad idea to work in a virtual environment. Run
python3 -m venv envto set one up. - Run
source env/bin/activateto activate the virtual environment. - Run
pip install -r requirements.txtto install the dependencies (in your activated virtual environment) - To run this app, locally, run
python manage.py runserverand navigate tolocalhost:8000
- Pagination
- Search db prior to making api call (so as not to hit API)
- Write some tests (pytest)