We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
This issue aims to create a deployment of the system in Render to be accessed via web.
Render
python -m venv venv
pip freeze > requirements.txt
In order to access the system, you can use the folowing link address:
https://moviesrecomendation.onrender.com
The endopoint availables are:
/cantidad_filmaciones_mes/{month}
/cantidad_filmaciones_dia{day}
/score_titulo/{title}
/votos_titulo/{title}
/get_actor/{actor}
/get_director/{director}
/recomendacion/{title}
https://moviesrecomendation.onrender.com/get_actor/tom hank
The text was updated successfully, but these errors were encountered:
feat(#4): add deployment requirements file
944eae5
refact(#4): refact requirements lib version
6a8ae09
fedepacher
No branches or pull requests
Description
This issue aims to create a deployment of the system in
Render
to be accessed via web.Task
Render
. To do so, use this tutorial.Deployment access
In order to access the system, you can use the folowing link address:
The endopoint availables are:
/cantidad_filmaciones_mes/{month}
: Get the amount of movies released in the requested month./cantidad_filmaciones_dia{day}
: Get the amount of movies released in the requested day./score_titulo/{title}
: Get the released year and the score of the requested title./votos_titulo/{title}
: Get the released year, vote count and vote average of the requested title./get_actor/{actor}
: Get the amount of movies starred by the actor, the return of the movies and average return of the movie./get_director/{director}
: Get a list of movies of the director, the return, the budget and the revenues of each movie as a list./recomendacion/{title}
: Get the top 5 movies recommended based on overviews, gendre and score of movies.Access endpoind example
The text was updated successfully, but these errors were encountered: