Netflix Roulette Api
This is a simple python wrapper for the Netflix Roulette API.
Installation
- I am also looking for Netflix API where I can get list of movies/Series and its related information. Any help will be appreciated. – Beena Gupta May 12 at 10:00.
- Netflix Roulette is designed to be in constant communication with NFLX Crawler so that all newly added programming is incorporated into the roulette experience. It’s currently available as an.
- Netflix Roulette is an app that helps users find something to watch. The app works by letting users determine if they are in the mood for a TV show, movie or both. Users of the app can then choose.
Take a Spin With Netflix Roulette. Developer Andrew Sampson created the API-driven website to help you find new movies and shows based on your own criteria. You can filter by genre, rating.
Pip
pip install netflix_roulette
From Source
git clone git@github.com:tizz98/netflix_roulette.git
cd netflix_roulette
python setup.py install
Usage
Simple Query
Query with year
class NetflixMedia
Parameters
Netflix Roulette Api Game
title
: Title of the media you are searching for.year
: (Optional) Year of the media you are searching for.
Attributes
title
: User supplied title of the media you are searching for.year
: User supplied year of the media you are searching for.rating
: How high the media is rated, max is 5.poster
: The poster for the media, right from the Netflix CDN.mediatype
: 0 means movie, 1 means TV Show. See alsoget_readable_mediatype()
.release_year
: The media's release date.show_cast
: The cast of a given title.category
: A title's given category.summary
: A plot summary.director
: The name(s) of the director(s) of a given title.show_id
: The Netflix id of the title.is_on_netflix
: A boolean, whether or not the show is on Netflix.
Methods
get_readable_mediatype()
: ReturnsTV Show
orMovie
instead of1
or0
.is_movie()
: ReturnsTrue
if the media is a Movie.is_tv_show()
: ReturnsTrue
if the media is a TV Show.
Netflix Roulette Api Play
class NetflixDirector
Parameters
name
: Name of the director you are searching for.
Attributes
name
: User supplied name.media
: List ofNetflixMedia
that the person has directed.
class NetflixActor
Parameters
name
: Name of the actor you are searching for.
Netflix Roulette Api
Attributes
Netflix Roulette Api
name
: User supplied name.media
: List ofNetflixMedia
that the person has been in.