You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Is it possible to search for specific movie or TV titles based off exact matches of the text that you provide? So far my testing on just_watch.search_for_item withquery and original_title it always seems to return all results that match any of the words, for example:
from justwatch import JustWatch
just_watch = JustWatch(country='US')
results = just_watch.search_for_item(
query = "Ant-Man and the Wasp",
original_title="Ant-Man and the Wasp",
content_types=['movie'],
monetization_types=["flatrate","free","ads"])
print(results.items())
Is it possible to search for specific movie or TV titles based off exact matches of the text that you provide? So far my testing on just_watch.search_for_item withquery and original_title it always seems to return all results that match any of the words, for example:
dict_items([('page', 0), ('total_results', 2629), ('total_pages', 0), ('items',
The text was updated successfully, but these errors were encountered: