Show HN: I made a CLI to retrieve info from the IMDB
11–20 of 42 posts
Re: Show HN: I made a CLI to retrieve info from the IMDB
#12Interesting, but you are not the pulling information from Imdb, according to the source code it is using omdbapi.com an independent site which used to be imdbapi.com until amazon issued them a C&D. Keep 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
#13Nice 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.
On CPAN there is WebService::IMDB module which uses this mobile API. Also there is IMBDB::File but (i believe) this works by web scraping IMDb website.
cpan links:
Re: Show HN: I made a CLI to retrieve info from the IMDB
#14nobody cares asshole
There's no need to be crabby.
Re: Show HN: I made a CLI to retrieve info from the IMDB
#15Re: Show HN: I made a CLI to retrieve info from the IMDB
#16- Embrace PEP8 (http://www.python.org/dev/peps/pep-0008/). It'll help other developers work with your code.
- argparse.ArgumentParser has a parse_args method, so you don't have to mess around with sys.argv
Re: Show HN: I made a CLI to retrieve info from the IMDB
#17Nice work. Just a couple of Python tips in case you wanted them. - Embrace PEP8 ( http://www.python.org/dev/peps/pep-0008/ ). It'll help other developers work with your code. - argparse.ArgumentParser has a parse_args method, so you don't have to mess around with sys.argv
Re: Show HN: I made a CLI to retrieve info from the IMDB
#18Re: Show HN: I made a CLI to retrieve info from the IMDB
#19Very interesting. we've been using TMDB.org for our site filmquotra.com but are not tied to it. how do you distinguish yourself from tmdb?
> how do you distinguish yourself from tmdb
This is a command-line program for accessing movie information (via someone else's web API), not movie database system. Asking how he/she distinguishes his/herself from TheMovieDB, is... a little odd. It would be like asking XBMC how they distinguish themselves from IMDB.Re: Show HN: I made a CLI to retrieve info from the IMDB
#20Very interesting. we've been using TMDB.org for our site filmquotra.com but are not tied to it. how do you distinguish yourself from tmdb?
> how do you distinguish yourself from tmdb This is a command-line program for accessing movie information (via someone else's web API), not movie database system. Asking how he/she distinguishes his/herself from TheMovieDB, is... a little odd. It would be like asking XBMC how they distinguish themselves from IMDB.