Show HN: I made a CLI to retrieve info from the IMDB
1–10 of 42 posts
Re: Show HN: I made a CLI to retrieve info from the IMDB
#2Re: Show HN: I made a CLI to retrieve info from the IMDB
#3Pulling down URLs to images would be a really cool and useful addition. Good work though, looks great - will probably end up using this at some point.
Re: Show HN: I made a CLI to retrieve info from the IMDB
#4EDIT: Just realised you aren't actually screen scraping IMDB but using OMDB API (http://www.omdbapi.com) instead, I'll have to check that out.
Re: Show HN: I made a CLI to retrieve info from the IMDB
#5What I had learned was that full text search on IMDb is of very poor quality and returns all sorts of crap; I ended up searching on Google to get the imdbId, and return to IMDb with that Id to get movie data.
Re: Show HN: I made a CLI to retrieve info from the IMDB
#6IMDB itself don't provide a (free) API and webscraping is explicitly forbidden in their TOS[3], so don't start building a service around that;)
[1] http://imdbpy.sourceforge.net/ [2] http://www.imdb.com/interfaces [3] http://www.imdb.com/help/show_article?conditions
(edit: forgot a link)
Re: Show HN: I made a CLI to retrieve info from the IMDB
#7Anyways looking forward to use this tool!
Re: Show HN: I made a CLI to retrieve info from the IMDB
#8Keep in mind OmdbApi states that it uses all other resources except IMDB to compile its data, so you may not find some movies/information only found in IMDB.
Regardless, thank you open sourcing your work.
Re: Show HN: I made a CLI to retrieve info from the IMDB
#9Nice work. I see IMDB still don't have an API. I wrote a little movie comparison web app in the past and had to resort to screen scraping IMDB too. Rotten Tomatoes on the other hand seems to embrace developers a lot more and has an excellent API. EDIT: Just realised you aren't actually screen scraping IMDB but using OMDB API ( http://www.omdbapi.com ) instead, I'll have to check that out.