2017 © Pedro Peláez
 

library netflix-roulette

A wrapper for the Netflix Roulette API

image

gdetassigny/netflix-roulette

A wrapper for the Netflix Roulette API

  • Tuesday, August 1, 2017
  • by gdetassigny
  • Repository
  • 0 Watchers
  • 0 Stars
  • 3 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 0 Forks
  • 0 Open issues
  • 2 Versions
  • 0 % Grown

The README.md

netflix-roulette

Please Note!!

Netflix roulette API is now down, therefore this package won't work anymore!, (*1)

Build Status, (*2)

Coverage Status, (*3)

This is an unofficial PHP wrapper for the Netflix Roulette API., (*4)

Installation

You can install this wrapper by using composer., (*5)

Simply type :, (*6)

composer require gdetassigny/netflix-roulette

Usage

The API should allow you to retrieve movies and tv shows for given parameters. (e.g. retrieve all netflix movies starring Brad Pitt)., (*7)

Here is an example of how you could use this wrapper :, (*8)


use GabrielDeTassigny\NetflixRoulette\Client; $client = Client::getInstance(); $show = $client->findOne(['title' => 'Breaking Bad']); var_dump($show->getSummary()); // "Emmy winner Bryan Cranston stars as Walter White, a high school science teacher who learns..." $showList = $client->findMany(['actor' => 'Edward Norton']); foreach ($showList as $show) { var_dump($show->getTitle()); } // "The Italian Job" // "The Score" // "Strange Days on Planet Earth" // "Primal Fear" // "Rounders" // "Frida"

You can see more example of parameters in the API documentation., (*9)

To see what information you can retrieve for movies / shows, have a look at the interface., (*10)

The Versions

01/08 2017

dev-master

9999999-dev

A wrapper for the Netflix Roulette API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Gabriel de Tassigny

netflix netflix-roulette

31/07 2017

1.0.0

1.0.0.0

A wrapper for the Netflix Roulette API

  Sources   Download

MIT

The Requires

 

The Development Requires

by Gabriel de Tassigny

netflix netflix-roulette