Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/housamz/movie-info-finder
This tool finds all important info about a movie from three sources, IMDB, Meta Critic, and Rotten Tomatoes, and generate a JSON object with the data.
https://github.com/housamz/movie-info-finder
beautifulsoup4 hacktoberfest hacktoberfest2020 imdb metacritic movie-reviews movies movies-api python rottentomatoes
Last synced: about 1 month ago
JSON representation
This tool finds all important info about a movie from three sources, IMDB, Meta Critic, and Rotten Tomatoes, and generate a JSON object with the data.
- Host: GitHub
- URL: https://github.com/housamz/movie-info-finder
- Owner: housamz
- License: gpl-3.0
- Created: 2019-01-09T01:22:02.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2024-05-31T13:42:26.000Z (7 months ago)
- Last Synced: 2024-05-31T15:02:59.839Z (7 months ago)
- Topics: beautifulsoup4, hacktoberfest, hacktoberfest2020, imdb, metacritic, movie-reviews, movies, movies-api, python, rottentomatoes
- Language: Python
- Homepage: http://www.hmz.ie/movie-info-finder/
- Size: 37.1 KB
- Stars: 4
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Find Complete Movie Info
This tool finds all important info about a movie from three sources, IMDB, Meta Critic, and Rotten Tomatoes, and generate a JSON object with the data.The interface uses Python Flask, and the data fetching depends on Python 2.7 libraries; these libraries need to be installed for the code to work.
This code uses the following libraries:
- beautifulsoup4
- Flask
- lxml
- requests## How to install:
Run `pip install -r requirements.txt`## How to use
- Run the app using `python app.py`
- Go to your browser, navigate to `http://127.0.0.1:5000/` (usually).
- Enter the movie link from IMDB, e.g. `https://www.imdb.com/title/tt0076759`
- Click the triangular button.
- Wait for a few seconds for the result JSON Object.