Netflix Roulette Api
If you feel like you've already seen all the good stuff (and all of the slightly above mediocre stuff), you might want to try Netflix Roulette. Developer Andrew Sampson created the API-driven. 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. The Netflix Roulette API is a rest API. The Netflix Roulette API endpoint is located at You can find the Netflix Roulette API portal / hompage here. For more information, check out their API Documentation.
Released:
The official python wrapper for the Netflix Roulette Web API
Project description
This is the official Python Wrapper for Netflix Roulette; an Unofficial Netflix API
all the API information can be found at the following link
Release historyRelease notifications RSS feed
Netflix Roulette Api
5.0
3.0
2.0
1.0
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Filename, size | File type | Python version | Upload date | Hashes |
---|---|---|---|---|
Filename, size NetflixRouletteAPI-5.0.zip (3.4 kB) | File type Source | Python version None | Upload date | Hashes |
Hashes for NetflixRouletteAPI-5.0.zip
Algorithm | Hash digest |
---|---|
SHA256 | bcb5167e92d250ff9a470424a282a6303c0df83b3566195dd86f6fee743d0931 |
MD5 | 997a5f90ff173be77a5b788cbfe40be3 |
BLAKE2-256 | 988d624be0d005fbc46aa9de713a5863d4c55aa8f561bd94d7e695f95273eedf |
This is a simple python wrapper for the Netflix Roulette API.
Installation
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
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.
Netflix Roulette Api Download
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.
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.
Attributes
Netflix Roulette Api Software
name
: User supplied name.media
: List ofNetflixMedia
that the person has been in.