Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jmoussa/movie-scraper
Scrape theater, movie and time from IMDB using python BeautifulSoup4 library
https://github.com/jmoussa/movie-scraper
beautifulsoup beautifulsoup4 endpoint imdb json movie python rest-api scraper
Last synced: 12 days ago
JSON representation
Scrape theater, movie and time from IMDB using python BeautifulSoup4 library
- Host: GitHub
- URL: https://github.com/jmoussa/movie-scraper
- Owner: jmoussa
- Created: 2018-11-17T16:12:47.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2018-11-18T03:57:19.000Z (about 6 years ago)
- Last Synced: 2024-11-19T12:14:30.215Z (2 months ago)
- Topics: beautifulsoup, beautifulsoup4, endpoint, imdb, json, movie, python, rest-api, scraper
- Language: Python
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python Web Scraper
Currently scrapes through imdb for nearby theaters and returns a json array of Theatre -> Movie & Showtimes### JSON Structure
```
[
{
"movies": [
{
"movie": "A Private War (2018)",
"times": [
"12:45 pm",
"3:30",
"6:15",
"9:00"
]
},
{
"movie": "A Star Is Born (2018)",
"times": [
"1:45 pm",
"4:55"
]
},
],
"theatre": "AMC Loews New Brunswick 18"
}
]
```### To Start
```
$ python scraping_imdb.py
```
Navigate to: localhost:5000/getMovies