All Projects → maddox → Imdb Party

maddox / Imdb Party

Licence: mit
IMDB client using the IMDB API that their iPhone app uses

Programming Languages

ruby
36898 projects - #4 most used programming language

Labels

Projects that are alternatives of or similar to Imdb Party

auto-movie-tagger
A Python script that auto tags and adds poster to mkv or mp4 movie files.
Stars: ✭ 49 (-57.39%)
Mutual labels:  movie, imdb
Iwatched
Track movies or tv shows you watched.
Stars: ✭ 64 (-44.35%)
Mutual labels:  movie, imdb
Gmdb
GMDB is the ultra-simple, cross-platform Movie Library with Features (Search, Take Note, Watch Later, Like, Import, Learn, Instantly Torrent Magnet Watch)
Stars: ✭ 189 (+64.35%)
Mutual labels:  movie, imdb
doubanIMDb
IMDb + Rotten Tomatoes + Wikipedia on Douban Movie
Stars: ✭ 93 (-19.13%)
Mutual labels:  movie, imdb
IMDb-Rating-Lookup
A python script that lets you check the IMDb rating, genre, cast etc of a movie with one click, without opening the browser.
Stars: ✭ 16 (-86.09%)
Mutual labels:  movie, imdb
Awesome It Films
📺 A curated list of awesome films about IT & geek people.
Stars: ✭ 722 (+527.83%)
Mutual labels:  movie, imdb
react-movie
🎬 Modern fast movie database web app with React using The Movie DB API.
Stars: ✭ 45 (-60.87%)
Mutual labels:  movie, imdb
Imdbpy
IMDbPY is a Python package useful to retrieve and manage the data of the IMDb movie database about movies, people, characters and companies
Stars: ✭ 792 (+588.7%)
Mutual labels:  movie, imdb
Deep Atrous Cnn Sentiment
Deep-Atrous-CNN-Text-Network: End-to-end word level model for sentiment analysis and other text classifications
Stars: ✭ 64 (-44.35%)
Mutual labels:  imdb
Userscripts
Userscripts for Greasemonkey, Tampermonkey etc.
Stars: ✭ 78 (-32.17%)
Mutual labels:  imdb
Imdbtr
IMDb on terminal.
Stars: ✭ 63 (-45.22%)
Mutual labels:  imdb
Oblecto
Oblecto is a media server, which streams media you already own, and is designed to be at the heart of your entertainment experience. It runs on your home server to index and analyze your media such as Movies and TV Shows and presents them in an interface tailored for your media consupmtion needs.
Stars: ✭ 67 (-41.74%)
Mutual labels:  movie
Booking Seats Layout Sample
A sample that shows how to create a dynamic layout for booking seats
Stars: ✭ 79 (-31.3%)
Mutual labels:  movie
Subloader
Subloader is a simple and minimalistic subtitle downloader that enables you to quickly find and download subtitles for your video files.
Stars: ✭ 53 (-53.91%)
Mutual labels:  movie
Scenescoop
A tool to describe the content of videos and suggest similar scenes in other videos/films.
Stars: ✭ 103 (-10.43%)
Mutual labels:  movie
Moviebookingui Android
This is a concept of fetching a user's cinema show details like venue, movie, date & showtime before allowing him to place a cinema F&B order.
Stars: ✭ 62 (-46.09%)
Mutual labels:  movie
Jupytergraffiti
Create interactive screencasts inside Jupyter Notebook that anybody can play back
Stars: ✭ 114 (-0.87%)
Mutual labels:  movie
Movie android flutter
A sample movie app, developed on flutter, then on android
Stars: ✭ 90 (-21.74%)
Mutual labels:  movie
Bandersnatch
Black Mirror: Bandersnatch, HTML5 interactive version
Stars: ✭ 74 (-35.65%)
Mutual labels:  movie
Timelapsebuilder Swift
Build a movie from jpeg images in Swift using AVFoundation
Stars: ✭ 72 (-37.39%)
Mutual labels:  movie

ImdbParty!

How To Use

Create an instance

imdb = ImdbParty::Imdb.new
imdb = ImdbParty::Imdb.new(:anonymize => true) # this will anonymize your requests to prevent getting your ip banned

Search for a movie by title

imdb.find_by_title("The Dark Knight") => [{:title => "The Dark Knight", :year => "2008", :imdb_id => "tt0468569"}, {:title => "Batman Unmasked", ...}]

Get a movie by its imdb_id

movie = imdb.find_movie_by_id("tt0468569")

movie.title => "The Dark Knight"
movie.rating => 8.1
movie.certification => "PG-13"

Get a movie trailer poster

movie = imdb.find_movie_by_id("tt1210166")

movie.trailer_url => "http://ia.media-imdb.com/images/M/[email protected]@._V1_.jpg"

Find the top 250 movies of all time

imdb.top_250 => [{:title => "Shawshank Redemption", :year => "1994", :imdb_id => "tt0111161"}, {:title => "The Godfather", ...}]

Get the currently popular tv shows

imdb.popular_shows => [{:title => "Glee", :year => "2009", :imdb_id => "tt1327801"}, {:title => "Dexter", ...}]

Running the tests

Install dependencies

gem install jeweler
gem install shoulda
gem install httparty

Run the tests

rake test
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].