Metadata-Version: 2.1
Name: JustWatch
Version: 0.5.1
Summary: A simple api for justwatch.com
Home-page: https://github.com/dawoudt/JustWatchAPI
Author: Dawoud Tabboush
Author-email: dtabboush@gmail.com
License: MIT
Keywords: movies tv api
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Requires-Dist: requests (>=2.0)

# JustWatchAPI

JustWatch.com Python 3 API

How To 
----------------------------------------------------------
search for an item
----------------------------------------------------------
from justwatchapi import JustWatch

just_watch = JustWatch()

results = just_watch.search_for_item(query='the matrix')
----------------------------------------------------------
or search for combination of genres
----------------------------------------------------------
just_watch = JustWatch(genres=['act', 'scf', 'hrr'])

results_by_genres = just_watch.search_for_item()
----------------------------------------------------------
or maybe search by provider
----------------------------------------------------------
just_watch = JustWatch()

results_by_providers = just_watch.search_for_item(providers=['nfx', 'stn'])
----------------------------------------------------------
or possibly a combination of the above 
----------------------------------------------------------
just_watch = JustWatch()

results_by_multiple = just_watch.search_for_item(
    providers=['nfx', 'stn'], 
    content_types=['movie'], 
    monetization_types=['free'])
----------------------------------------------------------
Read api_payload.txt for more information

