pyflix2

Python module for accessing Netflix REST webservice, both V1 and V2
Download

pyflix2 Ranking & Summary

Advertisement

  • Rating:
  • License:
  • BSD License
  • Price:
  • FREE
  • Publisher Name:
  • Arup Malakar
  • Publisher web site:
  • http://pyflix2.readthedocs.org/

pyflix2 Tags


pyflix2 Description

pyflix2 is a Python module for accessing netflix API (both v1 and v2) Netflix provides REST interfaces to access it's catalog and various user data. This module exposes easy to use object oriented interfaces that is inteded to make it even easier for python programmers to use.InstallInstalling requests is simple with pip:pip install pyflix2or, with easy_install:easy_install pyflix2Examplefrom pyflix2 import *netflix = NetflixAPIV2( 'appname', 'key', 'shared_secret')movies = netflix.title_autocomplete('Terminator', filter='instant')for title in movies: print titleuser = netflix.get_user('access_token', 'access_token_secret')reco = user.get_reccomendations()for movie in reco: print movieNote- Here appname, key and shared_secret needs to be obtained from: http://developer.netflix.com/apps/mykeys.- The access_token, access_token_secret needs to be obtained programmatically using get_request_token and get_access_tokenCommandline python -mpyflix2 -s 'the matrix' -xOr see help: python -mpyflix2 -hProduct's homepage


pyflix2 Related Software