Recently the Streaming market has seen a sudden, stark increase in competition. New companies seem to be entering the market every day, challenging the current champion, Netflix. Each company has its own advantages and disadvantages, and for the purpose of this project, I am going to focus on two companies in particular: Netflix and Disney. Disney recnetly launched their own streaming platfomr Disney+. I am curious to see how a entertainment conglomerate such as Disney's content compares with that of the newer Netflix.
Specifically, I want to use the IMDB api available at http://www.omdbapi.com/, to compare these two companies average ratings for their projects. I want to seee how well movies these companies have produced has been recieved over time. Other questions include: does netflix thrive in producing well liked content in any specic Genre? How can netflix compete with the giant that is disney - are there any niches in which it can try to thrive? Does netflix utilize its ability to produce adult content to develop a competative advantage against disney's family friendly content?
Ultimatly, I hope to guide the reader of my tutorial through each step of my analysis. I would also like to reveal any insights within the data that may suggest one streaming service will be more liked by viewers other in the long term, although there are obvioulsy several exterior factors to this.
My first step for this project is to create a histogram for the mean IMDB scores for either companies streaming service. Disney+ specific shows have been announced at (https://www.theverge.com/2019/10/14/20913417/disney-plus-launch-lineup-marvel-star-wars-pixar-tv-shows-movies-simpsons-national-geographic), and netflix has a wikipedia page about its orignal movie and TV productions. Movies are here ((https://en.wikipedia.org/wiki/List_of_original_films_distributed_by_Netflix)) and Tv shows are https://en.wikipedia.org/wiki/List_of_original_programs_distributed_by_Netflix
One last note here is that there are several exterior legal and technical distinctions between what one company actually "owns" in comparison to another. Licensing & distribution deals make this even more complicated and nuanced. For the purpose of this tutorial, I am going to try to analyze just the original content that is present on either platform because I believe that original content will be a key factor in deciding which companies will win the streaming wars - as original content is the one prodcut that cannot be taken away, and serves to create a competative advantage between companies. But for now, let's get started!
Make sure before attempting this that you have install html5lib and lxml. you should also go to (http://www.omdbapi.com/apikey.aspx) and generate an API key. Each API key only gets 1000 (free) requests to the database per day, so you may need to replace the API key paramater with you own API key in various URLs throughout this project. (make sure you remember to activate your key, as the instrutions on the omdb website indicate)
you also need to make sure you have decent internet connection - poor connection may result in a pull failing wiht a timeout.
To collect ratings from Netflix, we are going to grab title names from the Wikipedia page of Netflix Origninal films (https://en.wikipedia.org/wiki/List_of_original_films_distributed_by_Netflix), Convert them into the appropratie URLs for OMDB, and then grab the necessary infomration out of the JSON unit that OMDB will return to us. We will then do the same for TV shows.
The First step, grabbing titles from wikipedia, is seen below
# Step 0: necessary imports
import urllib.request
import bs4 as bs
import pandas as pd
import numpy as np
import requests
import xml.etree.ElementTree as ET
from io import StringIO
import html5lib
#Step 1: Pull page of original Netlix movies from wikipedia
netflix_list = "https://en.wikipedia.org/wiki/List_of_original_films_distributed_by_Netflix"
request_netflix = requests.get(netflix_list)
source_netflix = urllib.request.urlopen(netflix_list).read()
soup = bs.BeautifulSoup(source_netflix, 'html.parser')
#Step 2: isolate the tables from this page
table = soup.find_all('table')
#step 3: remove additional excess information
table = table[:-22]
#step 4: create df to store netflix original movies
netflix_films_df = pd.DataFrame()
#step 5: iterate over every table, parse its html, and add each table as a DF to the netflix films df
for table in table:
pd_table = pd.read_html(table.prettify(), header = 0)
temp_df = pd_table[0]
netflix_films_df = netflix_films_df.append(temp_df, sort=False)
#we want to see all titles, so
pd.set_option('display.max_rows', 1000) #we want to see a lot of entries
#step 6: drop any duplicate wikipedia entries
netflix_films_df = netflix_films_df.drop_duplicates(subset="Title", keep='first')
#step7: drop any that have yet to be released (TBA only. we don't remove NaNs, because some of the wikipedia entries simply don't have premiere info)
netflix_films_df = netflix_films_df[netflix_films_df['Premiere'] != "TBA"]
#step 8: display df
netflix_films_df
Title | Genre | Premiere | Length | Language | Netflix exclusive region | Runtime | Languages | |
---|---|---|---|---|---|---|---|---|
0 | Beasts of No Nation | War / drama | October 16, 2015 | 2 hours, 16 min. | English/Twi | NaN | NaN | NaN |
1 | Crouching Tiger, Hidden Dragon: Sword of Destiny | Action | February 26, 2016 | 1 hour, 43 min. | English | NaN | NaN | NaN |
2 | The Fundamentals of Caring | Comedy-drama | June 24, 2016 | 1 hour, 37 min. | English | NaN | NaN | NaN |
3 | Rebirth | Thriller | July 15, 2016 | 1 hour, 40 min. | English | NaN | NaN | NaN |
4 | Tallulah | Comedy-drama | July 29, 2016 | 1 hour, 51 min. | English | NaN | NaN | NaN |
5 | XOXO | Drama | August 26, 2016 | 1 hour, 32 min. | English | NaN | NaN | NaN |
6 | ARQ | Science fiction / Thriller | September 16, 2016 | 1 hour, 28 min. | English | NaN | NaN | NaN |
7 | The Siege of Jadotville | War film | October 7, 2016 | 1 hour, 48 min. | English | NaN | NaN | NaN |
8 | I Am the Pretty Thing That Lives in the House | Horror | October 28, 2016 | 1 hour, 29 min. | English | NaN | NaN | NaN |
9 | 7 años | Drama | October 28, 2016 | 1 hour, 16 min. | Spanish | NaN | NaN | NaN |
10 | Mercy | Thriller | November 22, 2016 | 1 hour, 30 min. | English | NaN | NaN | NaN |
11 | Spectral | Science fiction / Action | December 9, 2016 | 1 hour, 48 min. | English | NaN | NaN | NaN |
12 | Barry | Biopic | December 16, 2016 | 1 hour, 44 min. | English | NaN | NaN | NaN |
0 | Coin Heist | Heist film | January 6, 2017 | 1 hour, 37 min. | English | NaN | NaN | NaN |
1 | Clinical | Thriller | January 13, 2017 | 1 hour, 44 min. | English | NaN | NaN | NaN |
2 | iBoy | Science fiction / Thriller | January 27, 2017 | 1 hour, 30 min. | English | NaN | NaN | NaN |
3 | Imperial Dreams | Drama | February 3, 2017 | 1 hour, 27 min. | English | NaN | NaN | NaN |
4 | I Don't Feel at Home in This World Anymore | Drama | February 24, 2017 | 1 hour, 36 min. | English | NaN | NaN | NaN |
5 | Burning Sands | Drama | March 10, 2017 | 1 hour, 42 min. | English | NaN | NaN | NaN |
6 | Deidra & Laney Rob a Train | Drama | March 17, 2017 | 1 hour, 34 min. | English | NaN | NaN | NaN |
7 | The Most Hated Woman in America | Biopic | March 24, 2017 | 1 hour, 32 min. | English | NaN | NaN | NaN |
8 | The Discovery | Science fiction / Drama | March 31, 2017 | 1 hour, 42 min. | English | NaN | NaN | NaN |
9 | Sand Castle | War film | April 21, 2017 | 1 hour, 53 min. | English | NaN | NaN | NaN |
10 | Tramps | Romance | April 21, 2017 | 1 hour, 23 min. | English | NaN | NaN | NaN |
11 | Blame! | Anime / Science fiction | May 20, 2017 | 1 hour, 46 min. | Japanese | NaN | NaN | NaN |
12 | Shimmer Lake | Crime thriller | June 9, 2017 | 1 hour, 26 min. | English | NaN | NaN | NaN |
13 | Okja | Science fiction / Adventure | June 28, 2017 | 2 hours, 1 min. | English/Korean | NaN | NaN | NaN |
14 | To the Bone | Drama | July 14, 2017 | 1 hour, 47 min. | English | NaN | NaN | NaN |
15 | Death Note | Horror thriller | August 25, 2017 | 1 hour, 40 min. | English | NaN | NaN | NaN |
16 | First They Killed My Father | Drama | September 15, 2017 | 2 hours, 16 min. | English/Khmer | NaN | NaN | NaN |
17 | Gerald's Game | Horror thriller | September 29, 2017 | 1 hour, 43 min. | English | NaN | NaN | NaN |
18 | Our Souls at Night | Romance | September 29, 2017 | 1 hour, 43 min. | English | NaN | NaN | NaN |
19 | The Meyerowitz Stories (New and Selected) | Comedy-drama | October 13, 2017 | 1 hour, 52 min. | English | NaN | NaN | NaN |
20 | 1922 | Horror / crime drama | October 20, 2017 | 1 hour, 42 min. | English | NaN | NaN | NaN |
21 | Wheelman | Action thriller | October 20, 2017 | 1 hour, 22 min. | English | NaN | NaN | NaN |
22 | The Killer | Western | November 10, 2017 | 1 hour, 39 min. | Portuguese | NaN | NaN | NaN |
23 | Christmas Inheritance | Romantic drama | December 15, 2017 | 1 hour, 44 min. | English | NaN | NaN | NaN |
24 | Bright | Urban fantasy | December 22, 2017 | 1 hour, 57 min. | English | NaN | NaN | NaN |
0 | The Open House | Horror thriller | January 19, 2018 | 1 hour, 34 min. | English | NaN | NaN | NaN |
1 | The Cloverfield Paradox | Science fiction | February 4, 2018 | 1 hour, 42 min. | English | NaN | NaN | NaN |
2 | Irreplaceable You | Drama | February 16, 2018 | 1 hour, 36 min. | English | NaN | NaN | NaN |
3 | Mute | Science fiction / Mystery | February 23, 2018 | 2 hours, 6 min. | English | NaN | NaN | NaN |
4 | The Outsider | Crime drama | March 9, 2018 | 2 hours | English | NaN | NaN | NaN |
5 | Paradox | Musical / Western / Fantasy | March 23, 2018 | 1 hour, 13 min. | English | NaN | NaN | NaN |
6 | Roxanne Roxanne | Biopic | March 23, 2018 | 1 hour, 38 min. | English | NaN | NaN | NaN |
7 | First Match | Sports - drama | March 30, 2018 | 1 hour, 42 min. | English | NaN | NaN | NaN |
8 | 6 Balloons | Drama | April 6, 2018 | 1 hour, 15 min. | English | NaN | NaN | NaN |
9 | Amateur | Sports - drama | April 6, 2018 | 1 hour, 36 min. | English | NaN | NaN | NaN |
10 | Come Sunday | Biopic | April 13, 2018 | 1 hour, 46 min. | English | NaN | NaN | NaN |
11 | Sometimes | Drama | May 1, 2018 | 1 hour, 41 min. | Tamil | NaN | NaN | NaN |
12 | Forgive Us Our Debts | Drama | May 4, 2018 | 1 hour, 44 min. | Italian | NaN | NaN | NaN |
13 | Cargo | Drama / Horror | May 18, 2018 | 1 hour, 44 min. | English | NaN | NaN | NaN |
14 | Lust Stories | Drama | June 15, 2018 | 2 hours | Hindi | NaN | NaN | NaN |
15 | Calibre | Thriller | June 29, 2018 | 1 hour, 41 min. | English | NaN | NaN | NaN |
16 | TAU | Science fiction thriller | June 29, 2018 | 1 hour, 37 min. | English | NaN | NaN | NaN |
17 | How It Ends | Action thriller | July 13, 2018 | 1 hour, 53 min. | English | NaN | NaN | NaN |
18 | Extinction | Science fiction- thriller | July 27, 2018 | 1 hour, 35 min. | English | NaN | NaN | NaN |
19 | The Most Assassinated Woman in the World | Thriller | September 7, 2018 | 1 hour, 42 min. | French | NaN | NaN | NaN |
20 | Next Gen | Animation / Action / Science fiction | September 7, 2018 | 1 hour, 44 min. | English | NaN | NaN | NaN |
21 | On My Skin | Crime drama | September 12, 2018 | 1 hour, 40 min. | Italian | NaN | NaN | NaN |
22 | The Land of Steady Habits | Drama | September 14, 2018 | 1 hour, 38 min. | English | NaN | NaN | NaN |
23 | The Angel | Spy thriller | September 14, 2018 | 1 hour, 54 min. | English/Arabic/Hebrew | NaN | NaN | NaN |
24 | Hold the Dark | Thriller | September 28, 2018 | 2 hours, 5 min. | English | NaN | NaN | NaN |
25 | Private Life | Drama | October 5, 2018 | 2 hours, 4 min. | English | NaN | NaN | NaN |
26 | 22 July | Drama | October 10, 2018 | 2 hours, 24 min. | English | NaN | NaN | NaN |
27 | Apostle | Horror - thriller | October 12, 2018 | 2 hours, 9 min. | English | NaN | NaN | NaN |
28 | The Night Comes for Us | Action - thriller | October 19, 2018 | 2 hours, 1 min. | Indonesian | NaN | NaN | NaN |
29 | Been So Long | Musical | October 26, 2018 | 1 hour, 40 min. | English | NaN | NaN | NaN |
30 | The Other Side of the Wind | Drama | November 2, 2018 | 2 hours, 2 min. | English | NaN | NaN | NaN |
31 | Outlaw King | Historical - epic | November 9, 2018 | 2 hours, 1 min. | English | NaN | NaN | NaN |
32 | Cam | Psychological horror | November 16, 2018 | 1 hour, 34 min. | English | NaN | NaN | NaN |
33 | The Ballad of Buster Scruggs | Western | November 16, 2018 | 2 hours, 12 min. | English | NaN | NaN | NaN |
34 | Mowgli: Legend of the Jungle | Adventure | December 7, 2018 | 1 hour, 44 min. | English | NaN | NaN | NaN |
35 | Roma | Drama | December 14, 2018 | 2 hours, 15 min. | Spanish | NaN | NaN | NaN |
36 | Bird Box | Psychological thriller | December 21, 2018 | 2 hours, 4 min. | English | NaN | NaN | NaN |
0 | IO | Science fiction / drama | January 18, 2019 | 1 hour, 35 min. | English | NaN | NaN | NaN |
1 | Soni | Crime drama | January 18, 2019 | 1 hour, 37 min. | Hindi | NaN | NaN | NaN |
2 | Polar | Thriller | January 25, 2019 | 1 hour, 58 min. | English | NaN | NaN | NaN |
3 | Velvet Buzzsaw | Thriller | February 1, 2019 | 1 hour, 52 min. | English | NaN | NaN | NaN |
4 | High Flying Bird | Sports - drama | February 8, 2019 | 1 hour, 30 min. | English | NaN | NaN | NaN |
5 | Firebrand | Drama | February 22, 2019 | 1 hour, 52 min. | Marathi | NaN | NaN | NaN |
6 | Paris Is Us | Romance drama | February 22, 2019 | 1 hour, 23 min. | French | NaN | NaN | NaN |
7 | Paddleton | Drama - Comedy | February 22, 2019 | 1 hour, 29 min. | English | NaN | NaN | NaN |
8 | Walk. Ride. Rodeo. | Drama | March 8, 2019 | 1 hour, 39 min. | English | NaN | NaN | NaN |
9 | Juanita | Drama | March 8, 2019 | 1 hour, 30 min. | English | NaN | NaN | NaN |
10 | Triple Frontier | Action - thriller | March 13, 2019 | 2 hours, 5 min. | English | NaN | NaN | NaN |
11 | The Dirt | Biopic | March 22, 2019 | 1 hour, 48 min. | English | NaN | NaN | NaN |
12 | The Highwaymen | Crime drama | March 29, 2019 | 2 hours, 11 min. | English | NaN | NaN | NaN |
13 | Who Would You Take to a Deserted Island? | Drama | April 12, 2019 | 1 hour, 33 min. | Spanish | NaN | NaN | NaN |
14 | Music Teacher | Drama | April 19, 2019 | 1 hour, 41 min. | Hindi | NaN | NaN | NaN |
15 | Good Sam | Drama | May 16, 2019 | 1 hour, 29 min. | English | NaN | NaN | NaN |
16 | See You Yesterday | Science fiction | May 17, 2019 | 1 hour, 27 min. | English | NaN | NaN | NaN |
17 | Rim of the World | Science fiction adventure | May 24, 2019 | 1 hour, 38 min. | English | NaN | NaN | NaN |
18 | The Perfection | Horror - thriller | May 24, 2019 | 1 hour, 30 min. | English | NaN | NaN | NaN |
19 | Elisa & Marcela | Romance | June 7, 2019 | 1 hour, 58 min. | Spanish | NaN | NaN | NaN |
20 | Beats | Drama | June 19, 2019 | 1 hour, 50 min. | English | NaN | NaN | NaN |
21 | Point Blank | Action | July 12, 2019 | 1 hour, 26 min. | English | NaN | NaN | NaN |
22 | Secret Obsession | Thriller | July 18, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
23 | The Red Sea Diving Resort | Spy thriller | July 31, 2019 | 2 hours, 10 min. | English | NaN | NaN | NaN |
24 | In the Shadow of the Moon | Thriller | September 27, 2019 | 1 hour, 55 min. | English | NaN | NaN | NaN |
25 | In the Tall Grass | Horror | October 4, 2019 | 1 hour, 41 min. | English | NaN | NaN | NaN |
26 | El Camino: A Breaking Bad Movie | Crime drama | October 11, 2019 | 2 hours, 2 min. | English | NaN | NaN | NaN |
27 | Fractured | Thriller | October 11, 2019 | 1 hour, 40 min. | English | NaN | NaN | NaN |
28 | The Forest of Love | Drama | October 11, 2019 | 2 hours, 31 min. | Japanese | NaN | NaN | NaN |
29 | Street Flow | Drama | October 12, 2019 | 1 hour, 36 min. | French | NaN | NaN | NaN |
30 | Eli | Horror | October 18, 2019 | 1 hour, 38 min. | English | NaN | NaN | NaN |
31 | Seventeen | Coming-of-age comedy-drama | October 18, 2019 | 1 hour, 39 min. | Spanish | NaN | NaN | NaN |
32 | The Laundromat | Comedy-drama | October 18, 2019 | 1 hour, 38 min. | English | NaN | NaN | NaN |
33 | Upstarts | Drama | October 18, 2019 | 1 hour, 52 min. | Hindi | NaN | NaN | NaN |
34 | Dolemite Is My Name | Biopic | October 25, 2019 | 1 hour, 58 min. | English | NaN | NaN | NaN |
35 | Rattlesnake | Horror | October 25, 2019 | 1 hour, 25 min. | English | NaN | NaN | NaN |
36 | The King | Historical drama | November 1, 2019 | 2 hours, 20 min. | English | NaN | NaN | NaN |
37 | American Son | Drama | November 1, 2019 | 1 hour, 30 min. | English | NaN | NaN | NaN |
38 | Drive | Action | November 1, 2019 | 2 hours, 27 min. | Hindi | NaN | NaN | NaN |
39 | The Man Without Gravity | Drama | November 1, 2019 | 1 hour, 47 min. | Italian | NaN | NaN | NaN |
40 | Earthquake Bird | Mystery | November 15, 2019 | 1 hours, 47 min. | English | NaN | NaN | NaN |
41 | The Irishman | Crime drama | November 27, 2019 | 3 hours, 29 min. | English | NaN | NaN | NaN |
42 | Dead Kids | Thriller | December 1, 2019 | 1 hour, 34 min. | Filipino | NaN | NaN | NaN |
43 | Marriage Story | Comedy-drama | December 6, 2019 | 2 hours, 16 min. | English | NaN | NaN | NaN |
44 | Upcoming | Upcoming | Upcoming | Upcoming | Upcoming | NaN | NaN | NaN |
45 | 6 Underground | Action | December 13, 2019 [1] | 2 hours, 7 min. | English | NaN | NaN | NaN |
46 | The Two Popes | Drama | December 20, 2019 [2] | 2 hours, 5 min. | English | NaN | NaN | NaN |
47 | The App [3] | Science fiction / drama | December 26, 2019 | 1 hour, 19 min. | Italian | NaN | NaN | NaN |
1 | Ghost Stories [4] | Horror anthology | January 1, 2020 [5] | 2 hours, 24 min. | Hindi | NaN | NaN | NaN |
2 | A Fall from Grace [6] | Thriller | January 17, 2020 | 2 hours | English | NaN | NaN | NaN |
3 | The Paramedic [7] | Psychological thriller | July 1, 2020 [8] | TBA | Spanish | NaN | NaN | NaN |
0 | The Ridiculous 6 | Western | December 11, 2015 | 1 hour, 59 min. | English | NaN | NaN | NaN |
1 | Pee-wee's Big Holiday | Adventure | March 18, 2016 | 1 hour, 29 min. | English | NaN | NaN | NaN |
2 | Special Correspondents | Satire | April 29, 2016 | 1 hour, 40 min. | English | NaN | NaN | NaN |
3 | The Do-Over | Action comedy | May 27, 2016 | 1 hour, 48 min. | English | NaN | NaN | NaN |
4 | Brahman Naman | Comedy | July 7, 2016 | 1 hour, 35 min. | English | NaN | NaN | NaN |
5 | Mascots | Mockumentary | October 13, 2016 | 1 hour, 35 min. | English | NaN | NaN | NaN |
6 | True Memoirs of an International Assassin | Action comedy | November 11, 2016 | 1 hour, 38 min. | English | NaN | NaN | NaN |
0 | Take the 10 | Comedy | January 20, 2017 | 1 hour, 20 min. | English | NaN | NaN | NaN |
1 | Girlfriend's Day | Comedy | February 14, 2017 | 1 hour, 10 min. | English | NaN | NaN | NaN |
2 | Win It All | Comedy | April 7, 2017 | 1 hour, 28 min. | English | NaN | NaN | NaN |
3 | Sandy Wexler | Comedy | April 14, 2017 | 2 hours, 11 min. | English | NaN | NaN | NaN |
4 | Small Crimes | Dark comedy | April 28, 2017 | 1 hour, 35 min. | English | NaN | NaN | NaN |
5 | Handsome: A Netflix Mystery Movie | Comedy | May 5, 2017 | 1 hour, 21 min. | English | NaN | NaN | NaN |
6 | War Machine | War - Comedy | May 26, 2017 | 2 hours, 2 min. | English | NaN | NaN | NaN |
7 | The Incredible Jessica James | Comedy | July 28, 2017 | 1 hour, 23 min. | English | NaN | NaN | NaN |
8 | Naked | Comedy | August 11, 2017 | 1 hour, 36 min. | English | NaN | NaN | NaN |
9 | Little Evil | Horror-comedy | September 1, 2017 | 1 hour, 34 min. | English | NaN | NaN | NaN |
10 | #REALITYHIGH | Comedy | September 8, 2017 | 1 hour, 39 min. | English | NaN | NaN | NaN |
11 | Bomb Scared | Black comedy | October 12, 2017 | 1 hour, 29 min. | Spanish | NaN | NaN | NaN |
12 | The Babysitter | Teen horror-comedy | October 13, 2017 | 1 hour, 25 min. | English | NaN | NaN | NaN |
13 | A Christmas Prince | Romantic comedy | November 17, 2017 | 1 hour, 32 min. | English | NaN | NaN | NaN |
14 | El Camino Christmas | Dark comedy | December 8, 2017 | 1 hour, 29 min. | English | NaN | NaN | NaN |
0 | The Polka King | Comedy-drama | January 12, 2018 | 1 hour, 35 min. | English | NaN | NaN | NaN |
1 | Step Sisters | Comedy | January 19, 2018 | 1 hour, 48 min. | English | NaN | NaN | NaN |
2 | Blockbuster | Romantic comedy | January 24, 2018 | 1 hour, 25 min. | French | NaN | NaN | NaN |
3 | A Futile and Stupid Gesture | Biographical / Comedy | January 26, 2018 | 1 hour, 41 min. | English | NaN | NaN | NaN |
4 | When We First Met | Romantic comedy | February 9, 2018 | 1 hour, 37 min. | English | NaN | NaN | NaN |
5 | Love per Square Foot | Romantic comedy | February 14, 2018 | 2 hours, 13 min. | Hindi | NaN | NaN | NaN |
6 | Benji | Family film | March 16, 2018 | 1 hour, 27 min. | English | NaN | NaN | NaN |
7 | Game Over, Man! | Action / Comedy | March 23, 2018 | 1 hour, 41 min. | English | NaN | NaN | NaN |
8 | Happy Anniversary | Romantic comedy | March 30, 2018 | 1 hour, 18 min. | English | NaN | NaN | NaN |
9 | I Am Not an Easy Man | Romantic comedy | April 13, 2018 | 1 hour, 38 min. | French | NaN | NaN | NaN |
10 | Dude | Teen comedy-drama | April 20, 2018 | 1 hour, 37 min. | English | NaN | NaN | NaN |
11 | Candy Jar | Comedy | April 27, 2018 | 1 hour, 32 min. | English | NaN | NaN | NaN |
12 | The Week Of | Comedy | April 27, 2018 | 1 hour, 56 min. | English | NaN | NaN | NaN |
13 | The Kissing Booth | Romantic comedy | May 11, 2018 | 1 hour, 45 min. | English | NaN | NaN | NaN |
14 | Ibiza | Comedy | May 25, 2018 | 1 hour, 34 min. | English | NaN | NaN | NaN |
15 | Alex Strangelove | Romantic comedy | June 8, 2018 | 1 hour, 39 min. | English | NaN | NaN | NaN |
16 | Set It Up | Romantic comedy | June 15, 2018 | 1 hour, 45 min. | English | NaN | NaN | NaN |
17 | To Each, Her Own | Romantic comedy | June 24, 2018 | 1 hour, 35 min. | French | NaN | NaN | NaN |
18 | The Legacy of a Whitetail Deer Hunter | Adventure / Comedy | July 6, 2018 | 1 hour, 23 min. | English | NaN | NaN | NaN |
19 | Father of the Year | Comedy | July 20, 2018 | 1 hour, 34 min. | English | NaN | NaN | NaN |
20 | Brij Mohan Amar Rahe | Comedy | August 3, 2018 | 1 hour, 40 min. | Hindi | NaN | NaN | NaN |
21 | Like Father | Comedy | August 3, 2018 | 1 hour, 43 min. | English | NaN | NaN | NaN |
22 | The Package | Black comedy | August 10, 2018 | 1 hour, 34 min. | English | NaN | NaN | NaN |
23 | To All the Boys I've Loved Before | Romantic comedy | August 17, 2018 | 1 hour, 39 min. | English | NaN | NaN | NaN |
24 | The After Party | Comedy | August 24, 2018 | 1 hour, 29 min. | English | NaN | NaN | NaN |
25 | Sierra Burgess Is a Loser | Romantic comedy-drama | September 7, 2018 | 1 hour, 45 min. | English | NaN | NaN | NaN |
26 | Nappily Ever After | Comedy-drama | September 21, 2018 | 1 hour, 38 min. | English | NaN | NaN | NaN |
27 | The Holiday Calendar | Romantic comedy | November 2, 2018 | 1 hour, 35 min. | English | NaN | NaN | NaN |
28 | The Princess Switch | Romantic comedy | November 16, 2018 | 1 hour, 41 min. | English | NaN | NaN | NaN |
29 | The Christmas Chronicles | Family film | November 22, 2018 | 1 hour, 44 min. | English | NaN | NaN | NaN |
30 | A Christmas Prince: The Royal Wedding | Romantic comedy | November 30, 2018 | 1 hour, 32 min. | English | NaN | NaN | NaN |
31 | Rajma Chawal | Comedy-drama | November 30, 2018 | 1 hour, 58 min. | Hindi | NaN | NaN | NaN |
32 | 5 Star Christmas | Comedy | December 7, 2018 | 1 hour, 35 min. | Italian | NaN | NaN | NaN |
0 | Lionheart | Comedy | January 4, 2019 | 1 hour, 34 min. | Ibo/English | NaN | NaN | NaN |
1 | The Last Laugh | Comedy-drama | January 11, 2019 | 1 hour, 38 min. | English | NaN | NaN | NaN |
2 | 15 August | Comedy-drama | March 29, 2019 | 2 hours, 4 min. | Marathi | NaN | NaN | NaN |
3 | Unicorn Store | Comedy | April 5, 2019 | 1 hour, 32 min. | English | NaN | NaN | NaN |
4 | The Perfect Date | Romantic comedy | April 12, 2019 | 1 hour, 29 min. | English | NaN | NaN | NaN |
5 | Someone Great | Romantic comedy | April 19, 2019 | 1 hour, 32 min. | English | NaN | NaN | NaN |
6 | Despite Everything | Comedy | May 3, 2019 | 1 hour, 18 min. | Spanish | NaN | NaN | NaN |
7 | The Last Summer | Romantic comedy | May 3, 2019 | 1 hour, 49 min. | English | NaN | NaN | NaN |
8 | Wine Country | Comedy | May 10, 2019 | 1 hour, 43 min. | English | NaN | NaN | NaN |
9 | Always Be My Maybe | Romantic comedy | May 31, 2019 | 1 hour, 42 min. | English | NaN | NaN | NaN |
10 | Chopsticks | Comedy | May 31, 2019 | 1 hour, 40 min. | Hindi | NaN | NaN | NaN |
11 | Murder Mystery | Comedy mystery | June 14, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
12 | Otherhood | Comedy | August 2, 2019 | 1 hour, 40 min. | English | NaN | NaN | NaN |
13 | Sextuplets | Comedy | August 16, 2019 | 1 hour, 39 min. | English | NaN | NaN | NaN |
14 | Falling Inn Love | Romantic comedy | August 29, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
15 | Back to School | Comedy | August 30, 2019 | 1 hour, 23 min. | French | NaN | NaN | NaN |
16 | Tall Girl | Comedy-drama | September 13, 2019 | 1 hour, 42 min. | English | NaN | NaN | NaN |
17 | Between Two Ferns: The Movie | Comedy | September 20, 2019 | 1 hour, 22 min. | English | NaN | NaN | NaN |
18 | Holiday in the Wild | Adventure - romance | November 1, 2019 | 1 hour, 25 min. | English | NaN | NaN | NaN |
19 | Let It Snow | Romantic comedy | November 8, 2019 | 1 hour, 32 min. | English | NaN | NaN | NaN |
20 | House Arrest | Comedy | November 15, 2019 | 1 hour, 44 min. | Hindi | NaN | NaN | NaN |
21 | Klaus | Animation / Comedy | November 15, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
22 | The Knight Before Christmas | Romantic comedy | November 21, 2019 | 1 hour, 32 min. | English | NaN | NaN | NaN |
23 | Holiday Rush | Family film | November 28, 2019 | 1 hour, 34 min. | English | NaN | NaN | NaN |
24 | A Christmas Prince: The Royal Baby | Romantic comedy | December 5, 2019 | 1 hour, 25 min. | English | NaN | NaN | NaN |
26 | Como CaÃdo del Cielo | Musical comedy | December 24, 2019 [9] | 1 hour, 52 min. | Spanish | NaN | NaN | NaN |
1 | To All the Boys: P.S. I Still Love You [10] | Romantic comedy | February 12, 2020 [11] | TBA | English | NaN | NaN | NaN |
0 | Art of Conflict: The Murals of Northern Irelan... | NaN | October 12, 2012 | 1 hour, 13 min. | English | NaN | NaN | NaN |
1 | The Short Game | NaN | December 12, 2013 | 1 hour, 39 min. | English | NaN | NaN | NaN |
2 | The Square | NaN | January 17, 2014 | 1 hour, 44 min. | Arabic/English | NaN | NaN | NaN |
3 | Mitt | NaN | January 24, 2014 | 1 hour, 32 min. | English | NaN | NaN | NaN |
4 | The Battered Bastards of Baseball | NaN | July 11, 2014 | 1 hour, 13 min. | English | NaN | NaN | NaN |
5 | Mission Blue | NaN | August 15, 2014 | 1 hour, 35 min. | English | NaN | NaN | NaN |
6 | Print the Legend | NaN | September 26, 2014 | 1 hour, 40 min. | English | NaN | NaN | NaN |
7 | E-Team | NaN | October 24, 2014 | 1 hour, 30 min. | English | NaN | NaN | NaN |
8 | Virunga | NaN | November 7, 2014 | 1 hour, 40 min. | English | NaN | NaN | NaN |
0 | My Own Man | NaN | March 6, 2015 | 1 hour, 21 min. | English | NaN | NaN | NaN |
1 | The Other One: The Long Strange Trip of Bob Weir | NaN | May 22, 2015 | 1 hour, 23 min. | English | NaN | NaN | NaN |
2 | Hot Girls Wanted | NaN | May 29, 2015 | 1 hour, 24 min. | English | NaN | NaN | NaN |
3 | What Happened, Miss Simone? | NaN | June 26, 2015 | 1 hour, 24 min. | English | NaN | NaN | NaN |
4 | Tig | NaN | July 17, 2015 | 1 hour, 20 min. | English | NaN | NaN | NaN |
5 | Keith Richards: Under the Influence | NaN | September 18, 2015 | 1 hour, 21 min. | English | NaN | NaN | NaN |
6 | Winter on Fire: Ukraine's Fight for Freedom | NaN | October 9, 2015 | 1 hour, 31 min. | Ukrainian/Russian/English | NaN | NaN | NaN |
7 | My Beautiful Broken Brain | NaN | March 18, 2016 | 1 hour, 31 min. | English | NaN | NaN | NaN |
8 | Team Foxcatcher | NaN | April 29, 2016 | 1 hour, 30 min. | English/Russian | NaN | NaN | NaN |
9 | Tony Robbins: I Am Not Your Guru | NaN | July 15, 2016 | 1 hour, 56 min. | English | NaN | NaN | NaN |
10 | I'll Sleep When I'm Dead | NaN | August 19, 2016 | 1 hour, 19 min. | English | NaN | NaN | NaN |
11 | Extremis | NaN | September 13, 2016 | 24 min. | English | NaN | NaN | NaN |
12 | The White Helmets | NaN | September 16, 2016 | 40 min. | English | NaN | NaN | NaN |
13 | Audrie & Daisy | NaN | September 23, 2016 | 1 hour, 38 min. | English | NaN | NaN | NaN |
14 | Amanda Knox | NaN | September 30, 2016 | 1 hour, 32 min. | English | NaN | NaN | NaN |
15 | 13th | NaN | October 7, 2016 | 1 hour, 40 min. | English | NaN | NaN | NaN |
16 | Sky Ladder: The Art of Cai Guo-Qiang | NaN | October 14, 2016 | 1 hour, 19 min. | Mandarin/English | NaN | NaN | NaN |
17 | Into the Inferno | NaN | October 28, 2016 | 1 hour, 47 min. | English | NaN | NaN | NaN |
18 | The Ivory Game | NaN | November 4, 2016 | 1 hour, 52 min. | English | NaN | NaN | NaN |
0 | 13th : A Conversation with Oprah Winfrey & ... | NaN | January 26, 2017 | 36 min. | English | NaN | NaN | NaN |
1 | Casting JonBenet | NaN | April 28, 2017 | 1 hour, 20 min. | English | NaN | NaN | NaN |
2 | The Mars Generation | NaN | May 5, 2017 | 1 hour, 37 min. | English | NaN | NaN | NaN |
3 | Get Me Roger Stone | NaN | May 12, 2017 | 1 hour, 41 min. | English | NaN | NaN | NaN |
4 | Laerte-se | NaN | May 19, 2017 | 1 hour, 40 min. | Portuguese | NaN | NaN | NaN |
5 | Joshua: Teenager vs. Superpower | NaN | May 26, 2017 | 1 hour, 18 min. | English | NaN | NaN | NaN |
6 | CounterPunch | NaN | June 16, 2017 | 1 hour, 31 min. | English | NaN | NaN | NaN |
7 | Nobody Speak: Trials of the Free Press | NaN | June 23, 2017 | 1 hour, 35 min. | English | NaN | NaN | NaN |
8 | Chasing Coral | NaN | July 14, 2017 | 1 hour, 29 min. | English | NaN | NaN | NaN |
9 | Icarus | NaN | August 4, 2017 | 2 hours | English | NaN | NaN | NaN |
10 | Resurface | NaN | September 1, 2017 | 27 min. | English | NaN | NaN | NaN |
11 | Heroin(e) | NaN | September 12, 2017 | 39 min. | English | NaN | NaN | NaN |
12 | Strong Island | NaN | September 15, 2017 | 1 hour, 47 min. | English | NaN | NaN | NaN |
13 | Gaga: Five Foot Two | NaN | September 22, 2017 | 1 hour, 40 min. | English | NaN | NaN | NaN |
14 | Long Shot | NaN | September 29, 2017 | 40 min. | English | NaN | NaN | NaN |
15 | The Death and Life of Marsha P. Johnson | NaN | October 6, 2017 | 1 hour, 45 min. | English | NaN | NaN | NaN |
16 | Kingdom of Us | NaN | October 13, 2017 | 1 hour, 49 min. | English | NaN | NaN | NaN |
17 | One of Us | NaN | October 20, 2017 | 1 hour, 35 min. | English | NaN | NaN | NaN |
18 | Joan Didion: The Center Will Not Hold | NaN | October 27, 2017 | 1 hour, 38 min. | English | NaN | NaN | NaN |
19 | Jim & Andy: The Great Beyond – Featuring a Ver... | NaN | November 17, 2017 | 1 hour, 34 min. | English | NaN | NaN | NaN |
20 | Saving Capitalism | NaN | November 21, 2017 | 1 hour, 13 min. | English | NaN | NaN | NaN |
21 | Cuba and the Cameraman | NaN | November 24, 2017 | 1 hour, 54 min. | English | NaN | NaN | NaN |
22 | Voyeur | NaN | December 1, 2017 | 1 hour, 35 min. | English | NaN | NaN | NaN |
0 | Seeing Allred | NaN | February 9, 2018 | 1 hour, 35 min. | English | NaN | NaN | NaN |
1 | The Trader | NaN | February 9, 2018 | 23 min. | Georgian | NaN | NaN | NaN |
2 | Ladies First | NaN | March 8, 2018 | 39 min. | Hindi/English | NaN | NaN | NaN |
3 | Take Your Pills | NaN | March 16, 2018 | 1 hour, 27 min. | English | NaN | NaN | NaN |
4 | Ram Dass, Going Home | NaN | April 6, 2018 | 31 min. | English | NaN | NaN | NaN |
5 | Mercury 13 | NaN | April 20, 2018 | 1 hour, 19 min. | English | NaN | NaN | NaN |
6 | The Rachel Divide | NaN | April 27, 2018 | 1 hour, 44 min. | English | NaN | NaN | NaN |
7 | End Game | NaN | May 4, 2018 | 40 min. | English | NaN | NaN | NaN |
8 | Recovery Boys | NaN | June 29, 2018 | 1 hour, 29 min. | English | NaN | NaN | NaN |
9 | The Bleeding Edge | NaN | July 27, 2018 | 1 hour, 40 min. | English | NaN | NaN | NaN |
10 | Zion | NaN | August 10, 2018 | 11 min. | English | NaN | NaN | NaN |
11 | City of Joy | NaN | September 7, 2018 | 1 hour, 16 min. | English | NaN | NaN | NaN |
12 | Reversing Roe | NaN | September 13, 2018 | 1 hour, 39 min. | English | NaN | NaN | NaN |
13 | Quincy | NaN | September 21, 2018 | 2 hours, 4 min. | English | NaN | NaN | NaN |
14 | Two Catalonias | NaN | September 28, 2018 | 1 hour, 56 min. | Spanish/Catalan | NaN | NaN | NaN |
15 | Lessons from a School Shooting: Notes from Dun... | NaN | September 28, 2018 | 23 min. | English | NaN | NaN | NaN |
16 | Feminists: What Were They Thinking? | NaN | October 12, 2018 | 1 hour, 26 min. | English | NaN | NaN | NaN |
17 | Shirkers | NaN | October 26, 2018 | 1 hour, 37 min. | English | NaN | NaN | NaN |
18 | They'll Love Me When I'm Dead | NaN | November 2, 2018 | 1 hour, 38 min. | English | NaN | NaN | NaN |
19 | The American Meme | NaN | December 7, 2018 | 1 hour, 38 min. | English | NaN | NaN | NaN |
20 | Out of Many, One | NaN | December 12, 2018 | 34 min. | English | NaN | NaN | NaN |
21 | Struggle: The Life and Lost Art of Szukalski | NaN | December 21, 2018 | 1 hour, 45 min. | English | NaN | NaN | NaN |
0 | Fyre: The Greatest Party That Never Happened | NaN | January 18, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
1 | Period. End of Sentence. | NaN | February 12, 2019 | 26 min. | Hindi/English | NaN | NaN | NaN |
2 | Antoine Griezmann: The Making of a Legend | NaN | March 21, 2019 | 1 hour | French | NaN | NaN | NaN |
3 | The Legend of Cocaine Island | NaN | March 29, 2019 | 1 hour, 27 min. | English | NaN | NaN | NaN |
4 | Homecoming: A Film by Beyoncé | NaN | April 17, 2019 | 2 hours, 17 min. | English | NaN | NaN | NaN |
5 | Brené Brown: The Call to Courage | NaN | April 19, 2019 | 1 hour, 16 min. | English | NaN | NaN | NaN |
6 | Grass Is Greener | NaN | April 20, 2019 | 1 hour, 37 min. | English | NaN | NaN | NaN |
7 | Knock Down the House | NaN | May 1, 2019 | 1 hour, 27 min. | English | NaN | NaN | NaN |
8 | All in My Family | NaN | May 3, 2019 | 39 min. | English/Mandarin | NaN | NaN | NaN |
9 | A Tale of Two Kitchens | NaN | May 22, 2019 | 30 min. | English/Spanish | NaN | NaN | NaN |
10 | After Maria | NaN | May 24, 2019 | 37 min. | English/Spanish | NaN | NaN | NaN |
11 | The Black Godfather | NaN | June 7, 2019 | 1 hour, 58 min. | English | NaN | NaN | NaN |
12 | Rolling Thunder Revue: A Bob Dylan Story by Ma... | NaN | June 12, 2019 | 2 hours, 22 min. | English | NaN | NaN | NaN |
13 | Life Overtakes Me | NaN | June 14, 2019 | 40 min. | English/Swedish | NaN | NaN | NaN |
14 | The Edge of Democracy | NaN | June 19, 2019 | 2 hours, 1 min. | Portuguese | NaN | NaN | NaN |
15 | Parchis: The Documentary | NaN | July 10, 2019 | 1 hour, 46 min. | Spanish | NaN | NaN | NaN |
16 | The Great Hack | NaN | July 24, 2019 | 1 hour, 54 min. | English | NaN | NaN | NaN |
17 | Our Planet - Behind the Scenes | NaN | August 4, 2019 | 1 hour, 3 min. | English | NaN | NaN | NaN |
18 | Enter the Anime | NaN | August 5, 2019 | 58 min. | English/Japanese | NaN | NaN | NaN |
19 | American Factory | NaN | August 21, 2019 | 1 hour, 50 min. | English | NaN | NaN | NaN |
20 | American Factory : A Conversation with the O... | NaN | August 21, 2019 | 10 min. | English | NaN | NaN | NaN |
21 | Travis Scott: Look Mom I Can Fly | NaN | August 28, 2019 | 1 hour, 25 min. | English | NaN | NaN | NaN |
22 | The Crystal Calls Making the Dark Crystal: Age... | NaN | August 31, 2019 | 1 hour, 22 min. | English | NaN | NaN | NaN |
23 | Evelyn | NaN | September 10, 2019 | 1 hour, 36 min. | English | NaN | NaN | NaN |
24 | Hello Privilege. It's Me, Chelsea | NaN | September 13, 2019 | 1 hour, 4 min. | English | NaN | NaN | NaN |
25 | Los Tigres del Norte at Folsom Prison | NaN | September 15, 2019 | 1 hour, 4 min. | Spanish | NaN | NaN | NaN |
26 | Birders | NaN | September 25, 2019 | 37 min. | English/Spanish | NaN | NaN | NaN |
27 | Ghosts of Sugar Land | NaN | October 16, 2019 | 21 min. | English | NaN | NaN | NaN |
28 | Tell Me Who I Am | NaN | October 18, 2019 | 1 hour, 25 min. | English | NaN | NaN | NaN |
29 | Dancing with the Birds | NaN | October 23, 2019 | 51 min. | English | NaN | NaN | NaN |
30 | It Takes a Lunatic | NaN | October 25, 2019 | 2 hours, 6 min. | English | NaN | NaN | NaN |
31 | A 3 Minute Hug | NaN | October 28, 2019 | 28 min. | English/Spanish | NaN | NaN | NaN |
32 | Little Miss Sumo | NaN | October 28, 2019 | 19 min. | Japanese | NaN | NaN | NaN |
33 | The Road to El Camino: A Breaking Bad Movie | NaN | October 29, 2019 | 13 min. | English | NaN | NaN | NaN |
34 | Fire in Paradise | NaN | November 1, 2019 | 39 min. | English | NaN | NaN | NaN |
35 | Bikram: Yogi, Guru, Predator | NaN | November 20, 2019 | 1 hour, 26 min. | English | NaN | NaN | NaN |
36 | Lorena, Light-Footed Woman | NaN | November 20, 2019 | 28 min. | Spanish | NaN | NaN | NaN |
37 | The Irishman: In Conversation | NaN | November 27, 2019 | 23 min. | English | NaN | NaN | NaN |
39 | After the Raid [12] | NaN | December 19, 2019 | TBA | Spanish | NaN | NaN | NaN |
40 | El Pepe: A Supreme Life | NaN | December 27, 2019 | TBA | Spanish | NaN | NaN | NaN |
0 | ReMastered: Who Shot the Sheriff? | NaN | October 12, 2018 | 57 min. | English | NaN | NaN | NaN |
1 | ReMastered: Tricky Dick & the Man in Black | NaN | November 2, 2018 | 58 min. | English | NaN | NaN | NaN |
2 | ReMastered: Who Killed Jam Master Jay? | NaN | December 7, 2018 | 58 min. | English | NaN | NaN | NaN |
3 | ReMastered: Massacre at the Stadium | NaN | January 11, 2019 | 1 hour, 4 min. | English/Spanish | NaN | NaN | NaN |
4 | ReMastered: The Two Killings of Sam Cooke | NaN | February 8, 2019 | 1 hour, 4 min. | English | NaN | NaN | NaN |
5 | ReMastered: The Miami Showband Massacre | NaN | March 22, 2019 | 1 hour, 10 min. | English | NaN | NaN | NaN |
6 | ReMastered: Devil at the Crossroads | NaN | April 26, 2019 | 48 min. | English | NaN | NaN | NaN |
7 | ReMastered: The Lion's Share | NaN | May 17, 2019 | 1 hour, 24 min. | English | NaN | NaN | NaN |
0 | A Very Murray Christmas | Comedy / Musical | December 4, 2015 | 56 min. | NaN | NaN | NaN | NaN |
1 | Justin Timberlake + The Tennessee Kids | Concert film | October 12, 2016 | 1 hour, 30 min. | NaN | NaN | NaN | NaN |
2 | Michael Bolton's Big, Sexy Valentine's Day Spe... | Variety show | February 7, 2017 | 54 min. | NaN | NaN | NaN | NaN |
3 | Rodney King | One-man show | April 28, 2017 | 52 min. | NaN | NaN | NaN | NaN |
4 | Barbra: The Music, The Mem'ries, The Magic | Concert film | November 22, 2017 | 1 hour, 48 min. | NaN | NaN | NaN | NaN |
5 | Derren Brown: Sacrifice | Mentalism special | October 19, 2018 | 49 min. | NaN | NaN | NaN | NaN |
6 | Loudon Wainwright III: Surviving Twin | One-man show | November 13, 2018 | 1 hour, 31 min. | NaN | NaN | NaN | NaN |
7 | Springsteen on Broadway | One-man show | December 16, 2018 | 2 hours, 33 min. | NaN | NaN | NaN | NaN |
8 | Porta dos Fundos : The Last Hangover | Portuguese language comedy | December 21, 2018 | 44 min. | NaN | NaN | NaN | NaN |
9 | Taylor Swift's Reputation Stadium Tour | Concert film | December 31, 2018 | 2 hours, 5 min. | NaN | NaN | NaN | NaN |
10 | Kevin Hart's Guide to Black History | Variety show | February 8, 2019 | 1 hour, 3 min. | NaN | NaN | NaN | NaN |
11 | Still Laugh-In: The Stars Celebrate | Variety show | May 14, 2019 | 1 hour | NaN | NaN | NaN | NaN |
12 | The Lonely Island Presents: The Unauthorized B... | Comedy / Musical | May 23, 2019 | 30 min. | NaN | NaN | NaN | NaN |
13 | Anima | Musical / Short | June 27, 2019 | 15 min. | NaN | NaN | NaN | NaN |
14 | Frankenstein's Monster's Monster, Frankenstein | Mockumentary | July 16, 2019 | 32 min. | NaN | NaN | NaN | NaN |
15 | Rocko's Modern Life: Static Cling | Animation / Comedy | August 9, 2019 | 45 min. | NaN | NaN | NaN | NaN |
16 | Invader Zim: Enter the Florpus | Animation / Science fiction | August 16, 2019 | 1 hour, 11 min. | NaN | NaN | NaN | NaN |
17 | Sturgill Simpson Presents: Sound & Fury | Animation / Musical / Short | September 27, 2019 | 41 min. | NaN | NaN | NaN | NaN |
18 | Porta dos Fundos : The First Temptation of Ch... | Portuguese language comedy | December 3, 2019 | 46 min. | NaN | NaN | NaN | NaN |
20 | John Mulaney & The Sack Lunch Bunch | Variety show | December 24, 2019 [13] | TBA | NaN | NaN | NaN | NaN |
0 | The Willoughbys [14] | Animation / Comedy | Spring 2020 [15] | NaN | NaN | NaN | NaN | NaN |
1 | The Prom [16] | Musical | Fall 2020 [17] | NaN | NaN | NaN | NaN | NaN |
2 | Robin Robin [18] | Animation / Musical | December 2020 | NaN | NaN | NaN | NaN | NaN |
3 | All the Bright Places [19] | Drama | 2020 [20] | NaN | NaN | NaN | NaN | NaN |
4 | Betongold [21] | German language satire | 2020 | NaN | NaN | NaN | NaN | NaN |
5 | Beyond the Result [22] | Italian language sports film | 2020 | NaN | NaN | NaN | NaN | NaN |
6 | Caught by a Wave [22] | Italian language romantic teenage drama | 2020 | NaN | NaN | NaN | NaN | NaN |
7 | First Ladies [23] | Comedy | 2020 [24] | NaN | NaN | NaN | NaN | NaN |
8 | Freaks [21] | German language supernatural social drama | 2020 | NaN | NaN | NaN | NaN | NaN |
9 | Hogar [25] | Spanish language thriller | 2020 | NaN | NaN | NaN | NaN | NaN |
10 | Horse Girl [26] [27] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN |
11 | Isi & Ossi [21] | German language romantic comedy | 2020 | NaN | NaN | NaN | NaN | NaN |
12 | Jingle Jangle [28] [29] | Family film / Musical | 2020 | NaN | NaN | NaN | NaN | NaN |
13 | Operation Christmas Drop [30] | Romantic comedy | 2020 | NaN | NaN | NaN | NaN | NaN |
14 | Over the Moon [31] | Animation / Adventure / Musical | 2020 | NaN | NaN | NaN | NaN | NaN |
15 | Sergio [32] [33] | Biopic | 2020 [32] | NaN | NaN | NaN | NaN | NaN |
16 | The Boys in the Band [34] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN |
17 | The Dig [35] | Drama | 2020 [36] | NaN | NaN | NaN | NaN | NaN |
18 | The Divine Ponytail [22] | Italian language sports film | 2020 | NaN | NaN | NaN | NaN | NaN |
19 | The Last Paradise [22] | Italian language romantic drama | 2020 | NaN | NaN | NaN | NaN | NaN |
20 | The Last Thing He Wanted [37] | Political thriller | 2020 [38] | NaN | NaN | NaN | NaN | NaN |
21 | The Main Event [39] | Adventure | 2020 | NaN | NaN | NaN | NaN | NaN |
22 | The Princess Switch: Switched Again [40] | Romantic comedy | 2020 | NaN | NaN | NaN | NaN | NaN |
23 | Under the Sun of Riccione [22] | Italian language romantic teenage drama | 2020 | NaN | NaN | NaN | NaN | NaN |
24 | Welcome to Sudden Death [41] | Action-thriller | 2020 | NaN | NaN | NaN | NaN | NaN |
25 | My Father's Dragon [14] | Animation / Adventure | 2021 | NaN | NaN | NaN | NaN | NaN |
26 | Pinocchio [42] | Stop motion / Fantasy / Drama | 2021 [43] | NaN | NaN | NaN | NaN | NaN |
27 | The Power of the Dog [44] | Drama | 2021 [44] | NaN | NaN | NaN | NaN | NaN |
28 | Untitled The Loud House film [45] | Animation / Comedy | 2021 [46] | NaN | NaN | NaN | NaN | NaN |
29 | Wendell and Wild [47] | Stop motion / Fantasy / Horror comedy | 2021 [43] | NaN | NaN | NaN | NaN | NaN |
30 | Escape from Hat [48] | Animation / Fantasy | 2022 | NaN | NaN | NaN | NaN | NaN |
31 | Jacob and the Sea Beast [49] | Animation / Adventure | 2022 | NaN | NaN | NaN | NaN | NaN |
0 | Taylor Swift: Miss Americana [216] | Documentary | 2020 | NaN | NaN | NaN | NaN | NaN |
0 | Bad Moms | Comedy | NaN | 1 hour, 40 min. | NaN | Japan | NaN | NaN |
1 | Before I Wake | Horror - Fantasy | NaN | 1 hour, 37 min. | NaN | United States, United Kingdom, Ireland, France... | NaN | NaN |
2 | Brain on Fire | Drama | NaN | 1 hour, 35 min. | NaN | Selected territories | NaN | NaN |
3 | David Brent: Life on the Road | Comedy | NaN | 1 hour, 36 min. | NaN | Worldwide except United Kingdom, Ireland, Aust... | NaN | NaN |
4 | Hell or High Water | Crime drama | NaN | 1 hour, 43 min. | NaN | Italy, San Marino, Vatican City, [227] Japan... | NaN | NaN |
5 | Message from the King | Drama | NaN | 1 hour, 43 min. | NaN | United States, Sweden, multiple territories [... | NaN | NaN |
6 | Middle School: The Worst Years of My Life | Comedy | NaN | 1 hour, 32 min. | NaN | United Kingdom, Ireland, Benelux, DACH, Italy,... | NaN | NaN |
7 | Mindhorn | Comedy | NaN | 1 hour, 28 min. | NaN | Worldwide except the United Kingdom and Irelan... | NaN | NaN |
8 | The Bad Batch | Black comedy thriller | NaN | 1 hour, 55 min. | NaN | UK, Ireland, Italy, San Marino, Vatican City, ... | NaN | NaN |
9 | Two Lovers and a Bear | Drama | NaN | 1 hour, 36 min. | NaN | United States [232] | NaN | NaN |
0 | 6 Days | Hostage thriller | NaN | 1 hour, 34 min. | NaN | Selected territories | NaN | NaN |
1 | A Bad Moms Christmas | Comedy | NaN | 1 hour, 44 min. | NaN | Japan | NaN | NaN |
2 | A Prayer Before Dawn | Drama | NaN | 1 hour, 56 min. | NaN | India, Hong Kong, Singapore | NaN | NaN |
3 | Before I Fall | Drama / mystery | NaN | 1 hour, 38 min. | NaN | Canada, Czech Republic, France, Hungary, Irela... | NaN | NaN |
4 | Bushwick | Action adventure | NaN | 1 hour, 34 min. | NaN | Australia, Canada, France, Israel, Russia, Sou... | NaN | NaN |
5 | Catching Feelings | Romantic comedy | NaN | 2 hours, 4 min. | NaN | Worldwide [233] [234] | NaN | NaN |
6 | Good Time | Crime drama | NaN | 1 hour, 50 min. | NaN | Selected territories [235] | NaN | NaN |
7 | Home Again | Romantic comedy | NaN | 1 hour, 37 min. | NaN | Japan [236] | NaN | NaN |
8 | Kidnap | Thriller | NaN | 1 hour, 22 min. | NaN | United Kingdom | NaN | NaN |
9 | Kodachrome | Drama | NaN | 1 hour, 40 min. | NaN | United States, Canada, UK, Italy, Benelux, Jap... | NaN | NaN |
10 | Mudbound | Drama | NaN | 2 hours, 14 min. | NaN | United States, Sweden, Czech Republic and sele... | NaN | NaN |
11 | The Circle | Thriller | NaN | 1 hour, 50 min. | NaN | United Kingdom and Ireland | NaN | NaN |
12 | The Foreigner | Action / thriller | NaN | 1 hour, 54 min. | NaN | United Kingdom | NaN | NaN |
13 | The Hitman's Bodyguard | Action Comedy | NaN | 1 hour, 58 min. | NaN | Japan [239] | NaN | NaN |
14 | The Ritual | Horror | NaN | 1 hour, 34 min. | NaN | Worldwide, except the UK and Latin America | NaN | NaN |
15 | The Space Between Us | Science fiction | NaN | 2 hours, 1 min. | NaN | Japan, [240] Italy, San Marino, Vatican City... | NaN | NaN |
16 | What Happened to Monday | Science fiction - thriller | NaN | 2 hours, 3 min. | NaN | United States, Latin America, The Caribbean, U... | NaN | NaN |
17 | You Get Me | Thriller | NaN | 1 hour, 29 min. | NaN | Worldwide except Spain, Sweden | NaN | NaN |
0 | Annihilation | Science fiction | NaN | 1 hour, 55 min. | NaN | Worldwide except United States and Canada | NaN | NaN |
1 | Anon | Science fiction | NaN | 1 hour, 40 min. | NaN | Selected territories | NaN | NaN |
2 | At Eternity's Gate | Biopic | NaN | 1 hour, 51 min. | NaN | France [243] | NaN | NaN |
3 | Beirut | Spy thriller | NaN | 1 hour, 49 min. | NaN | Selected territories including Japan | NaN | NaN |
4 | Dumplin' | Musical comedy-drama | NaN | 1 hour, 50 min. | NaN | Selected territories including the United States | NaN | NaN |
5 | Guardians of the Tomb | Adventure | NaN | 1 hour, 30 min. | NaN | Selected territories | NaN | NaN |
6 | Malevolent | Horror | NaN | 1 hour, 28 min. | NaN | United States and selected territories, exclud... | NaN | NaN |
7 | My Teacher, My Obsession | Thriller | NaN | 1 hour, 30 min. | NaN | Australia | NaN | NaN |
8 | Operation Finale | Drama | NaN | 2 hours, 2 min. | NaN | Worldwide excluding U.S. [244] | NaN | NaN |
9 | Second Act | Romantic comedy | NaN | 1 hour, 44 min. | NaN | Selected territories including Japan | NaN | NaN |
10 | The Breaker Upperers | Romantic comedy-drama | NaN | 1 hour, 30 min. | NaN | Worldwide except Australia, New Zealand [245] | NaN | NaN |
11 | The Guernsey Literary and Potato Peel Pie Society | Historical - drama | NaN | 2 hours, 4 min. | NaN | United States, Canada, Latin America, Italy, E... | NaN | NaN |
12 | The Kindergarten Teacher | Drama | NaN | 1 hour, 36 min. | NaN | United States and Canada [247] | NaN | NaN |
13 | The Titan | Science fiction | NaN | 1 hour, 37 min. | NaN | United States, Canada, Italy, San Marino, Vati... | NaN | NaN |
14 | Zoe | Science fiction | NaN | 1 hour, 44 min. | NaN | Japan, [249] Benelux, [250] Sweden | NaN | NaN |
0 | After | Drama | NaN | 1 hour, 45 min. | NaN | Selected territories | NaN | NaN |
1 | Booksmart | Coming-of-age Comedy | NaN | 1 hour, 45 min. | NaN | Selected territories including France | NaN | NaN |
2 | Close | Thriller | NaN | 1 hour, 34 min. | NaN | Selected territories | NaN | NaN |
3 | Extremely Wicked, Shockingly Evil and Vile | Thriller | NaN | 1 hour, 48 min. | NaN | United States and select other territories [251] | NaN | NaN |
4 | I Am Mother | Science fiction Thriller | NaN | 1 hour, 53 min. | NaN | North America and selected territories [252] | NaN | NaN |
5 | Isn't It Romantic | Romantic comedy | NaN | 1 hour, 28 min. | NaN | Selected Territories except the United States.... | NaN | NaN |
6 | Oh, Ramona! | Comedy | NaN | 1 hour, 49 min. | NaN | Selected territories | NaN | NaN |
7 | Serenity | Drama | NaN | 1 hour, 46 min. | NaN | Selected territories | NaN | NaN |
8 | Shaft | Action comedy | NaN | 1 hour, 51 min. | NaN | Worldwide excluding United States and Canada ... | NaN | NaN |
9 | The Boy Who Harnessed the Wind | Drama | NaN | 1 hour, 53 min. | NaN | Worldwide except Japan and China [255] | NaN | NaN |
10 | The Silence | Horror | NaN | 1 hour, 30 min. | NaN | Selected territories | NaN | NaN |
11 | Wounds | Horror | NaN | 1 hour, 34 min. | NaN | Worldwide except the United States. [256] | NaN | NaN |
12 | Uncut Gems | Crime thriller | NaN | 2 hours, 10 min. | NaN | Worldwide excluding United States and Canada ... | NaN | NaN |
0 | A Boy Called Christmas | Fantasy | NaN | TBA | NaN | Worldwide except UK, Australia, New Zealand, G... | NaN | NaN |
0 | The Last Letter from Your Lover | Romantic drama | NaN | TBA | NaN | Worldwide except UK, Australia, New Zealand, G... | NaN | NaN |
0 | Orbiter 9 | Science fiction | NaN | NaN | NaN | Worldwide except for Spain, Japan, Germany | 1 hour, 35 min. | NaN |
1 | The 4th Company | Crime drama | NaN | NaN | NaN | Selected territories | 1 hour, 56 min. | NaN |
2 | The Lighthouse of the Orcas | Drama | NaN | NaN | NaN | Worldwide except Spain and Argentina [260] | 1 hour, 50 min. | NaN |
3 | The Motive | Drama | NaN | NaN | NaN | Worldwide except Japan, Korea, China [261] | 1 hour, 52 min. | NaN |
4 | The Skin of the Wolf | Drama | NaN | NaN | NaN | Worldwide except Spain | 1 hour, 50 min. | NaN |
0 | Animas | Horror | NaN | NaN | NaN | Worldwide except Spain | 1 hour, 23 min. | NaN |
1 | A Twelve-Year Night | Drama | NaN | NaN | NaN | Selected territories | 2 hours, 2 min. | NaN |
2 | Bayonet | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 41 min. | NaN |
3 | Dry Martina | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 35 min. | NaN |
4 | El Potro: Unstoppable | Drama | NaN | NaN | NaN | Selected territories | 2 hours, 2 min. | NaN |
5 | Gun City | Crime thriller | NaN | NaN | NaN | Selected territories | 2 hours, 5 min. | NaN |
6 | How to Get Over a Breakup | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 44 min. | NaN |
7 | Jefe | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 29 min. | NaN |
8 | Mirage | Drama | NaN | NaN | NaN | Selected territories | 2 hours, 9 min. | NaN |
9 | Perdida | Thriller | NaN | NaN | NaN | Selected territories excluding Argentina | 1 hour, 45 min. | NaN |
10 | Pickpockets | Crime drama | NaN | NaN | NaN | Selected territories | 1 hour, 48 min. | NaN |
11 | Sara's Notebook | Thriller | NaN | NaN | NaN | Worldwide except Hong Kong, India, Japan, Sing... | 1 hour, 55 min. | NaN |
12 | Solo | Thriller | NaN | NaN | NaN | Worldwide except Spain | 1 hour, 31 min. | NaN |
13 | Sunday's Illness | Drama | NaN | NaN | NaN | Selected territories, including Sweden and Uni... | 1 hour, 53 min. | NaN |
14 | The Laws of Thermodynamics | Romantic comedy | NaN | NaN | NaN | Worldwide except Spain [263] | 1 hour, 40 min. | NaN |
15 | The Photographer of Mauthausen | Drama | NaN | NaN | NaN | Selected Territories | 1 hour, 50 min. | NaN |
16 | The Tree of Blood | Drama | NaN | NaN | NaN | Worldwide except Spain | 2 hours, 15 min. | NaN |
17 | The Tribe | Comedy | NaN | NaN | NaN | Worldwide except Spain and Taiwan [264] | 1 hour, 30 min. | NaN |
18 | The Warning | Thriller | NaN | NaN | NaN | Selected territories | 1 hour, 32 min. | NaN |
19 | Time Share | Drama | NaN | NaN | NaN | Worldwide except Mexico, Belgium and Netherlan... | 1 hour, 36 min. | NaN |
20 | When Angels Sleep | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 31 min. | NaN |
21 | Your Son | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 43 min. | NaN |
22 | Yucatán | Comedy | NaN | NaN | NaN | Selected territories | 2 hours, 9 min. | NaN |
0 | All the Freckles in the World | Romantic comedy | NaN | NaN | NaN | Selected territories | 1 hour, 31 min. | NaN |
1 | Blood Will Tell | Thriller | NaN | NaN | NaN | Selected territories | 1 hour, 53 min. | NaN |
2 | In Family I Trust | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 37 min. | NaN |
3 | Ready to Mingle | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 37 min. | NaN |
4 | The Endless Trench | Historical drama | NaN | NaN | NaN | Selected territories | 2 hour, 27 min. | NaN |
5 | The Influence | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 39 min. | NaN |
6 | The Little Switzerland | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 26 min. | NaN |
7 | The Son | Psychological thriller | NaN | NaN | NaN | Worldwide except China, South Korea, Argentina... | 1 hour, 32 min. | NaN |
0 | Bad Seeds | Comedy | NaN | NaN | NaN | Selected territories, including Sweden | 1 hour, 40 min. | NaN |
1 | Brother | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 36 min. | NaN |
2 | Budapest | Comedy | NaN | NaN | NaN | Selected territories, including Sweden | 1 hour, 42 min. | NaN |
3 | Burn Out | Thriller | NaN | NaN | NaN | Worldwide except France | 1 hour, 47 min. | NaN |
4 | Divines | Drama | NaN | NaN | NaN | Worldwide except France | 1 hour, 45 min. | NaN |
5 | Girls with Balls | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 17 min. | NaN |
6 | In the Shadow of Iris | Thriller | NaN | NaN | NaN | Worldwide except France | 1 hour, 38 min. | NaN |
7 | Journey to Greenland | Comedy | NaN | NaN | NaN | Worldwide except France [267] | 1 hour, 38 min. | NaN |
8 | Let's Dance | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 49 min. | NaN |
9 | Lady J | Drama | NaN | NaN | NaN | Worldwide except France, Switzerland, Canada a... | 1 hour, 49 min. | NaN |
10 | Mercenary | Drama - Sports | NaN | NaN | NaN | Selected territories, including Sweden and Cze... | 1 hour, 38 min. | NaN |
11 | Nothing to Hide | Drama | NaN | NaN | NaN | Worldwide except France | 1 hour, 33 min. | NaN |
12 | Ravenous | Horror | NaN | NaN | NaN | Worldwide except Canada, Latin America and Eas... | 1 hour, 36 min. | NaN |
13 | Shéhérazade | Drama | NaN | NaN | NaN | Worldwide except France | 1 hour, 51 min. | NaN |
14 | The Climb | Comedy | NaN | NaN | NaN | Selected territories, including United States,... | 1 hour, 45 min. | NaN |
15 | The Crew | Crime drama | NaN | NaN | NaN | Selected territories [271] | 1 hour, 21 min. | NaN |
16 | The Wolf's Call | Drama | NaN | NaN | NaN | Worldwide except France | 1 hour, 55 min. | NaN |
17 | The World Is Yours | Comedy | NaN | NaN | NaN | Selected territories, including Sweden [272] | 1 hour, 45 min. | NaN |
0 | Forgotten | Thriller | NaN | NaN | NaN | South Korea, Czech Republic and Sweden | 1 hour, 48 min. | NaN |
1 | High Society | Drama | NaN | NaN | NaN | Selected Territories | 2 hours, 17 min. | NaN |
2 | Illang: The Wolf Brigade | Action | NaN | NaN | NaN | Worldwide except Korea [273] | 2 hours, 19 min. | NaN |
3 | Jo Pil-ho: The Dawning Rage | Drama | NaN | NaN | NaN | Selected Territories | 2 hours, 7 min. | NaN |
4 | Lucid Dream | Thriller | NaN | NaN | NaN | Worldwide except South Korea | 1 hour, 41 min. | NaN |
5 | Pandora | Thriller | NaN | NaN | NaN | Multiple territories except South Korea and Ja... | 2 hours, 16 min. | NaN |
6 | Psychokinesis | Action / Black comedy | NaN | NaN | NaN | Worldwide except South Korea | 1 hour, 41 min. | NaN |
7 | Revenger | Action | NaN | NaN | NaN | Selected territories | 1 hour, 41 min. | NaN |
8 | Steel Rain | Action | NaN | NaN | NaN | Worldwide except Australia, Israel, Singapore,... | 2 hours, 19 min. | NaN |
9 | Svaha: The Sixth Finger | Thriller | NaN | NaN | NaN | Worldwide except South Korea | 2 hours, 2 min. | NaN |
10 | The Drug King | Drama | NaN | NaN | NaN | Selected Territories | 2 hours, 19 min. | NaN |
11 | Tune in for Love | Romantic drama | NaN | NaN | NaN | Worldwide except South Korea [275] | 2 hours, 2 min. | NaN |
0 | Kuntilanak | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 45 min. | NaN |
1 | May the Devil Take You | Thriller | NaN | NaN | NaN | Worldwide excluding Netherlands, Poland, Turke... | 1 hour, 50 min. | NaN |
2 | Sabrina | Horror | NaN | NaN | NaN | Worldwide except Singapore, Indonesia and Mala... | 1 hour, 53 min. | NaN |
3 | Suzzanna: Buried Alive | Horror | NaN | NaN | NaN | Selected territories | 2 hours, 5 min. | NaN |
4 | The 3rd Eye | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 47 min. | NaN |
5 | The 3rd Eye 2 | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 56 min. | NaN |
0 | Crossroads: One Two Jaga | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 21 min. | NaN |
1 | Munafik 2 | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 44 min. | NaN |
2 | Paskal | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 55 min. | NaN |
3 | Pulang | Drama | NaN | NaN | NaN | Selected territories including Sweden | 1 hour, 58 min. | NaN |
4 | Till Death: Azalea's Wrath | Horror | NaN | NaN | NaN | Selected territories | 1 hour, 45 min. | NaN |
0 | Blade of the Immortal | Action-drama | NaN | NaN | NaN | Spain, Sweden, Poland and Czech Republic [278] | 2 hours, 20 min. | NaN |
1 | Bleach | Action-drama | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 48 min. | NaN |
2 | FullMetal Alchemist | Fantasy adventure | NaN | NaN | NaN | United States, United Kingdom, Sweden and addi... | 2 hours, 15 min. | NaN |
3 | Hot Gimmick: Girl Meets Boy | Drama | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 59 min. | NaN |
4 | River's Edge | Comedy-drama | NaN | NaN | NaN | Selected territories including Sweden [279] | 1 hour, 58 min. | NaN |
0 | 4L | Comedy | NaN | NaN | NaN | Selected territories | 1 hour, 44 min. | Spanish/French/Afrikaans |
1 | A Land Imagined | Thriller | NaN | NaN | NaN | Selected territories | 1 hour, 35 min. | Bengali/English/Mandarin |
2 | Atlantics | Drama | NaN | NaN | NaN | Worldwide except France, Switzerland, Russia, ... | 1 hour, 46 min. | Wolof /French/English |
3 | Battle | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 38 min. | Norwegian /English |
4 | Boi | Thriller | NaN | NaN | NaN | Selected territories | 1 hour, 51 min. | English/Spanish |
5 | Cities of Last Things | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 47 min. | Mandarin/English/French |
6 | Close Enemies | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 51 min. | French/Arabic |
7 | Girl | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 40 min. | Dutch/French |
8 | Joy | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 39 min. | English/German |
9 | Maria | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 30 min. | English/ Filipino |
10 | Paradise Beach | Thriller | NaN | NaN | NaN | Selected territories | 1 hour, 33 min. | French/English/Thai |
11 | Shanghai Fortress | Action / Adventure | NaN | NaN | NaN | Selected territories | 1 hour, 47 min. | Mandarin/English |
12 | Skiptrace | Action / Adventure | NaN | NaN | NaN | United Kingdom, Ireland, France | 1 hour, 47 min. | Mandarin/English/Mongolian |
13 | The Burial of Kojo | Drama | NaN | NaN | NaN | Selected territories | 1 hour, 20 min. | English/ Twi |
0 | A Fortunate Man | Drama | NaN | NaN | Danish | Selected territories | 2 hours, 42 min. | NaN |
1 | Ali's Wedding | Romantic comedy | NaN | NaN | Arabic | Worldwide except Australia and New Zealand [281] | 1 hour, 50 min. | NaN |
2 | All Is Well | Drama | NaN | NaN | German | Selected territories | 1 hour, 30 min. | NaN |
3 | And Breathe Normally | Drama | NaN | NaN | Icelandic | Selected territories | 1 hour, 35 min. | NaN |
4 | Aurora | Drama | NaN | NaN | Filipino | Selected territories | 1 hour, 50 min. | NaN |
5 | DJ Cinderella | Drama | NaN | NaN | Portuguese | Selected territories | 1 hour, 35 min. | NaN |
6 | Dear Ex | Drama | NaN | NaN | Mandarin | Selected territories | 1 hour, 40 min. | NaN |
7 | Dovlatov | Drama | NaN | NaN | Russian | United States, United Kingdom [282] | 2 hours, 6 min. | NaN |
8 | Errementari | Fantasy | NaN | NaN | Basque | Selected territories including Japan | 1 hour, 38 min. | NaN |
9 | Furie | Action-drama | NaN | NaN | Vietnamese | Selected territories | 1 hour, 37 min. | NaN |
10 | Goyo: The Boy General | Drama | NaN | NaN | Filipino | Selected territories | 2 hours, 30 min. | NaN |
11 | Happy as Lazzaro | Drama | NaN | NaN | Italian | United States, Canada and Latin America [283] | 2 hours, 10 min. | NaN |
12 | Jaoon Kahan Bata Ae Dil | Drama | NaN | NaN | Hindi | Selected territories | 1 hour, 46 min. | NaN |
13 | Kardec | Drama | NaN | NaN | Portuguese | Selected territories | 1 hour, 50 min. | NaN |
14 | Kidnapping Stella | Crime drama | NaN | NaN | German | Selected territories | 1 hour, 29 min. | NaN |
15 | Layla M. | Drama | NaN | NaN | Dutch | Worldwide except the Netherlands and Japan [284] | 1 hour, 38 min. | NaN |
16 | Maktub | Drama | NaN | NaN | Hebrew | Selected territories, including Sweden [285] | 1 hour, 40 min. | NaN |
17 | Manhunt | Thriller | NaN | NaN | Mandarin | Selected territories including the US [286] | 1 hour, 46 min. | NaN |
18 | Money Trap | Comedy | NaN | NaN | Turkish | Selected territories | 2 hours, 1 min. | NaN |
19 | My Happy Family | Drama | NaN | NaN | Georgian | Worldwide except France [287] | 2 hours | NaN |
20 | On Body and Soul | Drama | NaN | NaN | Hungarian | Selected territories [288] | 1 hour, 57 min. | NaN |
21 | Rock My Heart | Drama | NaN | NaN | German | Selected territories | 1 hour, 49 min. | NaN |
22 | Sand Storm | Drama | NaN | NaN | Arabic | Worldwide except Israel [289] | 1 hour, 28 min. | NaN |
23 | Shadows In My Eyes | Historical drama | NaN | NaN | Danish | Worldwide except Denmark [71] | TBA | NaN |
24 | Slam | Teen Drama | NaN | NaN | Italian | Worldwide except Italy [290] | 1 hour, 40 min. | NaN |
25 | The 101-Year-Old Man Who Skipped Out on the Bi... | Comedy | NaN | NaN | Swedish | Worldwide except Nordics, DACH, Japan and Luxe... | 1 hour, 48 min. | NaN |
26 | The Awakening of Motti Wolkenbruch | Comedy | NaN | NaN | German | Selected territories | 1 hour, 30 min. | NaN |
27 | The Resistance Banker | Thriller | NaN | NaN | Dutch | Selected territories including Sweden | 2 hours, 3 min. | NaN |
28 | The Ruthless | Crime drama | NaN | NaN | Italian | Worldwide except France [292] | 1 hour, 30 min. | NaN |
29 | The Wandering Earth | Drama | NaN | NaN | Mandarin | Selected territories | 2 hours, 5 min. | NaN |
30 | Us and Them | Drama | NaN | NaN | Mandarin | Worldwide except Mainland China [293] | 1 hour, 59 min. | NaN |
0 | A Shaun the Sheep Movie: Farmageddon [294] | NaN | NaN | NaN | NaN | United States, Canda, and Latin America | 1 hour, 26 min. | NaN |
1 | Angela's Christmas | NaN | NaN | NaN | NaN | Selected territories including Japan, the Unit... | 30 min. | NaN |
2 | Arctic Dogs | NaN | NaN | NaN | NaN | Selected territories | 1 hour, 32 min. | NaN |
3 | Big Fish & Begonia | NaN | NaN | NaN | NaN | Selected territories including Japan [295] a... | 1 hour, 45 min. | NaN |
4 | Duck Duck Goose | NaN | NaN | NaN | NaN | Selected territories including the United Stat... | 1 hour, 29 min. | NaN |
5 | Flavors of Youth: International Version | NaN | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 14 min. | NaN |
6 | Godzilla: City on the Edge of Battle | NaN | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 40 min. | NaN |
7 | Godzilla: Planet of the Monsters | NaN | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 29 min. | NaN |
8 | Godzilla: The Planet Eater | NaN | NaN | NaN | NaN | Worldwide except Japan | 1 hour, 32 min. | NaN |
9 | Gnome Alone | NaN | NaN | NaN | NaN | United States, Canada, Australia, Japan | 1 hour, 25 min. | NaN |
10 | I Lost My Body | NaN | NaN | NaN | NaN | Worldwide except France and Turkey [298] | 1 hour, 21 min. | NaN |
11 | Kung Fu Panda 3 | NaN | NaN | NaN | NaN | Japan [299] | 1 hour, 34 min. | NaN |
12 | Modest Heroes: Ponoc Short Films Theater | NaN | NaN | NaN | NaN | Selected territories outside North America [300] | 51 min. | NaN |
13 | Pachamama | NaN | NaN | NaN | NaN | Worldwide except France, Belgium, Luxembourg, ... | 1 hour, 11 min. | NaN |
14 | Sahara | NaN | NaN | NaN | NaN | Austria, [302] Canada, Germany, Ireland, Jap... | 1 hour, 24 min. | NaN |
15 | The Little Prince | NaN | NaN | NaN | NaN | United States, United Kingdom, Ireland, Austra... | 1 hour, 46 min. | NaN |
16 | White Fang | NaN | NaN | NaN | NaN | Selected territories including the United Stat... | 1 hour, 25 min. | NaN |
0 | This 15 Me | Documentary | NaN | NaN | NaN | Selected territories [306] | 1 hour, 53 min. | NaN |
1 | An Afternoon with SCTV | Documentary | NaN | NaN | NaN | Upcoming; worldwide except Canada | TBA | NaN |
2 | Derren Brown: Miracle | Mentalism special | NaN | NaN | NaN | Worldwide [307] | 1 hour, 13 min. | NaN |
3 | Derren Brown: The Push | Mentalism special | NaN | NaN | NaN | Worldwide [307] | 1 hour, 9 min. | NaN |
4 | Dying to Tell | Spanish-language documentary | NaN | NaN | NaN | Worldwide except Spain | 1 hour, 28 min. | NaN |
5 | Kevin Hart: What Now? | Stand-up comedy concert film | NaN | NaN | NaN | Worldwide except United States [308] | 1 hour, 36 min. | NaN |
Now we are going to load netflix tv shows, from https://en.wikipedia.org/wiki/List_of_original_programs_distributed_by_Netflix (You may notice a blank table - scroll down! The webscraping accidentally incorporated additional stuff that we don't need that clogs some of the columns.)
# Step 0: necessary imports
import urllib.request
import bs4 as bs
import pandas as pd
import numpy as np
import requests
import xml.etree.ElementTree as ET
from io import StringIO
import html5lib
#Step 1: Pull page of original Netlix movies from wikipedia
tv_netflix_list = "https://en.wikipedia.org/wiki/List_of_original_programs_distributed_by_Netflix"
request_netflix = requests.get(tv_netflix_list)
source_netflix = urllib.request.urlopen(tv_netflix_list).read()
soup = bs.BeautifulSoup(source_netflix, 'html.parser')
#Step 2: isolate the tables from this page
table = soup.find_all('table')
#step 3: remove additional excess information
table = table[:-22]
#step 4: create df to store netflix original movies
netflix_tv_df = pd.DataFrame()
#step 5: iterate over every table, parse its html, and add each table as a DF to the netflix films df
for table in table:
pd_table = pd.read_html(table.prettify(), header = 0)
temp_df = pd_table[0]
netflix_tv_df = netflix_tv_df.append(temp_df, sort=False)
#we want to see all titles, so
pd.set_option('display.max_rows', 1000) #we want to see a lot of entries
#step 6: drop any duplicate wikipedia entries
netflix_tv_df = netflix_tv_df.drop_duplicates(subset="Title", keep='first')
#step7: drop any that have yet to be released (TBA only. we don't remove NaNs, because some of the wikipedia entries simply don't have premiere info)
netflix_tv_df = netflix_tv_df[netflix_tv_df['Premiere'] != "TBA"]
#step 8: display df
netflix_tv_df
Title | Genre | Premiere | Seasons | Length | Status | Language | Partner/Country | Netflix Exclusive Regions | Prev. network(s) | ... | English | 13 Reasons Why Anne with an E Atypical Dear White People Free Rein Frontier GLOW Greenhouse Academy Mindhunter Ozark The Worst Witch | English Alexa & Katie Altered Carbon Chilling Adventures of Sabrina The Haunting of Hill House Insatiable Kiss Me First The Kominsky Method The Letdown Little Things Lost in Space The New Legends of Monkey On My Block Prince of Peoria Requiem Tidelands Other 1983 Baby Busted! Diablero Dogs of Berlin Elite Immortals The House of Flowers The Mechanism Perfume The Protector The Rain Sacred Games Samantha! Selection Day Undercover Law Wild District YG Future Strategy Office | Alexa & Katie Altered Carbon Chilling Adventures of Sabrina The Haunting of Hill House Insatiable Kiss Me First The Kominsky Method The Letdown Little Things Lost in Space The New Legends of Monkey On My Block Prince of Peoria Requiem Tidelands | English After Life Another Life Black Summer Bonding Criminal: UK Daybreak The Dark Crystal: Age of Resistance Dead to Me Dirty John Family Reunion Heartstrings Historical Roasts Huge in France I Think You Should Leave with Tim Robinson It's Bruno! Living with Yourself Lunatics Malibu Rescue Merry Happy Whatever Mr. Iglesias Northern Rescue The Order The Politician Raising Dion Russian Doll Sex Education Shadow The Society Special Team Kaylie Trinkets Turn Up Charlie The Umbrella Academy V Wars Virgin River What/If Wu Assassins Other Ainori Love Wagon: African Journey Bard of Blood Better than Us BolÃvar The Chosen One The Club Criminal: France Criminal: Germany Criminal: Spain Delhi Crime Dollar El Dragón: Return of a Warrior Family Business Go! Live Your Way Hache How to Sell Drugs Online (Fast) Jinn Kingdom The Mafia Dolls Marianne Monarca Most Beautiful Thing My First First Love The Naked Director Love Alarm Osmosis Persona Quicksand The Road to Love Sintonia Skylines We Are the Wave Yankee | After Life Another Life Black Summer Bonding Criminal: UK Daybreak The Dark Crystal: Age of Resistance Dead to Me Dirty John Family Reunion Heartstrings Historical Roasts Huge in France I Think You Should Leave with Tim Robinson It's Bruno! Living with Yourself Lunatics Malibu Rescue Merry Happy Whatever Mr. Iglesias Northern Rescue The Order The Politician Raising Dion Russian Doll Sex Education Shadow The Society Special Team Kaylie Trinkets Turn Up Charlie The Umbrella Academy V Wars Virgin River What/If Wu Assassins | v t e Netflix original continuation series | v t e Netflix original continuation series.1 | v t e Netflix original ended series | v t e Netflix original ended series.1 | |
---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
0 | House of Cards | Political drama | February 1, 2013 | 6 seasons, 73 episodes | 42–59 min. | Ended [1] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Hemlock Grove | Horror / thriller | April 19, 2013 | 3 seasons, 33 episodes | 45–58 min. | Ended [2] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Orange Is the New Black | Comedy-drama | July 11, 2013 | 7 seasons, 91 episodes | 50–92 min. | Ended [3] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Marco Polo | Historical drama | December 12, 2014 | 2 seasons, 20 episodes | 48–65 min. | Ended [4] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Bloodline | Thriller | March 20, 2015 | 3 seasons, 33 episodes | 48–68 min. | Ended [5] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Sense8 | Science fiction | June 5, 2015 | 2 seasons, 24 episodes | 45–152 min. | Ended [6] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Narcos | Crime drama | August 28, 2015 | 3 seasons, 30 episodes | 43–60 min. | Ended [7] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Stranger Things | Science fiction / horror | July 15, 2016 | 3 seasons, 25 episodes | 42–78 min. | Renewed [8] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | The Get Down | Musical drama | August 12, 2016 | 2 parts, 11 episodes | 50–93 min. | Ended [9] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | The Crown | Historical drama | November 4, 2016 | 3 seasons, 30 episodes | 47–61 min. | Renewed [10] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Gilmore Girls: A Year in the Life | Family drama | November 25, 2016 | 4 episodes | 88–102 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | The OA | Mystery | December 16, 2016 | 2 parts, 16 episodes | 31–71 min. | Ended [11] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | A Series of Unfortunate Events | Black-comedy mystery | January 13, 2017 | 3 seasons, 25 episodes | 36–64 min. | Ended [12] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | 13 Reasons Why | Teen drama / mystery | March 31, 2017 | 3 seasons, 39 episodes | 49–71 min. | Renewed for final season [13] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Gypsy | Psychological thriller | June 30, 2017 | 1 season, 10 episodes | 46–58 min. | Ended [14] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Ozark | Crime drama | July 21, 2017 | 2 seasons, 20 episodes | 52–80 min. | Renewed [15] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Mindhunter | Crime drama | October 13, 2017 | 2 seasons, 19 episodes | 34–73 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Godless | Western | November 22, 2017 | 7 episodes | 41–80 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Altered Carbon | Science fiction | February 2, 2018 | 1 season, 10 episodes | 46–66 min. | Renewed [16] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Seven Seconds | Crime drama | February 23, 2018 | 1 season, 10 episodes | 54–80 min. | Ended [17] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Lost in Space | Science fiction | April 13, 2018 | 1 season, 10 episodes | 48–66 min. | Season 2 due to premiere on December 24, 2019 ... | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | The Innocents | Supernatural fiction | August 24, 2018 | 1 season, 8 episodes | 46–56 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | The Haunting | Horror anthology | October 12, 2018 | 1 season, 10 episodes | 43–71 min. | Renewed [19] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Chilling Adventures of Sabrina | Supernatural coming-of-age horror | October 26, 2018 | 2 parts, 20 episodes | 50–64 min. | Part 3 due to premiere on January 24, 2020 [2... | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Narcos: Mexico | Crime drama | November 16, 2018 | 1 season, 10 episodes | 55–70 min. | Renewed [22] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Tidelands | Supernatural crime drama | December 14, 2018 | 1 season, 8 episodes | 36–48 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | The Umbrella Academy | Superhero action | February 15, 2019 | 1 season, 10 episodes | 45–60 min. | Renewed [23] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | The Order | Supernatural horror drama | March 7, 2019 | 1 season, 10 episodes | 42–51 min. | Renewed [24] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Shadow | Thriller | March 8, 2019 | 1 season, 8 episodes | 40–49 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Black Summer | Zombie drama | April 11, 2019 | 1 season, 8 episodes | 21–45 min. | Renewed [25] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Chambers | Teen psychological thriller | April 26, 2019 | 1 season, 10 episodes | 38–51 min. | Ended [26] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | The Society | Mystery drama | May 10, 2019 | 1 season, 10 episodes | 49–61 min. | Renewed [27] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | What/If | Social thriller anthology | May 24, 2019 | 1 part, 10 episodes | 44–58 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | When They See Us | Drama | May 31, 2019 | 4 episodes | 64–88 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Trinkets | Coming-of-age drama | June 14, 2019 | 1 season, 10 episodes | 22–29 min. | Renewed for final season [28] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Another Life | Science fiction drama | July 25, 2019 | 1 series, 10 episodes | 37–61 min. | Renewed [29] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Wu Assassins | Supernatural martial arts drama | August 8, 2019 | 1 season, 10 episodes | 40–51 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | The Dark Crystal: Age of Resistance | Fantasy | August 30, 2019 | 1 season, 10 episodes | 47–61 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | The I-Land | Science fiction thriller | September 12, 2019 | 7 episodes | 37–43 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Unbelievable | Drama | September 13, 2019 | 8 episodes | 44–59 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Criminal: UK | Police procedural anthology series | September 20, 2019 | 1 season, 3 episodes | 43–44 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Raising Dion | Science fiction drama | October 4, 2019 | 1 season, 9 episodes | 39–51 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | Dolly Parton's Heartstrings | Anthology series | November 22, 2019 | 1 season, 8 episodes | 57–86 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | V Wars | Science fiction horror drama | December 5, 2019 | 1 season, 10 episodes | 37–57 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | Virgin River | Romance drama | December 6, 2019 | 1 season, 10 episodes | 42–49 min. | Renewed [30] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Upcoming | Upcoming | Upcoming | Upcoming | Upcoming | Upcoming | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Soundtrack | Musical drama | December 18, 2019 [31] | 1 season, 10 episodes | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | The Witcher | Fantasy drama | December 20, 2019 [32] | 1 season, 8 episodes | TBA | Renewed [33] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | Messiah [34] | Thriller | January 1, 2020 [35] | 1 season, 10 episodes | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Locke & Key [36] | Drama | February 7, 2020 [37] | 1 season, 10 episodes | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Daredevil | Crime drama / legal drama | April 10, 2015 | 3 seasons, 39 episodes | 46–61 min. | Ended [38] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Jessica Jones | Neo-noir / psychological thriller | November 20, 2015 | 3 seasons, 39 episodes | 44–56 min. | Ended [39] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Luke Cage | Neo-blaxploitation / neo-western | September 30, 2016 | 2 seasons, 26 episodes | 46–69 min. | Ended [40] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Iron Fist | Martial arts /business drama | March 17, 2017 | 2 seasons, 23 episodes | 49–61 min. | Ended [41] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | The Defenders | Superhero action / drama | August 18, 2017 | 8 episodes | 44–57 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | The Punisher | Crime drama / conspiracy thriller | November 17, 2017 | 2 seasons, 26 episodes | 47–58 min. | Ended [39] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Unbreakable Kimmy Schmidt | Comedy | March 6, 2015 | 4 seasons, 51 episodes | 23–53 min. | Ended [42] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Grace and Frankie | Comedy-drama | May 8, 2015 | 5 seasons, 65 episodes | 25–35 min. | Renewed for seasons 6 and 7 [43] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Wet Hot American Summer: First Day of Camp | Satirical comedy | July 31, 2015 | 8 episodes | 27–30 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Master of None | Comedy | November 6, 2015 | 2 seasons, 20 episodes | 21–57 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | W/ Bob & David | Sketch comedy | November 13, 2015 | 1 season, 5 episodes | 27–33 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Love | Romantic comedy | February 19, 2016 | 3 seasons, 34 episodes | 24–40 min. | Ended [44] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Fuller House | Sitcom | February 26, 2016 | 5 seasons, 66 episodes | 24–36 min. | Final season ongoing | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Flaked | Comedy | March 11, 2016 | 2 seasons, 14 episodes | 30–34 min. | Ended [45] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Netflix Presents: The Characters | Sketch comedy | March 11, 2016 | 1 season, 8 episodes | 27–38 min. | Ended [46] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | The Ranch | Sitcom | April 1, 2016 | 7 parts, 70 episodes | 25–36 min. | Renewed for final part [47] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Lady Dynamite | Comedy | May 20, 2016 | 2 seasons, 20 episodes | 26–36 min. | Ended [48] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Easy | Romantic comedy anthology | September 22, 2016 | 3 seasons, 25 episodes | 26–52 min. | Ended [49] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Haters Back Off | Comedy | October 14, 2016 | 2 seasons, 16 episodes | 24–36 min. | Ended [50] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Trailer Park Boys Out of the Park: Europe | Mockumentary | October 28, 2016 | 1 season, 8 episodes | 22–30 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | One Day at a Time | Sitcom | January 6, 2017 | 3 seasons, 39 episodes | 25–35 min. | Ended [a] [51] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Santa Clarita Diet | Comedy-horror | February 3, 2017 | 3 seasons, 30 episodes | 26–35 min. | Ended [52] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Mystery Science Theater 3000: The Return | Comic science fiction | April 14, 2017 | 2 seasons, 20 episodes | 86–94 min. | Ended [53] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Girlboss | Comedy | April 21, 2017 | 1 season, 13 episodes | 24–29 min. | Ended [54] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Dear White People | Satire / Drama | April 28, 2017 | 3 volumes, 30 episodes | 21–36 min. | Renewed for final season [55] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | GLOW | Comedy | June 23, 2017 | 3 seasons, 30 episodes | 27–46 min. | Renewed for final season [56] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Friends from College | Comedy | July 14, 2017 | 2 seasons, 16 episodes | 26–34 min. | Ended [57] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Wet Hot American Summer: Ten Years Later | Satirical comedy | August 4, 2017 | 8 episodes | 24–31 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Atypical | Coming-of-age comedy | August 11, 2017 | 3 seasons, 28 episodes | 26–38 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Disjointed | Comedy | August 25, 2017 | 2 parts, 20 episodes | 23–32 min. | Ended [58] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | American Vandal | Mockumentary | September 15, 2017 | 2 seasons, 16 episodes | 26–42 min. | Ended [59] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | She's Gotta Have It | Comedy-drama | November 23, 2017 | 2 seasons, 19 episodes | 32–38 min. | Ended [60] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Trailer Park Boys Out of the Park: USA | Mockumentary | November 24, 2017 | 1 season, 8 episodes | 23–35 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Everything Sucks! | Coming-of-age comedy | February 16, 2018 | 1 season, 10 episodes | 23–27 min. | Ended [61] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | On My Block | Coming-of-age comedy | March 16, 2018 | 2 seasons, 20 episodes | 23–32 min. | Renewed [62] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | All About the Washingtons | Comedy | August 10, 2018 | 1 season, 10 episodes | 22–27 min. | Ended [63] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Insatiable | Dark comedy-drama | August 10, 2018 | 2 seasons, 22 episodes | 40–53 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | The Good Cop | Police procedural comedy-drama | September 21, 2018 | 1 season, 10 episodes | 43–49 min. | Ended [64] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Maniac | Dark comedy | September 21, 2018 | 10 episodes | 27–47 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | The Kominsky Method | Comedy | November 16, 2018 | 2 seasons, 16 episodes | 22–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Sex Education | Coming-of-age comedy-drama | January 11, 2019 | 1 season, 8 episodes | 47–53 min. | Season 2 due to premiere on January 17, 2020 ... | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Russian Doll | Comedy | February 1, 2019 | 1 season, 8 episodes | 25–30 min. | Renewed [66] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | After Life | Comedy | March 8, 2019 | 1 season, 6 episodes | 25–31 min. | Renewed [67] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Turn Up Charlie | Comedy | March 15, 2019 | 1 season, 8 episodes | 25–29 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Huge in France | Comedy | April 12, 2019 | 1 season, 8 episodes | 28–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Special | Comedy | April 12, 2019 | 1 season, 8 episodes | 12–17 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Lunatics | Comedy | April 19, 2019 | 1 season, 10 episodes | 33–38 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | I Think You Should Leave with Tim Robinson | Sketch comedy | April 23, 2019 | 1 season, 6 episodes | 16–18 min. | Renewed [68] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | Bonding | Dark comedy | April 24, 2019 | 1 season, 7 episodes | 13–17 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Dead to Me | Dark comedy - drama | May 3, 2019 | 1 season, 10 episodes | 26–33 min. | Renewed [69] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | It's Bruno! | Comedy | May 17, 2019 | 1 season, 8 episodes | 12–21 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Mr. Iglesias | Comedy | June 21, 2019 | 1 season, 10 episodes | 26–31 min. | Renewed [70] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Family Reunion | Comedy | July 10, 2019 | 1 season, 10 episodes | 25–34 min. | Renewed [71] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | The Politician | Comedy | September 27, 2019 | 1 season, 8 episodes | 28–62 min. | Renewed [72] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | Living with Yourself | Comedy-drama | October 18, 2019 | 1 season, 8 episodes | 22–36 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Daybreak | Dark comedy | October 24, 2019 | 1 season, 10 episodes | 39–50 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Merry Happy Whatever | Comedy | November 28, 2019 | 1 season, 8 episodes | 25–29 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Astronomy Club: The Sketch Show | Sketch comedy | December 6, 2019 | 1 season, 6 episodes | 18–24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | AJ and the Queen | Comedy | January 10, 2020 [73] | 1 season, 10 episodes | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | BoJack Horseman | Black comedy - drama | August 22, 2014 | 6 seasons, 69 episodes | 25–26 min. | Part 2 of final season due to premiere on Janu... | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | F Is for Family | Sitcom | December 18, 2015 | 3 seasons, 26 episodes | 25–28 min. | Renewed [75] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Big Mouth | Coming-of-age comedy | September 29, 2017 | 3 seasons, 31 episodes | 25–46 min. | Renewed for seasons 4, 5 and 6 [76] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Neo Yokio | Science fantasy comedy | September 22, 2017 | 2 seasons, 7 episodes | 20–65 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Disenchantment | Medieval fantasy comedy | August 17, 2018 | 2 parts, 20 episodes | 22–36 min. | Renewed for parts 3 and 4 [77] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Paradise PD | Comedy | August 31, 2018 | 1 part, 10 episodes | 27–30 min. | Renewed [78] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Super Drags | Superhero - LGBT comedy | November 9, 2018 | 1 season, 5 episodes | 23–26 min. | Ended [79] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Love, Death & Robots | Anthology | March 15, 2019 | 1 volume, 18 episodes | 6–17 min. | Renewed [80] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Trailer Park Boys: The Animated Series | Mockumentary | March 31, 2019 | 1 season, 10 episodes | 24–25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Tuca & Bertie | Comedy | May 3, 2019 | 1 season, 10 episodes | 25–26 min. | Ended [81] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Castlevania | Dark fantasy | July 7, 2017 | 2 seasons, 12 episodes | 23–29 min. | Renewed [82] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Devilman Crybaby | Supernatural horror | January 5, 2018 | 10 episodes | 24–28 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | B: The Beginning | Suspense | March 2, 2018 | 1 season, 12 episodes | 25–27 min. | Renewed [83] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | A.I.C.O. -Incarnation- | Science fiction | March 9, 2018 | 1 season, 12 episodes | 25–29 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Sword Gai: The Animation | Supernatural | March 23, 2018 | 2 seasons, 24 episodes | 22–23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Lost Song | Musical fantasy | March 31, 2018 | 1 season, 12 episodes | 23–24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Aggretsuko | Comedy | April 20, 2018 | 2 seasons, 20 episodes | 15–20 min. | Renewed [84] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Baki | Martial arts | June 25, 2018 | 2 parts, 26 episodes | 23–24 min. | Renewed [85] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Hero Mask | Crime | December 3, 2018 | 2 seasons, 24 episodes | 25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Ultraman | Science fiction | April 1, 2019 | 1 season, 13 episodes | 23–25 min. | Renewed [86] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Rilakkuma and Kaoru | Stop motion slice of life | April 19, 2019 | 1 season, 13 episodes | 11–14 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | 7SEEDS | Science fiction | June 28, 2019 | 1 season, 12 episodes | 24–26 min. | Renewed [87] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Knights of the Zodiac: Saint Seiya | Action | July 19, 2019 | 1 season, 6 episodes | 23 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Kengan Ashura | Martial arts | July 31, 2019 | 2 parts, 24 episodes | 24–27 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Cannon Busters | Fantasy | August 15, 2019 | 1 season, 12 episodes | 24–27 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Seis Manos | Action / Supernatural | October 3, 2019 | 1 season, 8 episodes | 25–28 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Levius | Sci-fi action | November 28, 2019 | 1 season, 12 episodes | 24–27 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | The Disastrous Life of Saiki K.: Reawakened [88] | Supernatural comedy | December 30, 2019 [89] | 6 episodes | TBA | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Ever After High | NaN | May 30, 2013 | 5 seasons, 17 episodes | 23–47 min. | Ended [90] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Turbo Fast | NaN | December 24, 2013 | 3 seasons, 52 episodes | 23 min. | Ended [91] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | VeggieTales in the House | NaN | November 26, 2014 | 4 seasons, 52 episodes | 23 min. | Ended [92] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | All Hail King Julien | NaN | December 19, 2014 | 5 seasons, 65 episodes | 23 min. | Ended [93] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | The Adventures of Puss in Boots | NaN | January 16, 2015 | 6 seasons, 78 episodes | 22–24 min. | Ended [94] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Dragons: Race to the Edge | NaN | June 26, 2015 | 6 seasons, 78 episodes | 22–23 min. | Ended [95] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Dinotrux | NaN | August 14, 2015 | 5 seasons, 52 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | The Mr. Peabody & Sherman Show | NaN | October 9, 2015 | 4 seasons, 52 episodes | 23 min. | Ended [96] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Popples | NaN | October 30, 2015 | 3 seasons, 26 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Care Bears and Cousins | NaN | November 6, 2015 | 2 seasons, 12 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Dawn of the Croods | NaN | December 24, 2015 | 4 seasons, 52 episodes | 23 min. | Ended [97] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Lego Bionicle: The Journey to One | NaN | March 4, 2016 | 2 seasons, 5 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Lego Friends: The Power of Friendship | NaN | March 4, 2016 | 2 seasons, 4 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Kong: King of the Apes | NaN | April 15, 2016 | 2 seasons, 23 episodes | 22–85 min. | Ended [98] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Voltron: Legendary Defender | NaN | June 10, 2016 | 8 seasons, 78 episodes | 23–68 min. | Ended [99] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Justin Time GO! | NaN | June 24, 2016 | 1 season, 13 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Word Party | NaN | July 8, 2016 | 3 seasons, 40 episodes | 13 min. | Renewed [100] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Home: Adventures with Tip & Oh | NaN | July 29, 2016 | 4 seasons, 52 episodes | 22–24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Ask the StoryBots | NaN | August 12, 2016 | 3 seasons, 22 episodes | 20–29 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Kulipari: An Army of Frogs | NaN | September 2, 2016 | 1 season, 13 episodes | 22–23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Skylanders Academy | NaN | October 28, 2016 | 3 seasons, 38 episodes | 24–44 min. | Ended [101] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | World of Winx | NaN | November 4, 2016 | 2 seasons, 26 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Luna Petunia | NaN | December 9, 2016 | 3 seasons, 22 episodes | 23–24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Trollhunters: Tales of Arcadia | NaN | December 23, 2016 | 3 parts, 52 episodes | 23 min. | Ended [102] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Edgar Rice Burroughs' Tarzan and Jane | NaN | January 6, 2017 | 2 seasons, 13 episodes | 22 min. | Ended [98] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | We're Lalaloopsy | NaN | January 10, 2017 | 1 season, 13 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | VeggieTales in the City | NaN | February 24, 2017 | 2 seasons, 26 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Legend Quest | NaN | February 24, 2017 | 1 season, 13 episodes | 22 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Buddy Thunderstruck | NaN | March 10, 2017 | 1 season, 12 episodes | 13–24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Spirit Riding Free | NaN | May 5, 2017 | 8 seasons, 52 episodes | 23 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | All Hail King Julien: Exiled | NaN | May 12, 2017 | 1 season, 13 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | True and the Rainbow Kingdom | NaN | August 11, 2017 | 3 seasons, 19 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Lego Elves: Secrets of Elvendale | NaN | September 1, 2017 | 1 season, 8 episodes | 24–25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | The Magic School Bus Rides Again | NaN | September 29, 2017 | 2 seasons, 26 episodes | 25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Super Monsters | NaN | October 13, 2017 | 3 seasons, 22 episodes | 22–24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Dinotrux Supercharged | NaN | November 10, 2017 | 3 seasons, 26 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Stretch Armstrong and the Flex Fighters | NaN | November 17, 2017 | 2 seasons, 23 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Trolls: The Beat Goes On! | NaN | January 19, 2018 | 8 seasons, 52 episodes | 24–25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Llama Llama | NaN | January 26, 2018 | 2 seasons, 25 episodes | 24–25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Luna Petunia: Return to Amazia | NaN | February 2, 2018 | 2 seasons, 11 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | The Boss Baby: Back in Business | NaN | April 6, 2018 | 2 seasons, 26 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Spy Kids: Mission Critical | NaN | April 20, 2018 | 2 seasons, 20 episodes | 23–25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | The Hollow | NaN | June 8, 2018 | 1 season, 10 episodes | 24 min. | Renewed [103] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | True: Magical Friends | NaN | June 15, 2018 | 1 season, 5 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | True: Wonderful Wishes | NaN | June 15, 2018 | 1 season, 5 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Harvey Girls Forever! | NaN | June 29, 2018 | 3 seasons, 39 episodes | 24 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | The Epic Tales of Captain Underpants | NaN | July 13, 2018 | 3 seasons, 39 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | Cupcake & Dino: General Services | NaN | July 27, 2018 | 2 seasons, 26 episodes | 22–23 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | The Dragon Prince | NaN | September 14, 2018 | 3 seasons, 27 episodes | 25–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Hilda | NaN | September 21, 2018 | 1 season, 13 episodes | 24 min. | Renewed [104] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Larva Island | NaN | October 19, 2018 | 2 seasons, 26 episodes | 8 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | She-Ra and the Princesses of Power | NaN | November 13, 2018 | 4 seasons, 39 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
52 | Kulipari: Dream Walker | NaN | November 20, 2018 | 1 season, 10 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | Motown Magic | NaN | November 20, 2018 | 2 seasons, 51 episodes | 15–26 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
54 | 3Below: Tales of Arcadia | NaN | December 21, 2018 | 2 parts, 26 episodes | 23–24 min. | Ended [105] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
55 | Pinky Malinky | NaN | January 1, 2019 | 3 parts, 59 episodes | 12–23 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
56 | Carmen Sandiego | NaN | January 18, 2019 | 2 seasons, 19 episodes | 23–33 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
57 | YooHoo to the Rescue | NaN | March 15, 2019 | 2 seasons, 39 episodes | 13–14 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
58 | Charlie's Colorforms City | NaN | March 22, 2019 | 1 season, 13 episodes | 25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
59 | Mighty Little Bheem | NaN | April 12, 2019 | 2 seasons, 49 episodes | 6–7 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
60 | Super Monsters Monster Pets | NaN | June 7, 2019 | 1 season, 5 episodes | 9–12 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
61 | Twelve Forever | NaN | July 29, 2019 | 1 season, 25 episodes | 14–24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
62 | Spirit Riding Free: Pony Tales | NaN | August 9, 2019 | 2 seasons, 10 episodes | 4–24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
63 | Archibald's Next Big Thing | NaN | September 6, 2019 | 1 season, 13 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
64 | The Last Kids on Earth | NaN | September 17, 2019 | 1 season, 1 episode | 68 min. | Renewed [106] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
65 | Dragons: Rescue Riders | NaN | September 27, 2019 | 1 season, 14 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
66 | Legend Quest: Masters of Myth | NaN | October 5, 2019 | 1 season, 13 episodes | 24 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
67 | Mighty Little Bheem : Diwali | NaN | October 18, 2019 | 1 season, 3 episodes | 6–7 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
68 | Hello Ninja | NaN | November 1, 2019 | 1 season, 10 episodes | 11–12 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
69 | Green Eggs and Ham | NaN | November 8, 2019 | 1 season, 13 episodes | 27–28 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
70 | Dino Girl Gauko | NaN | November 22, 2019 | 1 season, 20 episodes | 9 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
72 | Fast & Furious: Spy Racers | NaN | December 26, 2019 [107] | TBA | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
73 | Go! Go! Cory Carson [108] | NaN | January 4, 2020 [109] | TBA | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Dance & Sing with True | NaN | May 18, 2018 | 1 season, 11 episodes | 2 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Super Monsters Monster Party | NaN | September 14, 2018 | 1 season, 4 episodes | 2 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | True Tunes | NaN | July 12, 2019 | 1 collection, 8 episodes | 3 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Richie Rich | Sitcom | February 20, 2015 | 2 seasons, 21 episodes | 21–23 min. | Ended [110] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Project Mc 2 | Comedy | August 7, 2015 | 6 parts, 26 episodes | 22–34 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Julie's Greenroom | Educational | March 17, 2017 | 1 season, 13 episodes | 27–34 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Free Rein | Teen drama | June 22, 2017 | 3 seasons, 30 episodes | 25–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Greenhouse Academy | Science fiction / teen drama | September 8, 2017 | 3 seasons, 32 episodes | 21–28 min. | Renewed [111] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Alexa & Katie | Sitcom | March 23, 2018 | 2 seasons, 23 episodes | 22–30 min. | Season 3 due to premiere on December 30, 2019 ... | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | The Who Was? Show | Educational | May 11, 2018 | 1 season, 13 episodes | 23–27 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | The Ponysitters Club | Drama | August 10, 2018 | 2 seasons, 20 episodes | 23 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Best.Worst.Weekend.Ever. | Comedy | October 19, 2018 | 8 episodes | 22–28 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Brainchild | Educational | November 2, 2018 | 1 season, 13 episodes | 22–25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Prince of Peoria | Sitcom | November 16, 2018 | 2 parts, 16 episodes | 24–28 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | No Good Nick | Sitcom | April 15, 2019 | 2 parts, 20 episodes | 26–32 min. | Ended [113] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Malibu Rescue: The Series | Comedy | June 3, 2019 | 1 season, 8 episodes | 22–26 min. | Renewed [114] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Team Kaylie | Sitcom | September 23, 2019 | 2 parts, 11 episodes | 24-30 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Club de Cuervos | Comedy-drama | August 7, 2015 | 4 seasons, 45 episodes | 36–94 min. | Ended [115] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Marseille | Political drama | May 5, 2016 | 2 seasons, 16 episodes | 35–53 min. | Ended [116] | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Estocolmo | Crime drama | November 11, 2016 | 1 season, 13 episodes | 37–49 min. | Ended | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | 3% | Science fiction | November 25, 2016 | 3 seasons, 26 episodes | 38–51 min. | Renewed for final season [117] | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Ingobernable | Political drama | March 24, 2017 | 2 seasons, 27 episodes | 32–50 min. | Ended | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Cable Girls | Period drama | April 28, 2017 | 4 seasons, 32 episodes | 38–63 min. | First part of final season due to premiere on ... | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | My Only Love Song | Comedy | June 9, 2017 | 1 season, 20 episodes | 27–30 min. | Ended | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Suburra: Blood on Rome | Crime drama | October 6, 2017 | 2 seasons, 18 episodes | 42–62 min. | Renewed for final season [119] [120] | Italian | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Blazing Transfer Students | Action comedy | November 10, 2017 | 1 season, 8 episodes | 23–28 min. | Ended | Japanese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Dark | Science fiction | December 1, 2017 | 2 seasons, 18 episodes | 45–61 min. | Renewed for final season [121] | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Edha | Drama | March 16, 2018 | 1 season, 10 episodes | 38–43 min. | Ended | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | The Mechanism | Crime drama | March 23, 2018 | 2 seasons, 16 episodes | 39–55 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | The Rain | Post-apocalyptic drama | May 4, 2018 | 2 seasons, 14 episodes | 36–49 min. | Renewed for final season [122] | Danish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Club de Cuervos Presents: The Ballad of Hugo S... | Comedy | June 17, 2018 | 1 season, 6 episodes | 29–37 min. | Ended | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Sacred Games | Drama | July 6, 2018 | 2 seasons, 16 episodes | 43–58 min. | Pending | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Samantha! | Comedy | July 6, 2018 | 2 seasons, 14 episodes | 25–37 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Jimmy: The True Story of a True Idiot | Comedy | July 20, 2018 | 1 season, 9 episodes | 39–64 min. | Ended | Japanese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Switched | Science fiction | August 1, 2018 | 1 season, 6 episodes | 33–44 min. | Ended | Japanese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | The House of Flowers | Comedy | August 10, 2018 | 2 seasons, 22 episodes | 27–40 min. | Renewed [123] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Ghoul | Horror | August 24, 2018 | 3 episodes | 44–50 min. | Miniseries | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | YG Future Strategy Office | Comedy | October 5, 2018 | 1 season, 8 episodes | 20–29 min. | Ended | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Élite | Crime teen drama | October 5, 2018 | 2 seasons, 16 episodes | 47–56 min. | Renewed [124] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Wild District | Crime drama | October 19, 2018 | 2 seasons, 20 episodes | 40–50 min. | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | 1983 | Spy thriller | November 30, 2018 | 1 season, 8 episodes | 50–63 min. | Renewed [125] | Polish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Baby | Drama | November 30, 2018 | 2 seasons, 12 episodes | 40–51 min. | Renewed for final season [126] | Italian | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Dogs of Berlin | Drama | December 7, 2018 | 1 season, 10 episodes | 51–62 min. | Pending | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | The Hook Up Plan | Romantic comedy | December 7, 2018 | 2 seasons, 14 episodes | 22–29 min. | Pending | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | The Protector | Supernatural mystery | December 14, 2018 | 2 seasons, 18 episodes | 31–51 min. | Renewed for seasons 3 and 4 [127] | Turkish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Diablero | Horror fantasy thriller | December 21, 2018 | 1 season, 8 episodes | 36–44 min. | Renewed [128] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Selection Day | Drama | December 28, 2018 | 1 season, 12 episodes | 19–28 min. | Pending | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Kingdom | Fantasy | January 25, 2019 | 1 season, 6 episodes | 44–57 min. | Renewed [129] | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | Always a Witch | Supernatural drama | February 1, 2019 | 1 season, 10 episodes | 39–43 min. | Renewed [130] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Go! Live Your Way | Musical | February 22, 2019 | 2 seasons, 30 episodes | 36–44 min. | Renewed [131] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | Delhi Crime | Police procedural | March 22, 2019 | 1 season, 7 episodes | 45–64 min. | Renewed [132] | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Most Beautiful Thing | Period drama | March 22, 2019 | 1 season, 7 episodes | 35–56 min. | Renewed [133] | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Crime Diaries: The Candidate | Crime anthology series | March 22, 2019 | 8 episodes | 32–48 min. | Miniseries | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Osmosis | Science fiction / drama | March 29, 2019 | 1 season, 8 episodes | 41–45 min. | Pending | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Quicksand | Crime drama | April 5, 2019 | 1 season, 6 episodes | 41–49 min. | Ended | Swedish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Persona | Drama anthology series | April 11, 2019 | 1 season, 4 episodes | 19–27 min. | Renewed [134] | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | My First First Love | Romantic comedy | April 18, 2019 | 2 seasons, 16 episodes | 42–56 min. | Ended | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Crime Diaries: Night Out | Crime anthology series | May 3, 2019 | 8 episodes | 38–48 min. | Miniseries | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | High Seas | Mystery period drama | May 24, 2019 | 2 seasons, 16 episodes | 38–49 min. | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | How to Sell Drugs Online (Fast) | Dark comedy | May 31, 2019 | 1 season, 6 episodes | 24–32 min. | Renewed [135] | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Jinn | Fantasy adventure | June 13, 2019 | 1 season, 5 episodes | 25–47 min. | Pending | Arabic | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | Yankee | Drama | June 14, 2019 | 1 season, 25 episodes | 36–44 min. | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Leila | Drama | June 14, 2019 | 1 season, 6 episodes | 40–54 min. | Pending | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Family Business | Comedy | June 28, 2019 | 1 season, 6 episodes | 28–31 min. | Renewed [136] | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | The Chosen One | Thriller drama | June 28, 2019 | 2 seasons, 12 episodes | 40–54 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | Typewriter | Horror | July 19, 2019 | 1 season, 5 episodes | 43–52 min. | Pending | Hindi | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Dollar | Thriller | August 8, 2019 | 1 season, 15 episodes | 39–45 min. | Pending | Arabic | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | The Naked Director | Period drama comedy | August 8, 2019 | 1 season, 8 episodes | 39–54 min. | Renewed [137] | Japanese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Sintonia | Drama | August 9, 2019 | 1 season, 6 episodes | 37–47 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
52 | Green Frontier | Crime drama / thriller | August 16, 2019 | 8 episodes | 30–48 min. | Miniseries | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | Love Alarm | Romantic comedy | August 22, 2019 | 1 season, 8 episodes | 42–56 min. | Renewed [138] | Korean | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
54 | Marianne | Horror drama | September 13, 2019 | 1 season, 8 episodes | 37–52 min. | Pending | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
55 | Monarca | Family drama | September 13, 2019 | 1 season, 10 episodes | 40–49 min. | Renewed [139] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
56 | Criminal: France | Police procedural anthology series | September 20, 2019 | 1 season, 3 episodes | 38–43 min. | Pending | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
57 | Criminal: Germany | Police procedural anthology series | September 20, 2019 | 1 season, 3 episodes | 41–46 min. | Pending | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
58 | Criminal: Spain | Police procedural anthology series | September 20, 2019 | 1 season, 3 episodes | 39–41 min. | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
59 | Bard of Blood | Espionage thriller | September 27, 2019 | 1 season, 7 episodes | 41–50 min. | Pending | Hindi/Urdu | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
60 | Skylines | Drama | September 27, 2019 | 1 season, 6 episodes | 47–66 min. | Ended [140] | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
61 | Brotherhood | Crime drama | October 25, 2019 | 1 season, 8 episodes | 47–57 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
62 | Nowhere Man | Thriller | October 31, 2019 | 1 season, 8 episodes | 33–67 min. | Pending | Mandarin | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
63 | Hache | Thriller | November 1, 2019 | 1 season, 8 episodes | 40–52 min. | Renewed [141] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
64 | We Are the Wave | Drama | November 1, 2019 | 1 season, 6 episodes | 45–53 min. | Pending | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
65 | The Stranded | Fantasy drama | November 14, 2019 | 1 season, 7 episodes | 46–53 min. | Pending | Thai | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
66 | The Club | Comedy | November 15, 2019 | 1 season, 25 episodes | 26–37 min. | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
67 | Holiday Secrets | Drama | November 20, 2019 | 3 episodes | 34–42 min. | Miniseries | German | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
68 | Mortel | Supernatural drama | November 21, 2019 | 1 season, 6 episodes | 46–54 min. | Pending | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
69 | Nobody's Looking | Comedy drama | November 22, 2019 | 1 season, 8 episodes | 19–30 min. | Pending | Portuguese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
70 | Home for Christmas | Comedy drama | December 5, 2019 | 1 season, 6 episodes | 27–32 min. | Pending | Norwegian | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
71 | Three Days of Christmas | Drama | December 6, 2019 | 3 episodes | 54–67 min. | Miniseries [142] | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
72 | Triad Princess | Crime drama / romance | December 6, 2019 | 1 season, 6 episodes | 35–47 min. | Pending | Mandarin | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
74 | The Gift [143] | Supernatural drama | December 27, 2019 [144] | TBA | TBA | Pending | Turkish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
75 | The Neighbor [145] [146] | Comedy | December 31, 2019 [147] | TBA | TBA | Pending | Spanish | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
76 | Ares [148] | Supernatural drama | January 17, 2020 [149] | 1 season, 8 episodes | TBA | Pending | Dutch | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
77 | Ragnarok | Coming of age drama | January 31, 2020 [150] | TBA | TBA | Pending | Norwegian | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
78 | Followers [151] | Drama | February 27, 2020 [152] | TBA | TBA | Pending | Japanese | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Chef's Table | Culinary art | April 26, 2015 | 6 volumes, 30 episodes | 42–58 min. | Renewed [153] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Making a Murderer | Crime drama | December 18, 2015 | 2 parts, 20 episodes | 47–77 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Chelsea Does | Comedy | January 23, 2016 | 1 season, 4 episodes | 62–74 min. | Ended [154] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Cooked | Culinary art | February 19, 2016 | 4 episodes | 50–58 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Last Chance U | Sport | July 29, 2016 | 4 parts, 30 episodes | 52–76 min. | Renewed [155] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Fearless | Sport | August 19, 2016 | 6 episodes | 50–58 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Chef's Table: France | Culinary art | September 2, 2016 | 1 season, 4 episodes | 41–54 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Roman Empire | Historical drama | November 11, 2016 | 3 seasons, 15 episodes | 38–48 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Captive | Documentary | December 9, 2016 | 8 episodes | 59–73 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Abstract: The Art of Design | Biography | February 10, 2017 | 2 seasons, 14 episodes | 41–48 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | QB1: Beyond the Lights | Sport | February 13, 2017 | 3 seasons, 30 episodes | 28–41 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | 13 Reasons Why: Beyond the Reasons | Interview | March 31, 2017 | 3 seasons, 3 episodes | 17–67 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Five Came Back | Historical drama | March 31, 2017 | 3 episodes | 59–69 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Hot Girls Wanted: Turned On | Documentary | April 21, 2017 | 6 episodes | 41–58 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | The Keepers | Crime drama | May 19, 2017 | 7 episodes | 56–66 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Daughters of Destiny | Documentary | July 28, 2017 | 4 episodes | 56–65 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Fire Chasers | Documentary | September 8, 2017 | 4 episodes | 50–58 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | The Confession Tapes | True crime | September 8, 2017 | 2 seasons, 11 episodes | 41–54 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Jack Whitehall: Travels with My Father | Travel documentary | September 22, 2017 | 3 seasons, 13 episodes | 28–61 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | The Day I Met El Chapo | Biography | October 20, 2017 | 1 season, 3 episodes | 48–61 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Shot in the Dark | True crime | November 17, 2017 | 1 season, 8 episodes | 34–41 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Wormwood | Psychological drama | December 15, 2017 | 6 chapters | 41–48 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | 72 Dangerous Animals: Latin America | Nature | December 22, 2017 | 1 season, 12 episodes | 41–46 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Dope | Documentary | December 22, 2017 | 3 seasons, 12 episodes | 36–48 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | The Toys That Made Us | Documentary | December 22, 2017 | 3 seasons, 12 episodes | 43–51 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Rotten | Documentary | January 5, 2018 | 2 seasons, 12 episodes | 48–63 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Somebody Feed Phil | Travel documentary | January 12, 2018 | 2 seasons, 12 episodes | 55–63 min. | Renewed [153] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Drug Lords | Documentary | January 19, 2018 | 2 seasons, 8 episodes | 42–47 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Dirty Money | Documentary | January 26, 2018 | 1 season, 6 episodes | 50–77 min. | Renewed [156] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Coach Snoop | Sport | February 2, 2018 | 1 season, 8 episodes | 28–30 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | First Team: Juventus | Sport | February 16, 2018 | 2 parts, 6 episodes | 37–42 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | Ugly Delicious | Travel documentary | February 23, 2018 | 1 season, 8 episodes | 46–55 min. | Renewed [157] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Flint Town | Documentary | March 2, 2018 | 8 episodes | 35–48 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | Girls Incarcerated | Documentary | March 2, 2018 | 2 seasons, 16 episodes | 37–47 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Wild Wild Country | Documentary | March 16, 2018 | 6 episodes | 64–72 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Rapture | Documentary | March 30, 2018 | 1 season, 8 episodes | 52–63 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Bobby Kennedy for President | History | April 27, 2018 | 4 chapters | 59–66 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Evil Genius: The True Story of America's Most ... | True crime | May 11, 2018 | 4 episodes | 46–54 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Explained | Docu-series | May 23, 2018 | 2 seasons, 30 episodes | 14–26 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | November 13: Attack on Paris | Documentary | June 1, 2018 | 3 episodes | 47–59 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Dark Tourist | Travel documentary | July 20, 2018 | 1 season, 8 episodes | 39–42 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Marching Orders | Docu-series | August 3, 2018 | 1 season, 12 episodes | 9–14 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | 72 Dangerous Animals: Asia | Nature | August 10, 2018 | 1 season, 12 episodes | 44–48 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Afflicted | Docu-series | August 10, 2018 | 1 season, 7 episodes | 37–46 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | Follow This | Docu-series | August 23, 2018 | 3 parts, 20 episodes | 15–20 min. | Ended [158] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | First and Last | Docu-series | September 7, 2018 | 1 season, 6 episodes | 38–43 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Boca Juniors Confidential | Docu-series | September 14, 2018 | 1 season, 4 episodes | 40–44 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | Salt, Fat, Acid, Heat | Travel documentary | October 11, 2018 | 4 episodes | 40–48 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | FightWorld | Travel documentary | October 12, 2018 | 1 season, 5 episodes | 41–44 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Terrorism Close Calls | Docu-series | October 26, 2018 | 1 season, 10 episodes | 47–49 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Medal of Honor | Docu-series | November 9, 2018 | 1 season, 8 episodes | 46–61 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Dogs | Docu-series | November 16, 2018 | 1 season, 6 episodes | 50–53 min. | Renewed [159] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
52 | Vai Anitta | Docu-series | November 16, 2018 | 1 season, 6 episodes | 25–35 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | Inside the Real Narcos | Docu-series | December 14, 2018 | 1 season, 3 episodes | 45–46 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
54 | Sunderland 'Til I Die | Sport | December 14, 2018 | 1 season, 8 episodes | 37–46 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
55 | The Innocent Man | True crime | December 14, 2018 | 6 episodes | 42–52 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
56 | 7 Days Out | Docu-series | December 21, 2018 | 1 season, 6 episodes | 47–48 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
57 | Murder Mountain | True crime | December 28, 2018 | 1 season, 6 episodes | 43 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
58 | Trigger Warning with Killer Mike | Docu-series | January 18, 2019 | 1 season, 6 episodes | 22–27 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
59 | Conversations with a Killer: The Ted Bundy Tapes | True crime | January 24, 2019 | 4 episodes | 51–74 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
60 | Examination of Conscience | True crime | January 25, 2019 | 1 season, 3 episodes | 51–54 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
61 | Larry Charles' Dangerous World of Comedy | Docu-series | February 15, 2019 | 1 season, 4 episodes | 51–66 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
62 | Losers | Sport | March 1, 2019 | 1 collection, 8 episodes | 25–37 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
63 | Cricket Fever: Mumbai Indians | Sport | March 1, 2019 | 1 season, 8 episodes | 33–44 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
64 | Formula 1: Drive to Survive | Sport | March 8, 2019 | 1 season, 10 episodes | 27–41 min. | Renewed [160] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
65 | The Disappearance of Madeleine McCann | True crime | March 15, 2019 | 8 episodes | 43–65 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
66 | Our Planet | Nature documentary | April 5, 2019 | 8 episodes | 49–54 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
67 | Street Food | Culinary art | April 26, 2019 | 1 season, 9 episodes | 30–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
68 | 1994 | Docu-series | May 17, 2019 | 5 episodes | 44–52 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
69 | Killer Ratings | Docu-series | May 31, 2019 | 1 season, 7 episodes | 42–58 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
70 | The Chef Show | Culinary art | June 7, 2019 | 2 volumes, 14 episodes | 26–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
71 | The Alcà sser Murders | True crime | June 14, 2019 | 1 season, 5 episodes | 53–66 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
72 | Exhibit A | True crime | June 28, 2019 | 1 season, 4 episodes | 29–41 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
73 | The Last Czars | Docu-series | July 3, 2019 | 1 season, 6 episodes | 42–50 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
74 | Taco Chronicles | Culinary art | July 12, 2019 | 1 season, 6 episodes | 26–31 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
75 | The Family | Docu-series | August 9, 2019 | 5 episodes | 47–54 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
76 | Happy Jail | Docu-series | August 14, 2019 | 5 episodes | 29–37 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
77 | Diagnosis | Docu-series | August 16, 2019 | 1 season, 7 episodes | 43–49 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
78 | The Mind, Explained | Docu-series | September 12, 2019 | 5 episodes | 19–22 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
79 | Inside Bill's Brain: Decoding Bill Gates | Docu-series | September 20, 2019 | 3 episodes | 51–56 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
80 | Living Undocumented | Docu-series | October 2, 2019 | 1 season, 6 episodes | 38–46 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
81 | Unnatural Selection | Docu-series | October 18, 2019 | 4 episodes | 62–70 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
82 | Breakfast, Lunch & Dinner | Docu-series | October 23, 2019 | 1 season, 4 episodes | 43-44 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
83 | The Devil Next Door | Docu-series | November 4, 2019 | 5 episodes | 43-52 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
84 | Maradona in Mexico | Sport | November 13, 2019 | 7 episodes | 26-39 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
85 | Who Killed Little Gregory? | Docu-series | November 20, 2019 | 5 episodes | 53-69 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
86 | Narcoworld: Dope Stories | Docu-series | November 22, 2019 | 1 season, 4 episodes | 39–48 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
87 | Broken | Docu-series | November 27, 2019 | 1 season, 4 episodes | 58–61 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
88 | The Movies That Made Us | Docu-series | November 29, 2019 | 1 season, 4 episodes | 45–52 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
89 | The Confession Killer | True crime | December 6, 2019 | 5 episodes | 45–50 min. | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
91 | Don’t F**k With Cats: Hunting An Internet Kill... | Docu-series | December 18, 2019 | TBA | TBA | Miniseries | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
92 | Kevin Hart: Don't F**k This Up [162] | Docu-series | December 27, 2019 | TBA | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | White Rabbit Project | Science investigation | December 9, 2016 | 1 season, 10 episodes | 45–48 min. | Ended [163] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Chasing Cameron | Celebrity | December 27, 2016 | 1 season, 10 episodes | 26–33 min. | Ended [164] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Ultimate Beastmaster | Competition | February 24, 2017 | 3 seasons, 29 episodes | 41–84 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Queer Eye | Makeover reality | February 7, 2018 | 4 seasons, 32 episodes | 43–52 min. | Renewed [165] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Nailed It! | Competition | March 9, 2018 | 3 seasons, 19 episodes | 12–35 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Fastest Car | Motoring television series | April 6, 2018 | 2 seasons, 15 episodes | 41–52 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Cooking on High | Cooking show | June 22, 2018 | 1 season, 12 episodes | 13–15 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Sugar Rush | Baking competition | July 13, 2018 | 2 seasons, 14 episodes | 47–55 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Amazing Interiors | Reality | July 20, 2018 | 1 season, 12 episodes | 21–28 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Magic for Humans | Reality | August 17, 2018 | 2 seasons, 12 episodes | 22–25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Stay Here | Reality | August 17, 2018 | 1 season, 8 episodes | 31–33 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Car Masters: Rust to Riches | Motoring television series | September 14, 2018 | 1 season, 8 episodes | 31–40 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Battlefish | Reality | September 21, 2018 | 1 season, 8 episodes | 38–46 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Made in Mexico | Spanish language reality series | September 28, 2018 | 1 season, 8 episodes | 45–54 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Dancing Queen | Celebrity | October 5, 2018 | 1 season, 8 episodes | 38–46 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | The Curious Creations of Christine McConnell | Cooking show | October 12, 2018 | 1 season, 6 episodes | 24–29 min. | Ended [166] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Haunted | Horror | October 19, 2018 | 2 seasond, 12 episodes | 20–31 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Westside | Music | November 9, 2018 | 1 season, 8 episodes | 46–58 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | The Final Table | Culinary competition | November 20, 2018 | 1 season, 10 episodes | 48–60 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Death by Magic | Reality | November 30, 2018 | 1 season, 8 episodes | 31–39 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Nailed It! Holiday | Reality competition | December 7, 2018 | 2 seasons, 13 episodes | 32–35 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Tidying Up with Marie Kondo | Reality show | January 1, 2019 | 1 season, 8 episodes | 35–47 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Nailed It! Mexico | Reality | February 8, 2019 | 1 season, 6 episodes | 32–34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Dating Around | Reality | February 14, 2019 | 1 season, 6 episodes | 24–30 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Selling Sunset | Reality | March 22, 2019 | 1 season, 8 episodes | 28–42 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | You vs. Wild | Interactive Reality | April 10, 2019 | 1 season, 8 episodes | 14–26 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Flinch | Reality television / game show | May 3, 2019 | 1 season, 10 episodes | 20–25 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Jailbirds | Reality television | May 10, 2019 | 1 season, 10 episodes | 37–47 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Awake: The Million Dollar Game | Reality television | June 14, 2019 | 1 season, 8 episodes | 35–41 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Extreme Engagement | Reality television | July 12, 2019 | 1 season, 8 episodes | 32–40 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Basketball or Nothing | Reality competition | August 2, 2019 | 1 season, 6 episodes | 31–37 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | Hyperdrive | Reality competition | August 21, 2019 | 1 season, 10 episodes | 43-61 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Styling Hollywood | Reality television | August 30, 2019 | 1 season, 8 episodes | 33–40 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | Rhythm + Flow | Music competition | October 9, 2019 | 1 season, 10 episodes | 51-69 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Nailed It! France | French language reality competition | October 25, 2019 | 1 season, 6 episodes | 34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Nailed It! Spain | Spanish language reality competition | October 25, 2019 | 1 season, 6 episodes | 31-34 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Prank Encounters | Prank show | October 25, 2019 | 1 season, 8 episodes | 21-26 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Queer Eye: We're in Japan! | Reality television | November 1, 2019 | 1 season, 4 episodes | 49-51 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | I'm with the Band: Nasty Cherry | Reality television | November 15, 2019 | 1 season, 6 episodes | 25-41 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | No Time for Shame | Spanish language reality television | November 19, 2019 | 1 season, 6 episodes | 38-47 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Singapore Social | Reality | November 22, 2019 | 1 season, 8 episodes | 35-44 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Sugar Rush Christmas | Baking competition | November 29, 2019 | 1 season, 6 episodes | 48-50 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Nailed It! Germany [167] | German language reality competition | January 17, 2020 [168] | TBA | TBA | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Chelsea | Late-night | May 11, 2016 | 2 seasons, 120 episodes [b] | 27–64 min. | Ended [169] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Bill Nye Saves the World | Science | April 21, 2017 | 3 seasons, 25 episodes | 26–41 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Beyond Stranger Things | Aftershow | October 27, 2017 | 1 season, 7 episodes | 15–25 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | My Next Guest Needs No Introduction with David... | Interview | January 12, 2018 | 2 seasons, 13 episodes | 41–58 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | The Joel McHale Show with Joel McHale | Comedy | February 18, 2018 | 2 parts, 19 episodes | 22–28 min. | Ended [170] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | A Little Help with Carol Burnett | Variety show | May 4, 2018 | 1 season, 12 episodes | 21–29 min. | Ended | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Busted! | Korean language variety show | May 4, 2018 | 2 seasons, 20 episodes | 63–98 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | The Break with Michelle Wolf | Late-night | May 27, 2018 | 1 season, 10 episodes | 27 min. | Ended [170] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Norm Macdonald Has a Show | Talk show | September 14, 2018 | 1 season, 10 episodes | 26–35 min. | Ended [171] | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Patriot Act with Hasan Minhaj | Talk show | October 28, 2018 | 5 volumes, 30 episodes | 23–30 min. | Volume 5 ongoing | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | The Fix | Panel show | December 14, 2018 | 1 season, 10 episodes | 23–31 min. | Pending | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Lilyhammer | Comedy-drama | February 6, 2012 | 3 seasons, 24 episodes | 43–58 min. | Ended [172] | Norwegian/English | NRK / Norway | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Between | Science fiction / drama | May 21, 2015 | 2 seasons, 12 episodes | 44 min. | Ended | English | City / Canada [173] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | H 2 O: Mermaid Adventures | Animation | May 22, 2015 | 2 seasons, 26 episodes | 24 min. | Ended | English | ZDF / Germany & France Télévisions / Fra... | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Atelier | Coming of age drama | December 1, 2015 | 1 season, 13 episodes | 43–51 min. | Ended [176] | Japanese | Fuji Television / Japan [175] | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Degrassi: Next Class | Teen drama | January 15, 2016 | 4 seasons, 40 episodes | 24 min. | Ended [178] | English | Family Channel / Canada | All other markets except France and Australia ... | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Lost & Found Music Studios | Musical teen drama | April 1, 2016 | 2 seasons, 27 episodes | 27–29 min. | Ended | English | Family Channel / Canada | All other markets except UK and Ireland [179] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Good Morning Call | Slice of life drama | May 13, 2016 | 2 seasons, 27 episodes | 43–49 min. | Ended | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Hibana: Spark | Drama | June 2, 2016 | 1 season, 10 episodes | 46–60 min. | Ended | Japanese | Yoshimoto Kogyo / Japan [180] | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Beat Bugs | Animation | August 3, 2016 | 3 seasons, 52 episodes | 15–24 min. | Ended | English | 7TWO / Australia [181] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | The Cuba Libre Story | Documentary | December 8, 2016 | 1 season, 8 episodes | 51–53 min. | Ended | German | ZDF / Germany | Selected territories [182] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Bottersnikes and Gumbles | Animation | August 19, 2016 | 2 seasons, 52 episodes | 12 min. | Ended | English | 7TWO / Australia | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Kazoops! | Animation | September 2, 2016 | 3 seasons, 26 episodes | 19–21 min. | Ended | English | ABC / Australia | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Four Seasons in Havana | Crime drama | September 12, 2016 | 1 season, 4 episodes | 86–96 min. | Ended | Spanish | RTVE / Spain | US, Canada, and Latin America [183] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Paranoid | Thriller | November 17, 2016 | 1 season, 8 episodes | 42–45 min. | Ended [184] | English | ITV / United Kingdom | All other markets except Ireland | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Dirk Gently's Holistic Detective Agency | Comic science fiction | December 11, 2016 | 2 seasons, 18 episodes | 41–53 min. | Ended [185] | English | BBC America / United States | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Crazyhead | Comedy | December 16, 2016 | 1 season, 6 episodes | 42–45 min. | Ended [186] | English | E4 / United Kingdom | All other markets except Ireland | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Travelers | Science fiction / drama | December 23, 2016 | 2 seasons, 24 episodes | 44–50 min. | Ended [c] | English | Showcase / Canada [187] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Frontier | Historical drama | January 20, 2017 | 3 seasons, 18 episodes | 43–52 min. | Ended | English | Discovery / Canada [188] | All other markets [189] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Samurai Gourmet | Drama | March 17, 2017 | 1 season, 12 episodes | 16–24 min. | Ended [190] | Japanese | Kyodo Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Anne with an E | Historical drama | May 12, 2017 | 2 seasons, 17 episodes | 44–88 min. | Final season due to premiere on January 3, 202... | English | CBC / Canada | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | El Chapo | Drama | June 16, 2017 | 3 seasons, 34 episodes | 39–55 min. | Ended [193] | Spanish | Univision / United States | All other markets [192] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Kantaro: The Sweet Tooth Salaryman | Comedy | July 7, 2017 | 1 season, 12 episodes | 24 min. | Ended [194] | Japanese | TV Tokyo / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | The Worst Witch | Children's fantasy | July 21, 2017 | 3 seasons, 38 episodes | 28–59 min. | Pending | English | CBBC / United Kingdom & ZDF / Germany [... | Selected territories [196] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Million Yen Women | Drama | August 15, 2017 | 1 season, 12 episodes | 24 min. | Ended [197] | Japanese | TV Tokyo / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Alias Grace | Drama | November 3, 2017 | 6 episodes | 43–46 min. | Miniseries | English | CBC / Canada | All other markets [198] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Erased | Supernatural mystery | December 15, 2017 | 1 season, 12 episodes | 26–32 min. | Ended | Japanese | Kansai TV / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | The End of the F***ing World | Comedy | January 5, 2018 | 2 seasons, 16 episodes | 18–25 min. | Ended [199] | English | Channel 4 / United Kingdom | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Mob Psycho 100 | Supernatural drama | January 12, 2018 | 1 season, 12 episodes | 26 min. | Ended [200] | Japanese | TV Tokyo / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Damnation | Period drama | February 1, 2018 | 1 season, 10 episodes | 42–55 min. | Ended [201] | English | USA Network / United States | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Collateral | Thriller | March 9, 2018 | 4 episodes | 56–59 min. | Miniseries | English | BBC Two / United Kingdom | All other markets except Ireland | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Requiem | Supernatural thriller | March 23, 2018 | 1 season, 6 episodes | 57–58 min. | Ended | English | BBC One / United Kingdom | All other markets except Ireland | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | Troy: Fall of a City | Historical | April 6, 2018 | 1 season, 8 episodes | 57–58 min. | Ended | English | BBC One / United Kingdom [202] | All other markets except Ireland | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | The Letdown | Comedy | April 21, 2018 | 2 seasons, 13 episodes | 27–32 min. | Pending | English | ABC / Australia [203] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | The New Legends of Monkey | Fantasy adventure | April 27, 2018 | 1 season, 10 episodes | 26 min. | Ended | English | ABC / Australia & TVNZ / New Zealand | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Safe | Thriller | May 10, 2018 | 1 season, 8 episodes | 41–48 min. | Ended | English | C8 / France | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Kiss Me First | Drama | June 29, 2018 | 1 season, 6 episodes | 46–48 min. | Ended | English | Channel 4 / United Kingdom | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | I Am a Killer | Docu-series | August 3, 2018 | 1 season, 10 episodes | 50–53 min. | Renewed [205] | English | Crime + Investigation / United Kingdom [204] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Wanderlust | Drama | October 19, 2018 | 1 season, 6 episodes | 56–59 min. | Ended | English | BBC One / United Kingdom | All other markets excluding Ireland [206] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Robozuna | Animation | October 25, 2018 | 2 seasons, 20 episodes | 22–23 min. | Renewed | English | CITV / United Kingdom | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Pine Gap | Political thriller | December 7, 2018 | 1 season, 6 episodes | 54–59 min. | Ended | English | ABC / Australia | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Perfume | Thriller | December 21, 2018 | 1 season, 6 episodes | 53–67 min. | Pending | German | ZDFneo / Germany [207] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Watership Down | Animation / fantasy | December 23, 2018 | 4 episodes | 50–51 min. | Miniseries | English | BBC One / United Kingdom [208] | All other markets [209] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | Black Earth Rising | Thriller | January 25, 2019 | 8 episodes | 60 min. | Miniseries | English | BBC Two / United Kingdom | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Nightflyers | Science fiction | February 1, 2019 | 1 season, 10 episodes | 40–59 min. | Ended [210] | English | Syfy / United States | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | Northern Rescue | Drama | March 1, 2019 | 1 season, 10 episodes | 44–45 min. | Pending | English | CBC / Canada | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Traitors | Period drama | March 29, 2019 | 1 season, 6 episodes | 46–47 min. | Pending | English | Channel 4 / United Kingdom [211] | All other markets except Ireland [211] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Tijuana | Drama | April 5, 2019 | 1 season, 11 episodes | 35–45 min. | Pending | English | Univision / United States | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | Undercover | Crime drama | May 3, 2019 | 1 season, 10 episodes | 46–54 min. | Renewed [213] | Dutch | Eén / Belgium | Selected territories [212] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | Designated Survivor: 60 Days | Drama | July 1, 2019 | 1 season, 16 episodes | 64–83 min. | Pending | Korean | TVN / South Korea | Selected territories | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | The Spy | Drama | September 6, 2019 | 6 episodes | 47–62 min. | Miniseries | English | Canal+ / France | All other markets except France | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Interior Design Masters | Reality | October 18, 2019 | 1 season, 8 episodes | 42–48 min. | Pending | English | BBC Two / United Kingdom | Selected territories | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Drug Squad: Costa del Sol | Police procedural | October 25, 2019 | 1 season, 13 episodes | 60–69 min. | Pending | Spanish | Mediaset España / Spain | Selected territories | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | The Bonfire of Destiny | Historical drama | December 26, 2019 [215] | TBA | TBA | Pending | French | TF1 / France [214] | All other markets | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Terrace House: Boys & Girls in the City | Reality television | September 2, 2015 | 2 parts, 46 episodes | 24–38 min. | Ended [216] | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Terrace House: Aloha State | Reality television | November 1, 2016 | 4 parts, 36 episodes | 30–47 min. | Ended [217] | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Ainori Love Wagon: Asian Journey | Reality television | October 26, 2017 | 2 seasons, 44 episodes | 27–37 min. | Ended | Japanese | Fuji Television / Japan | Worldwide [218] | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Terrace House: Opening New Doors | Reality television | December 19, 2017 | 6 parts, 49 episodes | 32–44 min. | Ended | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Terrace House: Tokyo 2019–2020 | Reality television | May 14, 2019 | 2 parts, 24 episodes | 35–57 min. | Part 3 upcoming | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Ainori Love Wagon: African Journey | Reality television | September 5, 2019 | 1 season, 14 episodes | 25-29 min. | Season 1 ongoing | Japanese | Fuji Television / Japan | Worldwide | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Arrested Development (seasons 4–5 ) | Comedy | May 26, 2013 | 2 seasons, 38 episodes [d] | 22–23 min. | Ended | NaN | NaN | US, Canada, Latin America, Western Europe | Fox | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Star Wars: The Clone Wars ( season 6 ) | Animation sci-fi | March 7, 2014 | 1 season, 13 episodes | 22 min. | Ended [e] [219] [220] | NaN | NaN | Worldwide | Cartoon Network | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | The Killing ( season 4 ) | Crime drama | August 1, 2014 | 1 season, 6 episodes | 54–60 min. | Ended [221] | NaN | NaN | Worldwide except Japan | AMC | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Trailer Park Boys ( seasons 8–12 ) | Mockumentary | September 5, 2014 | 5 seasons, 50 episodes | 22–32 min. | Ended | NaN | NaN | Worldwide | Showcase | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Longmire ( seasons 4–6 ) | Crime drama | September 10, 2015 | 3 seasons, 30 episodes | 55–71 min. | Ended [223] | NaN | NaN | US, Canada, Australia, New Zealand [222] | A&E Network | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Midnight Diner (seasons 4–5) | Drama | October 21, 2016 | 2 seasons, 20 episodes | 23–26 min. | Pending | NaN | NaN | Worldwide | MBS & TBS | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Black Mirror ( series 3–5 ) | Science fiction anthology | October 21, 2016 | 3 series, 15 episodes | 52–89 min. | Pending | NaN | NaN | Worldwide | Channel 4 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Lovesick (series 2–3) | Comedy | November 17, 2016 | 2 series, 16 episodes | 25–28 min. | Ended | NaN | NaN | Worldwide | Channel 4 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | The Last Kingdom (series 2–3) | Period drama | May 5, 2017 | 2 series, 18 episodes | 52–59 min. | Renewed [226] | NaN | NaN | Selected territories (S2) [224] Worldwide (S... | BBC Two | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Real Rob (season 2) | Comedy | September 29, 2017 | 1 season, 8 episodes | 30–38 min. | Ended | NaN | NaN | Worldwide | Independent | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Glitch (series 2–3) | Paranormal-drama | November 28, 2017 | 2 series, 12 episodes | 52–57 min. | Ended [227] | NaN | NaN | Worldwide except Australia | ABC Australia | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | The Staircase (3 episodes) | Docu-series | June 8, 2018 | 1 season, 3 episodes | 46–53 min. | Ended | NaN | NaN | Worldwide | Canal+ | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Paquita Salas (seasons 2–3) | Mockumentary | June 29, 2018 | 2 seasons, 11 episodes | 23–38 min. | Pending | NaN | NaN | Worldwide | Flooxer | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Comedians in Cars Getting Coffee (seasons 10–11) | Comedy | July 6, 2018 | 2 seasons, 24 episodes | 12–41 min. | Pending | NaN | NaN | Worldwide [228] | Sony Crackle | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Inside the World’s Toughest Prisons (seasons ... | Docu-series | July 6, 2018 | 2 seasons, 8 episodes | 47–54 min. | Ended | NaN | NaN | Worldwide | Channel 5 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | MeatEater (seasons 7–8) | Docu-series | October 2, 2018 | 2 seasons, 24 episodes | 22–30 min. | Pending | NaN | NaN | Worldwide | Sportsman Channel | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Little Things (season 2–3) | Comedy | October 5, 2018 | 2 seasons, 16 episodes | 22–38 min. | Pending | NaN | NaN | Worldwide | Independent | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Hip-Hop Evolution (seasons 2–3) | Docu-series | October 19, 2018 | 2 seasons, 8 episodes | 38–52 min. | Pending | NaN | NaN | Worldwide | HBO Canada | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Travelers (season 3) | Science fiction /drama | December 14, 2018 | 1 season, 10 episodes | 43–50 min. | Ended [229] | NaN | NaN | Worldwide | Showcase | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Lucifer (season 4) | Fantasy / police procedural | May 8, 2019 | 1 season, 10 episodes | 48–55 min. | Renewed for final season [231] | NaN | NaN | Worldwide, except Germany [230] | Fox | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Slasher (season 3) | Horror | May 23, 2019 | 1 season, 8 episodes | 45–48 min. | Pending | NaN | NaN | Selected territories | Super Channel | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Designated Survivor ( season 3 ) | Political thriller | June 7, 2019 | 1 season, 10 episodes | 47–53 min. | Ended [81] | NaN | NaN | Worldwide [232] | ABC | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Armistead Maupin's Tales of the City (series 4) | Drama | June 7, 2019 | 10 episodes | 46–60 min. | Miniseries | NaN | NaN | Worldwide | Channel 4 , Showtime | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Money Heist (part 3) | Thriller | July 19, 2019 | 1 part, 8 episodes | 41–57 min. | Part 4 due to premiere on April 3, 2020 [233]... | NaN | NaN | Worldwide | Antena 3 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Top Boy (series 3) | Crime drama | September 13, 2019 | 1 series, 10 episodes | 44–66 min. | Renewed [235] | NaN | NaN | Worldwide | Channel 4 | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | You (season 2) [236] | Thriller | December 26, 2019 [237] | 1 season, 10 episodes | TBA | Pending | NaN | NaN | Worldwide | Lifetime | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Trailer Park Boys : Swearnet Live | Mockumentary | October 1, 2014 | NaN | 1 hour, 15 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Trailer Park Boys : Live at the North Pole | Mockumentary | November 15, 2014 | NaN | 1 hour, 28 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | BoJack Horseman Christmas Special: Sabrina's ... | Animation | December 19, 2014 | NaN | 25 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Sense8 : Creating the World | Making-of | August 8, 2015 | NaN | 25 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Trailer Park Boys : Drunk, High And Unemploye... | Mockumentary | December 9, 2015 | NaN | 1 hour, 15 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Marco Polo : One Hundred Eyes | Period drama | December 26, 2015 | NaN | 28 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Puss in Book : Trapped in an Epic Tale | Animation / Interactive fiction | June 20, 2017 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Buddy Thunderstruck : The Maybe Pile | Animation / Interactive fiction | July 14, 2017 | NaN | 13 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Beat Bugs : All Together Now | Animation | November 21, 2017 | NaN | 50 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | DreamWorks Home : For the Holidays | Animation | December 1, 2017 | NaN | 45 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | A StoryBots Christmas | Animation | December 1, 2017 | NaN | 25 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Stretch Armstrong : The Breakout | Animation / Interactive fiction | March 13, 2018 | NaN | 45 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Super Monsters Save Halloween | Animation | October 5, 2018 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Club de Cuervos Presents: I, Potro | Mockumentary | October 19, 2018 | NaN | 50 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Free Rein : The Twelve Neighs of Christmas | Teen drama | December 7, 2018 | NaN | 57 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Super Monsters and the Wish Star | Animation | December 7, 2018 | NaN | 27 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Prince of Peoria : A Christmas Moose Miracle | Sitcom | December 17, 2018 | NaN | 29 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Aggretsuko : We Wish You a Metal Christmas | Anime | December 20, 2018 | NaN | 22 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Black Mirror: Bandersnatch | Science fiction / drama / Interactive | December 28, 2018 | NaN | 1 hour, 30 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Free Rein : Valentine's Day | Teen drama | February 1, 2019 | NaN | 50 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | True : Happy Hearts Day | Animation | February 1, 2019 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Super Monsters Furever Friends | Animation | April 16, 2019 | NaN | 58 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Malibu Rescue – The Movie | Comedy | May 13, 2019 | NaN | 1 hour, 9 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Oprah Winfrey Presents When They See Us Now | Interview | June 12, 2019 | NaN | 1 hour, 1 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Super Monsters Back to School | Animation | August 16, 2019 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | True : Tricky Treat Day | Animation | September 20, 2019 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Super Monsters : Vida's First Halloween | Animation | October 4, 2019 | NaN | 24 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | The Spooky Tale of Captain Underpants Hack-a... | Animation | October 8, 2019 | NaN | 46 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | My Next Guest with David Letterman and Shah R... | Talk show | October 25, 2019 | NaN | 1 hour, 1 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | The House of Flowers Presents: The Funeral | Comedy | November 1, 2019 | NaN | 35 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | True : Grabbleapple Harvest | Animation | November 1, 2019 | NaN | 23 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | GO! The Unforgettable Party | Spanish language musical | November 15, 2019 | NaN | 1 hour | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Super Monsters Save Christmas | Animation | November 26, 2019 | NaN | 24 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | True : Winter Wishes | Animation | November 26, 2019 | NaN | 45 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Spirit Riding Free : The Spirit of Christmas | Animation | December 6, 2019 | NaN | 45 min. | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | A Family Reunion Christmas [238] | Sitcom | December 9, 2019 | NaN | TBA | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Jack Whitehall : Christmas with My Father [239] | Variety show | December 12, 2019 | NaN | TBA | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Crazy Delicious (co-production with Channel ... | Cooking competition | Early 2020 [241] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | Ghost in the Shell: SAC_2045 [242] | Anime | Spring 2020 [243] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | EDEN [244] | Anime | Fall 2020 [245] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Age of Samurai: Battle for Japan [246] | Historical drama docuseries | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Alice in Borderland [247] [248] | Japanese language fantasy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Alma [249] | Spanish language supernatural drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Behind Her Eyes [250] | Psychological thriller miniseries | 2020 [251] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Blood and Water [252] | Teen drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Boca a Boca [253] | Portuguese language comedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Bridgerton [254] | Romance | 2020 [255] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Cursed [256] | Fantasy drama | 2020 [257] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | El desorden que dejas [146] | Spanish language drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Emily's Wonder Lab [258] | Educational | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Fate: The Winx Saga [259] | Teen drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Gabby's Dollhouse [260] | Animation | 2020 [260] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Ginny & Georgia [261] | Coming of age drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Go, Dog, Go! [258] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Grand Army [262] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | Hollywood [263] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | I Am Not Okay with This [264] | Coming of age comedy | 2020 [265] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | I Do, Redo (co-production with CTV ) [266] | Reality show | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Into the Night [267] | Science fiction | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Izzy Bee's Koala World [258] | Docuseries | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Japan Sinks 2020 [268] | Anime | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Ju-On [269] | Japanese language horror | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Jurassic World: Camp Cretaceous [270] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Kid Cosmic [271] [272] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | Kipo and the Age of Wonderbeasts [273] | Animation | 2020 [273] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Madam C. J. Walker [274] | Miniseries | 2020 [275] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Memorias de Idhún [146] | Spanish language animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Never Have I Ever [276] [277] | Comedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | October Faction [278] | Horror | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Onisciente [279] | Sci-fi | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | Outer Banks [280] | Coming of age drama | 2020 [281] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Pacific Rim [282] | Anime | 2020; Renewed [283] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Puerta 7 [284] | Spanish language sports crime drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Queen Sono [285] [286] | Crime drama | 2020 [285] [286] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Ratched [287] | Drama | 2020; Renewed [287] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | Reality Z [288] | Portuguese language zombie comedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Rhyme Time Town [260] | Animation | 2020 [260] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | Selena: The Series [289] | Biopic | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Space Force [290] | Comedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | Spectros [291] | Portuguese language thriller | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | StarBeam [258] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | The Circle US [292] | Reality competition | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | The English Game [293] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | The Goop Lab with Gwyneth Paltrow [294] [295] | Docu-series | 2020 [295] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | The Iliza Shlesinger Sketch Show [296] | Sketch comedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | The Last Dance [297] | Docu-series | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | The Woods [298] [299] | Polish language thriller | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Tiny Pretty Things [300] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Todo por ti [301] | Spanish language series | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
52 | Transformers: War for Cybertron Trilogy [302] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | Unbreakable Kimmy Schmidt : Kimmy Vs. the Rev... | Interactive fiction special | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
54 | Unorthodox [304] | Drama miniseries | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
55 | Untitled Arsène Lupin series [305] | French language drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
56 | Valeria [146] | Spanish language dramedy | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
57 | What-to-Doodles [258] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
58 | Wizards: Tales of Arcadia [306] | Animation | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
59 | Young Wallander [307] | Detective drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
60 | Life in Colour (co-production with BBC Two ... | Docuseries | 2021 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
61 | Maya and the Three [271] | Animation miniseries | 2021 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
62 | Trash Truck [271] | Animation | 2021 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
76 | Baahubali: Before The Beginning [320] [f] | Fantasy | TBA; Renewed [321] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
81 | Billy and the Minpins [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
90 | Boy: Tales of Childhood [327] | Animation miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
97 | Charlie and the Chocolate Factory [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
98 | Charlie and the Great Glass Elevator [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
113 | Dirty Beasts [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
119 | Esio Trot [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
127 | George's Marvellous Medicine [327] | Animation miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
132 | Going Solo [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
135 | Henry Sugar [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
144 | Jupiter's Legacy [317] | Superhero epic | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
160 | Matilda [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
176 | Pieces of Her [403] | Thriller | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
180 | Rhyme Stew [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
182 | The School Nurse Files [407] | Korean language drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
196 | The BFG [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
206 | The Enormous Crocodile [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
210 | The Giraffe and the Pelly and Me [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
219 | The Magic Finger [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
228 | The Twits [327] | Animated miniseries | TBA [327] | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
275 | Warrior Nun [278] | Drama | 2020 | NaN | NaN | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | Zumbo's Just Desserts (season 2) [481] | Baking reality competition | 2019 | 1 season, 12 episodes | TBA | NaN | NaN | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | 21 Thunder | Sports , Drama | NaN | 1 season, 8 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
1 | After Trek | Talk Show | NaN | 1 season, 14 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
2 | Bad Blood | Drama | NaN | 2 seasons, 14 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
3 | Better Call Saul | Drama | NaN | 4 seasons, 40 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
4 | Black Lightning | Superhero | NaN | 2 seasons, 29 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
5 | Bodyguard | Political thriller | NaN | 1 season, 6 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
6 | Borgia | Historical fiction | NaN | 3 seasons, 38 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
7 | Champions | Comedy-drama | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
8 | Chewing Gum | Sitcom | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
9 | Comedians in Cars Getting Coffee (seasons 1–9) | Comedy | NaN | 4 collections, 59 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
10 | Crashing | Comedy-drama | NaN | 1 season, 6 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
11 | Creeped Out | Horror fantasy drama | NaN | 2 seasons, 19 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
12 | Cuckoo | Comedy | NaN | 5 seasons, 33 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
13 | Derry Girls | Comedy | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
14 | Derek | Comedy-drama | NaN | 3 seasons, 14 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
15 | Designated Survivor (seasons 1–2) | Political drama | NaN | 2 seasons, 43 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
16 | Dirty John | True crime anthology | NaN | 1 season, 8 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
17 | Dynasty | Soap opera | NaN | 2 seasons, 44 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
18 | From Dusk till Dawn | Drama | NaN | 3 seasons, 30 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
19 | Ghost Wars | Science-fiction | NaN | 1 season, 13 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
20 | Glitch (season 1) | Paranormal-drama | NaN | 1 season, 6 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
21 | Good Girls | Comedy-drama | NaN | 2 seasons, 23 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
22 | Great News | Comedy | NaN | 2 seasons, 23 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
23 | Greenleaf | Drama | NaN | 4 seasons, 52episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
24 | Guilt | Murder mystery | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
25 | Happy! | Crime drama Comedy | NaN | 2 seasons, 18 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
26 | Happy Valley | Crime drama | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
27 | London Spy | Drama | NaN | 1 season, 5 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
28 | Mako Mermaids: An H2O Adventure | Children / teen drama fantasy | NaN | 3 seasons, 52 episodes [g] | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
29 | Manhunt: Unabomber | Drama | NaN | 1 season, 8 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
30 | Marcella | Film noir / Crime drama | NaN | 2 seasons, 16 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
31 | Marlon | Sitcom | NaN | 2 seasons, 20 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
32 | Norsemen | Comedy Historical drama | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
33 | Orphan Black | Science fiction / thriller | NaN | 5 seasons, 50 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
34 | Outlander | Science fiction / historical drama | NaN | 4 seasons, 52 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
35 | Peaky Blinders | Crime drama | NaN | 5 seasons, 30 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
36 | Penny Dreadful | Horror drama | NaN | 3 seasons, 27 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
37 | Pompidou | Comedy | NaN | 1 season, 6 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
38 | ReBoot: The Guardian Code | Science fiction | NaN | 2 seasons, 20 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
39 | Retribution | Crime drama | NaN | 1 season, 4 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
40 | River | Crime drama | NaN | 1 season, 6 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
41 | Riverdale | Teen drama / Mystery | NaN | 4 seasons, 65 episodes Season 4 ongoing | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
42 | Scream | Horror anthology series | NaN | 3 seasons, 30 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
43 | Secret City | Thriller / Mystery | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
44 | Shadowhunters | Drama | NaN | 3 seasons, 55 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
45 | Shooter | Drama | NaN | 3 seasons, 25 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
46 | Sick Note | Sitcom | NaN | 2 seasons, 14 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
47 | Sisters | Family drama | NaN | 1 season, 7 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
48 | Slasher (seasons 1–2) | Horror anthology series | NaN | 2 seasons, 16 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
49 | Snowpiercer | dystopian thriller | NaN | TBA | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
50 | Some Assembly Required | Teen Comedy | NaN | 3 seasons, 57 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
51 | Somewhere Between | Drama | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
52 | Southcliffe | Drama | NaN | 1 season, 4 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
53 | Star Trek: Discovery | Science fiction | NaN | 2 seasons, 29 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
54 | Superstition | Supernatural drama | NaN | 1 season, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
55 | The 100 | Action | NaN | 4 seasons, 58 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
56 | The Alienist | Period drama | NaN | 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
57 | The A List | Teen drama | NaN | 1 season, 13 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
58 | The Expanse | Science fiction | NaN | 2 seasons, 23 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
59 | The Fall | Crime drama | NaN | 3 seasons, 17 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
60 | The Frankenstein Chronicles | Period crime drama | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
61 | The Good Place | Fantasy sitcom | NaN | 4 seasons, 46 episodes Season 4 ongoing | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
62 | The Indian Detective | Comedy | NaN | 1 season, 4 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
63 | The InBESTigators | Children comedy | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
64 | The Last Kingdom (season 1) | Historical fiction | NaN | 1 season, 8 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
65 | The Magicians | Fantasy | NaN | 4 seasons, 47 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
66 | The Missing | Psychological drama Mystery Thriller | NaN | 3 seasons, 24 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
67 | The Mist | Horror | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
68 | The Returned | Drama | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
69 | The Sinner | Drama | NaN | 1 season, 8 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
70 | The Unlisted | Teen drama | NaN | 1 season, 15 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
71 | Titans | Superhero | NaN | 1 season, 11 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
72 | Unsolved | True crime | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
73 | Van Helsing | Drama Horror Fantasy | NaN | 3 seasons, 39 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
74 | Wanted | Drama | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
75 | White Gold | Comedy | NaN | 2 seasons, 12 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
76 | Workin' Moms | Comedy | NaN | 3 seasons, 39 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
77 | You | Thriller | NaN | 1 season, 10 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
78 | You Me Her | Romantic comedy | NaN | 4 seasons, 40 episodes | NaN | NaN | English | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
0 | NaN | Espionage Parody | NaN | 2 seasons, 24 episodes | NaN | NaN | French | NaN | NaN | NaN | ... | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN | NaN |
738 rows × 33 columns
The next part is to push these titles to the OMDB API, and find the correlating JSON data item for each movie. We will do movies first, then tv shows, then combine them. We must do this because the API only allows 1000 queries at a time, and there are more than 1000 entries if we combine movies and tv
#step 1: create df to hold new ratings df info
film_netflix_ratings_df = pd.DataFrame()
errors = 0
#step 2: iterate through each row in netflix_df grabbing title. from there
for row in netflix_films_df['Title']:
try:
row_search = urllib.parse.quote(row)
#convert each row to a ombdapi URL. notcie the %s, which is a placeholder for the approrpriate movie
#it may be worth it to add in a placeholder for the API key as well.
url = ("http://www.omdbapi.com/?t=%s&r=json&apikey=67ca8c9d" % row_search)
request = requests.get(url)
source = urllib.request.urlopen(url).read()
source = source.decode()
d = {'Title' : row, 'JSON_DATA' : source}
df = pd.DataFrame(data=d, index=[0])
film_netflix_ratings_df = film_netflix_ratings_df.append(df)
#test for any errors in retrieving data
#This will likely only fire if you have an expired API key.
#if this happens, you need to generate a new api key(see intro) and replace the api key (currently 67ca8c9d) (try aa11aa8, 742f26a8, or 8564eff2, ed54ed5a) in the URL.
except:
print("Error with %s" % row)
print(url)
errors += 1
Now the tv shows. You may notice an error here - the api returns this error for a specific tv show, because there are several with that name. We deal with this error later.
#step 1: create df to hold new ratings df info
tv_netflix_ratings_df = pd.DataFrame()
errors = 0
#step 2: iterate through each row in netflix_df grabbing title. from there
for row in netflix_tv_df['Title']:
try:
row_search = urllib.parse.quote(row)
#convert each row to a ombdapi URL. notcie the %s, which is a placeholder for the approrpriate movie
#it may be worth it to add in a placeholder for the API key as well.
url = ("http://www.omdbapi.com/?t=%s&r=json&apikey=64b4a0cd" % row_search)
request = requests.get(url)
source = urllib.request.urlopen(url).read()
source = source.decode()
d = {'Title' : row, 'JSON_DATA' : source}
df = pd.DataFrame(data=d, index=[0])
tv_netflix_ratings_df = tv_netflix_ratings_df.append(df)
#test for any errors in retrieving data
#This will likely only fire if you have an expired API key.
#if this happens, you need to generate a new api key(see intro) and replace the api key (currently 76c90977) (try aa11aa8, 742f26a8, or 8564eff2, ed54ed5a) in the URL.
except:
print("Error with %s" % row)
print(url)
errors += 1
Error with nan http://www.omdbapi.com/?t=You%20Me%20Her&r=json&apikey=64b4a0cd
print("%s error in getting json data" % errors)
pd.set_option('display.max_rows', 50) #we don't need to see a lot of entries here
netflix_ratings_df = pd.concat([tv_netflix_ratings_df, film_netflix_ratings_df], sort=False)
netflix_ratings_df
1 error in getting json data
Title | JSON_DATA | |
---|---|---|
0 | House of Cards | {"Title":"House of Cards","Year":"2013–2018","... |
0 | Hemlock Grove | {"Title":"Hemlock Grove","Year":"2013–2015","R... |
0 | Orange Is the New Black | {"Title":"Orange Is the New Black","Year":"201... |
0 | Marco Polo | {"Title":"Marco Polo","Year":"2014–2016","Rate... |
0 | Bloodline | {"Title":"Bloodline","Year":"2015–2017","Rated... |
0 | Sense8 | {"Title":"Sense8","Year":"2015–2018","Rated":"... |
0 | Narcos | {"Title":"Narcos","Year":"2015–2017","Rated":"... |
0 | Stranger Things | {"Title":"Stranger Things","Year":"2016–","Rat... |
0 | The Get Down | {"Title":"The Get Down","Year":"2016–2017","Ra... |
0 | The Crown | {"Title":"The Crown","Year":"2016–","Rated":"T... |
0 | Gilmore Girls: A Year in the Life | {"Title":"Gilmore Girls: A Year in the Life","... |
0 | The OA | {"Title":"The OA","Year":"2016–2019","Rated":"... |
0 | A Series of Unfortunate Events | {"Title":"A Series of Unfortunate Events","Yea... |
0 | 13 Reasons Why | {"Title":"13 Reasons Why","Year":"2017–","Rate... |
0 | Gypsy | {"Title":"Gypsy","Year":"2017","Rated":"TV-MA"... |
0 | Ozark | {"Title":"Ozark","Year":"2017–","Rated":"TV-MA... |
0 | Mindhunter | {"Title":"Mindhunter","Year":"2017–","Rated":"... |
0 | Godless | {"Title":"Godless","Year":"2017","Rated":"TV-M... |
0 | Altered Carbon | {"Title":"Altered Carbon","Year":"2018–","Rate... |
0 | Seven Seconds | {"Title":"Seven Seconds","Year":"2018","Rated"... |
0 | Lost in Space | {"Title":"Lost in Space","Year":"1998","Rated"... |
0 | The Innocents | {"Title":"The Innocents","Year":"1961","Rated"... |
0 | The Haunting | {"Title":"The Haunting","Year":"1999","Rated":... |
0 | Chilling Adventures of Sabrina | {"Title":"Chilling Adventures of Sabrina","Yea... |
0 | Narcos: Mexico | {"Title":"Narcos: Mexico","Year":"2018–","Rate... |
... | ... | ... |
0 | The Wandering Earth | {"Title":"The Wandering Earth","Year":"2019","... |
0 | Us and Them | {"Title":"Us and Them","Year":"2018","Rated":"... |
0 | A Shaun the Sheep Movie: Farmageddon [294] | {"Response":"False","Error":"Movie not found!"} |
0 | Angela's Christmas | {"Title":"Angela's Christmas","Year":"2017","R... |
0 | Arctic Dogs | {"Title":"Arctic Dogs","Year":"2019","Rated":"... |
0 | Big Fish & Begonia | {"Title":"Big Fish & Begonia","Year":"2016","R... |
0 | Duck Duck Goose | {"Title":"Duck Duck Goose","Year":"2018","Rate... |
0 | Flavors of Youth: International Version | {"Response":"False","Error":"Movie not found!"} |
0 | Godzilla: City on the Edge of Battle | {"Title":"Godzilla: City on the Edge of Battle... |
0 | Godzilla: Planet of the Monsters | {"Title":"Godzilla: Planet of the Monsters","Y... |
0 | Godzilla: The Planet Eater | {"Title":"Godzilla: The Planet Eater","Year":"... |
0 | Gnome Alone | {"Title":"Gnome Alone","Year":"2017","Rated":"... |
0 | I Lost My Body | {"Title":"I Lost My Body","Year":"2019","Rated... |
0 | Kung Fu Panda 3 | {"Title":"Kung Fu Panda 3","Year":"2016","Rate... |
0 | Modest Heroes: Ponoc Short Films Theater | {"Response":"False","Error":"Movie not found!"} |
0 | Pachamama | {"Title":"Pachamama","Year":"2018","Rated":"PG... |
0 | Sahara | {"Title":"Sahara","Year":"2005","Rated":"PG-13... |
0 | The Little Prince | {"Title":"The Little Prince","Year":"2015","Ra... |
0 | White Fang | {"Title":"White Fang","Year":"1991","Rated":"P... |
0 | This 15 Me | {"Title":"Sarah Geronimo: This 15 Me","Year":"... |
0 | An Afternoon with SCTV | {"Response":"False","Error":"Movie not found!"} |
0 | Derren Brown: Miracle | {"Title":"Derren Brown: Miracle","Year":"2016"... |
0 | Derren Brown: The Push | {"Title":"Derren Brown: Pushed to the Edge","Y... |
0 | Dying to Tell | {"Title":"Dying to Tell","Year":"2018","Rated"... |
0 | Kevin Hart: What Now? | {"Title":"Kevin Hart: What Now?","Year":"2016"... |
1327 rows × 2 columns
Notice how the index has become all 0. This is because of how we constructed the dataframe - we made each returned title + JSON value a seperate series, then added this series to temporary dataframe. Within this temporary dataframe, every item had an index of 0. Thus, when we then append this dataframe to the final dataframe, every value has an index of 0. This has a simple fix.
netflix_ratings_df.reset_index(inplace = True, drop=True)
netflix_ratings_df
Title | JSON_DATA | |
---|---|---|
0 | House of Cards | {"Title":"House of Cards","Year":"2013–2018","... |
1 | Hemlock Grove | {"Title":"Hemlock Grove","Year":"2013–2015","R... |
2 | Orange Is the New Black | {"Title":"Orange Is the New Black","Year":"201... |
3 | Marco Polo | {"Title":"Marco Polo","Year":"2014–2016","Rate... |
4 | Bloodline | {"Title":"Bloodline","Year":"2015–2017","Rated... |
5 | Sense8 | {"Title":"Sense8","Year":"2015–2018","Rated":"... |
6 | Narcos | {"Title":"Narcos","Year":"2015–2017","Rated":"... |
7 | Stranger Things | {"Title":"Stranger Things","Year":"2016–","Rat... |
8 | The Get Down | {"Title":"The Get Down","Year":"2016–2017","Ra... |
9 | The Crown | {"Title":"The Crown","Year":"2016–","Rated":"T... |
10 | Gilmore Girls: A Year in the Life | {"Title":"Gilmore Girls: A Year in the Life","... |
11 | The OA | {"Title":"The OA","Year":"2016–2019","Rated":"... |
12 | A Series of Unfortunate Events | {"Title":"A Series of Unfortunate Events","Yea... |
13 | 13 Reasons Why | {"Title":"13 Reasons Why","Year":"2017–","Rate... |
14 | Gypsy | {"Title":"Gypsy","Year":"2017","Rated":"TV-MA"... |
15 | Ozark | {"Title":"Ozark","Year":"2017–","Rated":"TV-MA... |
16 | Mindhunter | {"Title":"Mindhunter","Year":"2017–","Rated":"... |
17 | Godless | {"Title":"Godless","Year":"2017","Rated":"TV-M... |
18 | Altered Carbon | {"Title":"Altered Carbon","Year":"2018–","Rate... |
19 | Seven Seconds | {"Title":"Seven Seconds","Year":"2018","Rated"... |
20 | Lost in Space | {"Title":"Lost in Space","Year":"1998","Rated"... |
21 | The Innocents | {"Title":"The Innocents","Year":"1961","Rated"... |
22 | The Haunting | {"Title":"The Haunting","Year":"1999","Rated":... |
23 | Chilling Adventures of Sabrina | {"Title":"Chilling Adventures of Sabrina","Yea... |
24 | Narcos: Mexico | {"Title":"Narcos: Mexico","Year":"2018–","Rate... |
... | ... | ... |
1302 | The Wandering Earth | {"Title":"The Wandering Earth","Year":"2019","... |
1303 | Us and Them | {"Title":"Us and Them","Year":"2018","Rated":"... |
1304 | A Shaun the Sheep Movie: Farmageddon [294] | {"Response":"False","Error":"Movie not found!"} |
1305 | Angela's Christmas | {"Title":"Angela's Christmas","Year":"2017","R... |
1306 | Arctic Dogs | {"Title":"Arctic Dogs","Year":"2019","Rated":"... |
1307 | Big Fish & Begonia | {"Title":"Big Fish & Begonia","Year":"2016","R... |
1308 | Duck Duck Goose | {"Title":"Duck Duck Goose","Year":"2018","Rate... |
1309 | Flavors of Youth: International Version | {"Response":"False","Error":"Movie not found!"} |
1310 | Godzilla: City on the Edge of Battle | {"Title":"Godzilla: City on the Edge of Battle... |
1311 | Godzilla: Planet of the Monsters | {"Title":"Godzilla: Planet of the Monsters","Y... |
1312 | Godzilla: The Planet Eater | {"Title":"Godzilla: The Planet Eater","Year":"... |
1313 | Gnome Alone | {"Title":"Gnome Alone","Year":"2017","Rated":"... |
1314 | I Lost My Body | {"Title":"I Lost My Body","Year":"2019","Rated... |
1315 | Kung Fu Panda 3 | {"Title":"Kung Fu Panda 3","Year":"2016","Rate... |
1316 | Modest Heroes: Ponoc Short Films Theater | {"Response":"False","Error":"Movie not found!"} |
1317 | Pachamama | {"Title":"Pachamama","Year":"2018","Rated":"PG... |
1318 | Sahara | {"Title":"Sahara","Year":"2005","Rated":"PG-13... |
1319 | The Little Prince | {"Title":"The Little Prince","Year":"2015","Ra... |
1320 | White Fang | {"Title":"White Fang","Year":"1991","Rated":"P... |
1321 | This 15 Me | {"Title":"Sarah Geronimo: This 15 Me","Year":"... |
1322 | An Afternoon with SCTV | {"Response":"False","Error":"Movie not found!"} |
1323 | Derren Brown: Miracle | {"Title":"Derren Brown: Miracle","Year":"2016"... |
1324 | Derren Brown: The Push | {"Title":"Derren Brown: Pushed to the Edge","Y... |
1325 | Dying to Tell | {"Title":"Dying to Tell","Year":"2018","Rated"... |
1326 | Kevin Hart: What Now? | {"Title":"Kevin Hart: What Now?","Year":"2016"... |
1327 rows × 2 columns
You may notice how some of these say "response:false, error: movie not found!" lets isolate these movies and see if we can find a pattern.
error_netflix_movies = netflix_ratings_df[netflix_ratings_df['JSON_DATA'] == "{\"Response\":\"False\",\"Error\":\"Movie not found!\"}"]
#we will also remove these from the current dataframe, so we can add in the fixes later
netflix_ratings_df = netflix_ratings_df[netflix_ratings_df['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Movie not found!\"}"]
error_netflix_movies
Title | JSON_DATA | |
---|---|---|
48 | Messiah [34] | {"Response":"False","Error":"Movie not found!"} |
49 | Locke & Key [36] | {"Response":"False","Error":"Movie not found!"} |
60 | W/ Bob & David | {"Response":"False","Error":"Movie not found!"} |
64 | Netflix Presents: The Characters | {"Response":"False","Error":"Movie not found!"} |
69 | Trailer Park Boys Out of the Park: Europe | {"Response":"False","Error":"Movie not found!"} |
82 | Trailer Park Boys Out of the Park: USA | {"Response":"False","Error":"Movie not found!"} |
107 | Astronomy Club: The Sketch Show | {"Response":"False","Error":"Movie not found!"} |
129 | Rilakkuma and Kaoru | {"Response":"False","Error":"Movie not found!"} |
131 | Knights of the Zodiac: Saint Seiya | {"Response":"False","Error":"Movie not found!"} |
136 | The Disastrous Life of Saiki K.: Reawakened [88] | {"Response":"False","Error":"Movie not found!"} |
152 | Justin Time GO! | {"Response":"False","Error":"Movie not found!"} |
161 | Edgar Rice Burroughs' Tarzan and Jane | {"Response":"False","Error":"Movie not found!"} |
173 | Stretch Armstrong and the Flex Fighters | {"Response":"False","Error":"Movie not found!"} |
180 | True: Magical Friends | {"Response":"False","Error":"Movie not found!"} |
181 | True: Wonderful Wishes | {"Response":"False","Error":"Movie not found!"} |
207 | Dino Girl Gauko | {"Response":"False","Error":"Movie not found!"} |
208 | Fast & Furious: Spy Racers | {"Response":"False","Error":"Movie not found!"} |
209 | Go! Go! Cory Carson [108] | {"Response":"False","Error":"Movie not found!"} |
211 | Super Monsters Monster Party | {"Response":"False","Error":"Movie not found!"} |
214 | Project Mc 2 | {"Response":"False","Error":"Movie not found!"} |
220 | The Ponysitters Club | {"Response":"False","Error":"Movie not found!"} |
221 | Best.Worst.Weekend.Ever. | {"Response":"False","Error":"Movie not found!"} |
225 | Malibu Rescue: The Series | {"Response":"False","Error":"Movie not found!"} |
232 | Cable Girls | {"Response":"False","Error":"Movie not found!"} |
240 | Club de Cuervos Presents: The Ballad of Hugo S... | {"Response":"False","Error":"Movie not found!"} |
... | ... | ... |
1107 | The Main Event [39] | {"Response":"False","Error":"Movie not found!"} |
1108 | The Princess Switch: Switched Again [40] | {"Response":"False","Error":"Movie not found!"} |
1109 | Under the Sun of Riccione [22] | {"Response":"False","Error":"Movie not found!"} |
1110 | Welcome to Sudden Death [41] | {"Response":"False","Error":"Movie not found!"} |
1111 | My Father's Dragon [14] | {"Response":"False","Error":"Movie not found!"} |
1112 | Pinocchio [42] | {"Response":"False","Error":"Movie not found!"} |
1113 | The Power of the Dog [44] | {"Response":"False","Error":"Movie not found!"} |
1114 | Untitled The Loud House film [45] | {"Response":"False","Error":"Movie not found!"} |
1115 | Wendell and Wild [47] | {"Response":"False","Error":"Movie not found!"} |
1116 | Escape from Hat [48] | {"Response":"False","Error":"Movie not found!"} |
1117 | Jacob and the Sea Beast [49] | {"Response":"False","Error":"Movie not found!"} |
1118 | Taylor Swift: Miss Americana [216] | {"Response":"False","Error":"Movie not found!"} |
1176 | The Last Letter from Your Lover | {"Response":"False","Error":"Movie not found!"} |
1179 | The Lighthouse of the Orcas | {"Response":"False","Error":"Movie not found!"} |
1197 | The Photographer of Mauthausen | {"Response":"False","Error":"Movie not found!"} |
1205 | All the Freckles in the World | {"Response":"False","Error":"Movie not found!"} |
1209 | The Endless Trench | {"Response":"False","Error":"Movie not found!"} |
1242 | Tune in for Love | {"Response":"False","Error":"Movie not found!"} |
1285 | Jaoon Kahan Bata Ae Dil | {"Response":"False","Error":"Movie not found!"} |
1296 | Shadows In My Eyes | {"Response":"False","Error":"Movie not found!"} |
1299 | The Awakening of Motti Wolkenbruch | {"Response":"False","Error":"Movie not found!"} |
1304 | A Shaun the Sheep Movie: Farmageddon [294] | {"Response":"False","Error":"Movie not found!"} |
1309 | Flavors of Youth: International Version | {"Response":"False","Error":"Movie not found!"} |
1316 | Modest Heroes: Ponoc Short Films Theater | {"Response":"False","Error":"Movie not found!"} |
1322 | An Afternoon with SCTV | {"Response":"False","Error":"Movie not found!"} |
255 rows × 2 columns
Some of these appear to be still in development. Some however,appear to be creating an error because of wikipedia citaitons! lets edit those out
#because we are working with a slice of a dataframe here, we need to suppress the settingwithcopywarning
pd.options.mode.chained_assignment = None
#now we will edit out the citations
error_netflix_movies['Title'] = error_netflix_movies['Title'].str.split('\[').str[0]
error_netflix_movies
Title | JSON_DATA | |
---|---|---|
48 | Messiah | {"Response":"False","Error":"Movie not found!"} |
49 | Locke & Key | {"Response":"False","Error":"Movie not found!"} |
60 | W/ Bob & David | {"Response":"False","Error":"Movie not found!"} |
64 | Netflix Presents: The Characters | {"Response":"False","Error":"Movie not found!"} |
69 | Trailer Park Boys Out of the Park: Europe | {"Response":"False","Error":"Movie not found!"} |
82 | Trailer Park Boys Out of the Park: USA | {"Response":"False","Error":"Movie not found!"} |
107 | Astronomy Club: The Sketch Show | {"Response":"False","Error":"Movie not found!"} |
129 | Rilakkuma and Kaoru | {"Response":"False","Error":"Movie not found!"} |
131 | Knights of the Zodiac: Saint Seiya | {"Response":"False","Error":"Movie not found!"} |
136 | The Disastrous Life of Saiki K.: Reawakened | {"Response":"False","Error":"Movie not found!"} |
152 | Justin Time GO! | {"Response":"False","Error":"Movie not found!"} |
161 | Edgar Rice Burroughs' Tarzan and Jane | {"Response":"False","Error":"Movie not found!"} |
173 | Stretch Armstrong and the Flex Fighters | {"Response":"False","Error":"Movie not found!"} |
180 | True: Magical Friends | {"Response":"False","Error":"Movie not found!"} |
181 | True: Wonderful Wishes | {"Response":"False","Error":"Movie not found!"} |
207 | Dino Girl Gauko | {"Response":"False","Error":"Movie not found!"} |
208 | Fast & Furious: Spy Racers | {"Response":"False","Error":"Movie not found!"} |
209 | Go! Go! Cory Carson | {"Response":"False","Error":"Movie not found!"} |
211 | Super Monsters Monster Party | {"Response":"False","Error":"Movie not found!"} |
214 | Project Mc 2 | {"Response":"False","Error":"Movie not found!"} |
220 | The Ponysitters Club | {"Response":"False","Error":"Movie not found!"} |
221 | Best.Worst.Weekend.Ever. | {"Response":"False","Error":"Movie not found!"} |
225 | Malibu Rescue: The Series | {"Response":"False","Error":"Movie not found!"} |
232 | Cable Girls | {"Response":"False","Error":"Movie not found!"} |
240 | Club de Cuervos Presents: The Ballad of Hugo S... | {"Response":"False","Error":"Movie not found!"} |
... | ... | ... |
1107 | The Main Event | {"Response":"False","Error":"Movie not found!"} |
1108 | The Princess Switch: Switched Again | {"Response":"False","Error":"Movie not found!"} |
1109 | Under the Sun of Riccione | {"Response":"False","Error":"Movie not found!"} |
1110 | Welcome to Sudden Death | {"Response":"False","Error":"Movie not found!"} |
1111 | My Father's Dragon | {"Response":"False","Error":"Movie not found!"} |
1112 | Pinocchio | {"Response":"False","Error":"Movie not found!"} |
1113 | The Power of the Dog | {"Response":"False","Error":"Movie not found!"} |
1114 | Untitled The Loud House film | {"Response":"False","Error":"Movie not found!"} |
1115 | Wendell and Wild | {"Response":"False","Error":"Movie not found!"} |
1116 | Escape from Hat | {"Response":"False","Error":"Movie not found!"} |
1117 | Jacob and the Sea Beast | {"Response":"False","Error":"Movie not found!"} |
1118 | Taylor Swift: Miss Americana | {"Response":"False","Error":"Movie not found!"} |
1176 | The Last Letter from Your Lover | {"Response":"False","Error":"Movie not found!"} |
1179 | The Lighthouse of the Orcas | {"Response":"False","Error":"Movie not found!"} |
1197 | The Photographer of Mauthausen | {"Response":"False","Error":"Movie not found!"} |
1205 | All the Freckles in the World | {"Response":"False","Error":"Movie not found!"} |
1209 | The Endless Trench | {"Response":"False","Error":"Movie not found!"} |
1242 | Tune in for Love | {"Response":"False","Error":"Movie not found!"} |
1285 | Jaoon Kahan Bata Ae Dil | {"Response":"False","Error":"Movie not found!"} |
1296 | Shadows In My Eyes | {"Response":"False","Error":"Movie not found!"} |
1299 | The Awakening of Motti Wolkenbruch | {"Response":"False","Error":"Movie not found!"} |
1304 | A Shaun the Sheep Movie: Farmageddon | {"Response":"False","Error":"Movie not found!"} |
1309 | Flavors of Youth: International Version | {"Response":"False","Error":"Movie not found!"} |
1316 | Modest Heroes: Ponoc Short Films Theater | {"Response":"False","Error":"Movie not found!"} |
1322 | An Afternoon with SCTV | {"Response":"False","Error":"Movie not found!"} |
255 rows × 2 columns
Now lets run these back through our previous steps to push it to OMDB, and reject any that are in development.
fixed_netflix_errors_df = pd.DataFrame()
for row in error_netflix_movies['Title']:
try:
row_search = urllib.parse.quote(row)
url = ("http://www.omdbapi.com/?t=%s&r=json&apikey=accc7130" % row_search)
request = requests.get(url)
source = urllib.request.urlopen(url).read()
source = source.decode()
d = {'Title' : row, 'JSON_DATA' : source}
df = pd.DataFrame(data=d, index=[0])
fixed_netflix_errors_df = fixed_netflix_errors_df.append(df)
#test for any errors in retrieving data
#This will likelye only trigger if you have an expired api key (try a7e31369 or aa11aa8, instead!). Replace this key if errors are triggered
except:
print("Error with %s" % row)
print(url)
errors += 1
#now we can assume that any more not found movies are likely in development, and we should drop them.
fixed_netflix_errors_df = fixed_netflix_errors_df[fixed_netflix_errors_df['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Movie not found!\"}"]
fixed_netflix_errors_df
Title | JSON_DATA | |
---|---|---|
0 | Messiah | {"Title":"Messiah","Year":"2001","Rated":"N/A"... |
0 | Locke & Key | {"Title":"Locke & Key","Year":"2011","Rated":"... |
0 | The Gift | {"Title":"The Gift","Year":"2015","Rated":"R",... |
0 | The Neighbor | {"Title":"The Neighbor","Year":"2018","Rated":... |
0 | Ares | {"Title":"Ares","Year":"2016","Rated":"N/A","R... |
0 | Followers | {"Title":"Followers","Year":"2017","Rated":"No... |
0 | Ghost in the Shell: SAC_2045 | {"Title":"Ghost in the Shell SAC_2045","Year":... |
0 | EDEN | {"Title":"Eden","Year":"2012","Rated":"R","Rel... |
0 | Alma | {"Title":"Alma","Year":"2009","Rated":"Not Rat... |
0 | Behind Her Eyes | {"Title":"Behind Her Eyes","Year":"2018","Rate... |
0 | Blood and Water | {"Title":"Blood and Water","Year":"2015–","Rat... |
0 | Boca a Boca | {"Title":"Boca a Boca","Year":"2005–","Rated":... |
0 | Bridgerton | {"Title":"The Untitled Bridgerton Series","Yea... |
0 | Cursed | {"Title":"Cursed","Year":"2005","Rated":"PG-13... |
0 | Grand Army | {"Title":"Grand Army Veterans of New York","Ye... |
0 | Hollywood | {"Title":"Once Upon a Time ... in Hollywood","... |
0 | I Am Not Okay with This | {"Title":"I Am Not Okay with This","Year":"202... |
0 | Into the Night | {"Title":"Into the Night","Year":"1985","Rated... |
0 | Ju-On | {"Title":"Ju-on","Year":"2000","Rated":"Not Ra... |
0 | Kipo and the Age of Wonderbeasts | {"Title":"Kipo and the Age of Wonderbeasts","Y... |
0 | Never Have I Ever | {"Title":"Never Have I Ever","Year":"2009","Ra... |
0 | October Faction | {"Title":"October Faction","Year":"2019–","Rat... |
0 | Outer Banks | {"Title":"Outer Banks","Year":"2012","Rated":"... |
0 | Pacific Rim | {"Title":"Pacific Rim","Year":"2013","Rated":"... |
0 | Ratched | {"Title":"Ratched","Year":"2018–","Rated":"N/A... |
... | ... | ... |
0 | The Magic Finger | {"Title":"The Magic Finger","Year":"1990","Rat... |
0 | Warrior Nun | {"Title":"Warrior Nun","Year":"2015","Rated":"... |
0 | The App | {"Title":"The App","Year":"2016","Rated":"N/A"... |
0 | A Fall from Grace | {"Title":"A Fall from Grace","Year":"2015","Ra... |
0 | The Paramedic | {"Title":"The Paramedic","Year":"1982","Rated"... |
0 | The Willoughbys | {"Title":"The Willoughbys","Year":"2020","Rate... |
0 | The Prom | {"Title":"The Prom","Year":"1982","Rated":"N/A... |
0 | Robin Robin | {"Title":"Robin & Robin","Year":"2012","Rated"... |
0 | All the Bright Places | {"Title":"All the Bright Places","Year":"2020"... |
0 | Beyond the Result | {"Title":"Al di la' del risultato (Beyond the ... |
0 | First Ladies | {"Title":"First Ladies","Year":"2012","Rated":... |
0 | Freaks | {"Title":"Freaks","Year":"1932","Rated":"Not R... |
0 | Hogar | {"Title":"Hogar","Year":"2011","Rated":"N/A","... |
0 | Jingle Jangle | {"Title":"Jingle Jangle","Year":"2017","Rated"... |
0 | Over the Moon | {"Title":"Over the Moon","Year":"1939","Rated"... |
0 | Sergio | {"Title":"Sergio","Year":"2009","Rated":"Not R... |
0 | The Boys in the Band | {"Title":"The Boys in the Band","Year":"1970",... |
0 | The Dig | {"Title":"The Dig","Year":"2018","Rated":"Not ... |
0 | The Last Paradise | {"Title":"The Last Paradise","Year":"1955","Ra... |
0 | The Last Thing He Wanted | {"Title":"The Last Thing He Wanted","Year":"20... |
0 | The Main Event | {"Title":"The Main Event","Year":"1979","Rated... |
0 | My Father's Dragon | {"Title":"My Father's Dragon","Year":"1997","R... |
0 | Pinocchio | {"Title":"Pinocchio","Year":"1940","Rated":"G"... |
0 | The Power of the Dog | {"Title":"The Power of the Dog","Year":"2014",... |
0 | A Shaun the Sheep Movie: Farmageddon | {"Title":"A Shaun the Sheep Movie: Farmageddon... |
64 rows × 2 columns
Now we just add these fixed values back to the original dataframe, and drop any remainint errors - these errors comopose a negligible amount of the dataframe, and are likely due to extreme circumstances that are not reflective of broader trends (e.x. error returned bc two movies with same name)
netflix_ratings_df = netflix_ratings_df.append(fixed_netflix_errors_df, sort=False)
#drop any additional values that returned multiple IMDB pages. Negligent amount and thus easy to dispose of
netflix_ratings_df = netflix_ratings_df[netflix_ratings_df['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.\"}"]
netflix_ratings_df = netflix_ratings_df[netflix_ratings_df['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Error getting data.\"}"]
netflix_ratings_df
Title | JSON_DATA | Year | |
---|---|---|---|
0 | House of Cards | {"Title":"House of Cards","Year":"2013–2018","... | 2013 |
1 | Hemlock Grove | {"Title":"Hemlock Grove","Year":"2013–2015","R... | 2013 |
2 | Orange Is the New Black | {"Title":"Orange Is the New Black","Year":"201... | 2013 |
3 | Marco Polo | {"Title":"Marco Polo","Year":"2014–2016","Rate... | 2014 |
4 | Bloodline | {"Title":"Bloodline","Year":"2015–2017","Rated... | 2015 |
5 | Sense8 | {"Title":"Sense8","Year":"2015–2018","Rated":"... | 2015 |
6 | Narcos | {"Title":"Narcos","Year":"2015–2017","Rated":"... | 2015 |
7 | Stranger Things | {"Title":"Stranger Things","Year":"2016–","Rat... | 2016 |
8 | The Get Down | {"Title":"The Get Down","Year":"2016–2017","Ra... | 2016 |
9 | The Crown | {"Title":"The Crown","Year":"2016–","Rated":"T... | 2016 |
10 | Gilmore Girls: A Year in the Life | {"Title":"Gilmore Girls: A Year in the Life","... | the |
11 | The OA | {"Title":"The OA","Year":"2016–2019","Rated":"... | 2016 |
12 | A Series of Unfortunate Events | {"Title":"A Series of Unfortunate Events","Yea... | 2017 |
13 | 13 Reasons Why | {"Title":"13 Reasons Why","Year":"2017–","Rate... | 2017 |
14 | Gypsy | {"Title":"Gypsy","Year":"2017","Rated":"TV-MA"... | 2017 |
15 | Ozark | {"Title":"Ozark","Year":"2017–","Rated":"TV-MA... | 2017 |
16 | Mindhunter | {"Title":"Mindhunter","Year":"2017–","Rated":"... | 2017 |
17 | Godless | {"Title":"Godless","Year":"2017","Rated":"TV-M... | 2017 |
18 | Altered Carbon | {"Title":"Altered Carbon","Year":"2018–","Rate... | 2018 |
19 | Seven Seconds | {"Title":"Seven Seconds","Year":"2018","Rated"... | 2018 |
20 | Lost in Space | {"Title":"Lost in Space","Year":"1998","Rated"... | 1998 |
21 | The Innocents | {"Title":"The Innocents","Year":"1961","Rated"... | 1961 |
22 | The Haunting | {"Title":"The Haunting","Year":"1999","Rated":... | 1999 |
23 | Chilling Adventures of Sabrina | {"Title":"Chilling Adventures of Sabrina","Yea... | 2018 |
24 | Narcos: Mexico | {"Title":"Narcos: Mexico","Year":"2018–","Rate... | 2018 |
... | ... | ... | ... |
0 | The Magic Finger | {"Title":"The Magic Finger","Year":"1990","Rat... | NaN |
0 | Warrior Nun | {"Title":"Warrior Nun","Year":"2015","Rated":"... | NaN |
0 | The App | {"Title":"The App","Year":"2016","Rated":"N/A"... | NaN |
0 | A Fall from Grace | {"Title":"A Fall from Grace","Year":"2015","Ra... | NaN |
0 | The Paramedic | {"Title":"The Paramedic","Year":"1982","Rated"... | NaN |
0 | The Willoughbys | {"Title":"The Willoughbys","Year":"2020","Rate... | NaN |
0 | The Prom | {"Title":"The Prom","Year":"1982","Rated":"N/A... | NaN |
0 | Robin Robin | {"Title":"Robin & Robin","Year":"2012","Rated"... | NaN |
0 | All the Bright Places | {"Title":"All the Bright Places","Year":"2020"... | NaN |
0 | Beyond the Result | {"Title":"Al di la' del risultato (Beyond the ... | NaN |
0 | First Ladies | {"Title":"First Ladies","Year":"2012","Rated":... | NaN |
0 | Freaks | {"Title":"Freaks","Year":"1932","Rated":"Not R... | NaN |
0 | Hogar | {"Title":"Hogar","Year":"2011","Rated":"N/A","... | NaN |
0 | Jingle Jangle | {"Title":"Jingle Jangle","Year":"2017","Rated"... | NaN |
0 | Over the Moon | {"Title":"Over the Moon","Year":"1939","Rated"... | NaN |
0 | Sergio | {"Title":"Sergio","Year":"2009","Rated":"Not R... | NaN |
0 | The Boys in the Band | {"Title":"The Boys in the Band","Year":"1970",... | NaN |
0 | The Dig | {"Title":"The Dig","Year":"2018","Rated":"Not ... | NaN |
0 | The Last Paradise | {"Title":"The Last Paradise","Year":"1955","Ra... | NaN |
0 | The Last Thing He Wanted | {"Title":"The Last Thing He Wanted","Year":"20... | NaN |
0 | The Main Event | {"Title":"The Main Event","Year":"1979","Rated... | NaN |
0 | My Father's Dragon | {"Title":"My Father's Dragon","Year":"1997","R... | NaN |
0 | Pinocchio | {"Title":"Pinocchio","Year":"1940","Rated":"G"... | NaN |
0 | The Power of the Dog | {"Title":"The Power of the Dog","Year":"2014",... | NaN |
0 | A Shaun the Sheep Movie: Farmageddon | {"Title":"A Shaun the Sheep Movie: Farmageddon... | NaN |
1261 rows × 3 columns
We must once again reset the index, for the same reason previously discussed
netflix_ratings_df.reset_index(inplace = True, drop=True)
netflix_ratings_df
Title | JSON_DATA | Year | |
---|---|---|---|
0 | House of Cards | {"Title":"House of Cards","Year":"2013–2018","... | 2013 |
1 | Hemlock Grove | {"Title":"Hemlock Grove","Year":"2013–2015","R... | 2013 |
2 | Orange Is the New Black | {"Title":"Orange Is the New Black","Year":"201... | 2013 |
3 | Marco Polo | {"Title":"Marco Polo","Year":"2014–2016","Rate... | 2014 |
4 | Bloodline | {"Title":"Bloodline","Year":"2015–2017","Rated... | 2015 |
5 | Sense8 | {"Title":"Sense8","Year":"2015–2018","Rated":"... | 2015 |
6 | Narcos | {"Title":"Narcos","Year":"2015–2017","Rated":"... | 2015 |
7 | Stranger Things | {"Title":"Stranger Things","Year":"2016–","Rat... | 2016 |
8 | The Get Down | {"Title":"The Get Down","Year":"2016–2017","Ra... | 2016 |
9 | The Crown | {"Title":"The Crown","Year":"2016–","Rated":"T... | 2016 |
10 | Gilmore Girls: A Year in the Life | {"Title":"Gilmore Girls: A Year in the Life","... | the |
11 | The OA | {"Title":"The OA","Year":"2016–2019","Rated":"... | 2016 |
12 | A Series of Unfortunate Events | {"Title":"A Series of Unfortunate Events","Yea... | 2017 |
13 | 13 Reasons Why | {"Title":"13 Reasons Why","Year":"2017–","Rate... | 2017 |
14 | Gypsy | {"Title":"Gypsy","Year":"2017","Rated":"TV-MA"... | 2017 |
15 | Ozark | {"Title":"Ozark","Year":"2017–","Rated":"TV-MA... | 2017 |
16 | Mindhunter | {"Title":"Mindhunter","Year":"2017–","Rated":"... | 2017 |
17 | Godless | {"Title":"Godless","Year":"2017","Rated":"TV-M... | 2017 |
18 | Altered Carbon | {"Title":"Altered Carbon","Year":"2018–","Rate... | 2018 |
19 | Seven Seconds | {"Title":"Seven Seconds","Year":"2018","Rated"... | 2018 |
20 | Lost in Space | {"Title":"Lost in Space","Year":"1998","Rated"... | 1998 |
21 | The Innocents | {"Title":"The Innocents","Year":"1961","Rated"... | 1961 |
22 | The Haunting | {"Title":"The Haunting","Year":"1999","Rated":... | 1999 |
23 | Chilling Adventures of Sabrina | {"Title":"Chilling Adventures of Sabrina","Yea... | 2018 |
24 | Narcos: Mexico | {"Title":"Narcos: Mexico","Year":"2018–","Rate... | 2018 |
... | ... | ... | ... |
1236 | The Magic Finger | {"Title":"The Magic Finger","Year":"1990","Rat... | NaN |
1237 | Warrior Nun | {"Title":"Warrior Nun","Year":"2015","Rated":"... | NaN |
1238 | The App | {"Title":"The App","Year":"2016","Rated":"N/A"... | NaN |
1239 | A Fall from Grace | {"Title":"A Fall from Grace","Year":"2015","Ra... | NaN |
1240 | The Paramedic | {"Title":"The Paramedic","Year":"1982","Rated"... | NaN |
1241 | The Willoughbys | {"Title":"The Willoughbys","Year":"2020","Rate... | NaN |
1242 | The Prom | {"Title":"The Prom","Year":"1982","Rated":"N/A... | NaN |
1243 | Robin Robin | {"Title":"Robin & Robin","Year":"2012","Rated"... | NaN |
1244 | All the Bright Places | {"Title":"All the Bright Places","Year":"2020"... | NaN |
1245 | Beyond the Result | {"Title":"Al di la' del risultato (Beyond the ... | NaN |
1246 | First Ladies | {"Title":"First Ladies","Year":"2012","Rated":... | NaN |
1247 | Freaks | {"Title":"Freaks","Year":"1932","Rated":"Not R... | NaN |
1248 | Hogar | {"Title":"Hogar","Year":"2011","Rated":"N/A","... | NaN |
1249 | Jingle Jangle | {"Title":"Jingle Jangle","Year":"2017","Rated"... | NaN |
1250 | Over the Moon | {"Title":"Over the Moon","Year":"1939","Rated"... | NaN |
1251 | Sergio | {"Title":"Sergio","Year":"2009","Rated":"Not R... | NaN |
1252 | The Boys in the Band | {"Title":"The Boys in the Band","Year":"1970",... | NaN |
1253 | The Dig | {"Title":"The Dig","Year":"2018","Rated":"Not ... | NaN |
1254 | The Last Paradise | {"Title":"The Last Paradise","Year":"1955","Ra... | NaN |
1255 | The Last Thing He Wanted | {"Title":"The Last Thing He Wanted","Year":"20... | NaN |
1256 | The Main Event | {"Title":"The Main Event","Year":"1979","Rated... | NaN |
1257 | My Father's Dragon | {"Title":"My Father's Dragon","Year":"1997","R... | NaN |
1258 | Pinocchio | {"Title":"Pinocchio","Year":"1940","Rated":"G"... | NaN |
1259 | The Power of the Dog | {"Title":"The Power of the Dog","Year":"2014",... | NaN |
1260 | A Shaun the Sheep Movie: Farmageddon | {"Title":"A Shaun the Sheep Movie: Farmageddon... | NaN |
1261 rows × 3 columns
Now that we have a dataframe with each row representing one movie and its associated JSON data, we can parse this JSON data for interesting data. Specifically, we are looking for: Rating data, Rating count, Release Year, and Genre
netflix_ratings_df['Year'] = netflix_ratings_df['JSON_DATA'].apply(lambda x: x.split("Year")[1][3:7])
netflix_ratings_df['Rating'] = netflix_ratings_df['JSON_DATA'].apply(lambda x: x.split("imdbRating")[1][3:6])
netflix_ratings_df['Genre'] = netflix_ratings_df['JSON_DATA'].apply(lambda x: x.split("Genre")[1][3:6])
netflix_ratings_df['Genre'].unique()
#N/A will automatically be converted to np.nan
netflix_ratings_df["Genre"] = netflix_ratings_df["Genre"].map({
"Dra": "Drama",
"Cri": "Crime",
"Act": "Action",
"Com": "Comedy",
"Thr": "Thriller",
"Hor": "Horror",
"Bio": "Biography",
"Ani": "Animation",
"Mys": "Myster",
"Sci": "Sci-Fi",
"Sho": "Short",
"Adv": "Adventure",
"Rom": "Romance",
"Doc": "Documentary",
"Mus": "Music",
"Rea": "Reality",
"Fam": "Family",
"Fan": "Fantasy",
"Adu": "Adult"
})
#for now, we will drop the JSON data column. If in the future, we decide we want more data, we can always load it in again
netflix_ratings_df['Ratings_Count'] = netflix_ratings_df['JSON_DATA'].apply(lambda x: x.split("imdbVotes")[1].split(":")[1].replace("\"", '').replace("imdbID", '').replace(",", ''))
netflix_ratings_df['Ratings_Count'] = netflix_ratings_df['Ratings_Count'].replace(['N/A'], np.nan)
netflix_ratings_df['Ratings_Count'] = netflix_ratings_df['Ratings_Count'].astype(float)
netflix_ratings_df = netflix_ratings_df.drop(['JSON_DATA'], axis=1)
netflix_ratings_df
Title | Year | Rating | Genre | Ratings_Count | |
---|---|---|---|---|---|
0 | House of Cards | 2013 | 8.8 | Drama | 440131.0 |
1 | Hemlock Grove | 2013 | 7.2 | Horror | 34914.0 |
2 | Orange Is the New Black | 2013 | 8.1 | Comedy | 266392.0 |
3 | Marco Polo | 2014 | 8.0 | Adventure | 58101.0 |
4 | Bloodline | 2015 | 8.0 | Drama | 39969.0 |
5 | Sense8 | 2015 | 8.3 | Drama | 127594.0 |
6 | Narcos | 2015 | 8.8 | Biography | 311316.0 |
7 | Stranger Things | 2016 | 8.8 | Drama | 674756.0 |
8 | The Get Down | 2016 | 8.3 | Drama | 19773.0 |
9 | The Crown | 2016 | 8.7 | Drama | 94336.0 |
10 | Gilmore Girls: A Year in the Life | the | 7.8 | Comedy | 25478.0 |
11 | The OA | 2016 | 7.9 | Drama | 80249.0 |
12 | A Series of Unfortunate Events | 2017 | 7.8 | Adventure | 48499.0 |
13 | 13 Reasons Why | 2017 | 7.8 | Drama | 228605.0 |
14 | Gypsy | 2017 | 6.9 | Drama | 12198.0 |
15 | Ozark | 2017 | 8.3 | Crime | 116734.0 |
16 | Mindhunter | 2017 | 8.6 | Crime | 166449.0 |
17 | Godless | 2017 | 8.3 | Drama | 40933.0 |
18 | Altered Carbon | 2018 | 8.1 | Action | 110771.0 |
19 | Seven Seconds | 2018 | 7.7 | Crime | 10917.0 |
20 | Lost in Space | 1998 | 5.2 | Action | 67090.0 |
21 | The Innocents | 1961 | 7.8 | Horror | 24219.0 |
22 | The Haunting | 1999 | 5.0 | Fantasy | 68013.0 |
23 | Chilling Adventures of Sabrina | 2018 | 7.7 | Drama | 54931.0 |
24 | Narcos: Mexico | 2018 | 8.4 | Crime | 39194.0 |
... | ... | ... | ... | ... | ... |
1236 | The Magic Finger | 1990 | N/A | Animation | NaN |
1237 | Warrior Nun | 2015 | N/A | Action | NaN |
1238 | The App | 2016 | 6.9 | Short | 17.0 |
1239 | A Fall from Grace | 2015 | N/A | Drama | NaN |
1240 | The Paramedic | 1982 | 5.9 | Comedy | 69.0 |
1241 | The Willoughbys | 2020 | N/A | Animation | NaN |
1242 | The Prom | 1982 | 6.7 | NaN | 92.0 |
1243 | Robin Robin | 2012 | N/A | Short | NaN |
1244 | All the Bright Places | 2020 | N/A | Drama | NaN |
1245 | Beyond the Result | 2016 | N/A | Biography | NaN |
1246 | First Ladies | 2012 | N/A | Short | NaN |
1247 | Freaks | 1932 | 7.9 | Drama | 39211.0 |
1248 | Hogar | 2011 | N/A | Short | NaN |
1249 | Jingle Jangle | 2017 | N/A | Music | NaN |
1250 | Over the Moon | 1939 | 5.8 | Comedy | 173.0 |
1251 | Sergio | 2009 | 7.8 | Documentary | 228.0 |
1252 | The Boys in the Band | 1970 | 7.6 | Drama | 3740.0 |
1253 | The Dig | 2018 | 6.1 | Thriller | 510.0 |
1254 | The Last Paradise | 1955 | 7.0 | Documentary | 9.0 |
1255 | The Last Thing He Wanted | 2020 | N/A | Crime | NaN |
1256 | The Main Event | 1979 | 5.9 | Comedy | 2364.0 |
1257 | My Father's Dragon | 1997 | 6.5 | Animation | 16.0 |
1258 | Pinocchio | 1940 | 7.4 | Animation | 120078.0 |
1259 | The Power of the Dog | 2014 | N/A | Crime | NaN |
1260 | A Shaun the Sheep Movie: Farmageddon | 2019 | 7.1 | Animation | 1618.0 |
1261 rows × 5 columns
Our data is almost perfect, but there are still some flaws. Specifically, let's take a look at what happens when we run netflix_ratings_df.Year.unique()
netflix_ratings_df.Year.unique()
array(['2013', '2014', '2015', '2016', ' the', '2017', '2018', '1998', '1961', '1999', '2019', '2003', '2011', 'ater', '1986', '2006', '1996', '2005', '1966', '1989', '2010', '1995', '1993', '1979', '2007', '2012', '2004', '1978', '1908', '1982', '2008', '1994', '1967', '1974', '', '1990', '1924', '1992', '2002', 'f My', '2000', '2020', 'ght"', '1983', '1956', '1954', 'd Ma', '1991', '2001', '2009', '1898', '1985', '1932', '1939', '1970', '1955', '1997', '1940'], dtype=object)
Netflix started releasing original content in 2013. So what's going on here? Well let's take another look at this data.
pd.set_option('display.max_rows', 50)
netflix_ratings_df
Title | Year | Rating | Genre | Ratings_Count | |
---|---|---|---|---|---|
0 | House of Cards | 2013 | 8.8 | Drama | 440131.0 |
1 | Hemlock Grove | 2013 | 7.2 | Horror | 34914.0 |
2 | Orange Is the New Black | 2013 | 8.1 | Comedy | 266392.0 |
3 | Marco Polo | 2014 | 8.0 | Adventure | 58101.0 |
4 | Bloodline | 2015 | 8.0 | Drama | 39969.0 |
5 | Sense8 | 2015 | 8.3 | Drama | 127594.0 |
6 | Narcos | 2015 | 8.8 | Biography | 311316.0 |
7 | Stranger Things | 2016 | 8.8 | Drama | 674756.0 |
8 | The Get Down | 2016 | 8.3 | Drama | 19773.0 |
9 | The Crown | 2016 | 8.7 | Drama | 94336.0 |
10 | Gilmore Girls: A Year in the Life | the | 7.8 | Comedy | 25478.0 |
11 | The OA | 2016 | 7.9 | Drama | 80249.0 |
12 | A Series of Unfortunate Events | 2017 | 7.8 | Adventure | 48499.0 |
13 | 13 Reasons Why | 2017 | 7.8 | Drama | 228605.0 |
14 | Gypsy | 2017 | 6.9 | Drama | 12198.0 |
15 | Ozark | 2017 | 8.3 | Crime | 116734.0 |
16 | Mindhunter | 2017 | 8.6 | Crime | 166449.0 |
17 | Godless | 2017 | 8.3 | Drama | 40933.0 |
18 | Altered Carbon | 2018 | 8.1 | Action | 110771.0 |
19 | Seven Seconds | 2018 | 7.7 | Crime | 10917.0 |
20 | Lost in Space | 1998 | 5.2 | Action | 67090.0 |
21 | The Innocents | 1961 | 7.8 | Horror | 24219.0 |
22 | The Haunting | 1999 | 5.0 | Fantasy | 68013.0 |
23 | Chilling Adventures of Sabrina | 2018 | 7.7 | Drama | 54931.0 |
24 | Narcos: Mexico | 2018 | 8.4 | Crime | 39194.0 |
... | ... | ... | ... | ... | ... |
1236 | The Magic Finger | 1990 | N/A | Animation | NaN |
1237 | Warrior Nun | 2015 | N/A | Action | NaN |
1238 | The App | 2016 | 6.9 | Short | 17.0 |
1239 | A Fall from Grace | 2015 | N/A | Drama | NaN |
1240 | The Paramedic | 1982 | 5.9 | Comedy | 69.0 |
1241 | The Willoughbys | 2020 | N/A | Animation | NaN |
1242 | The Prom | 1982 | 6.7 | NaN | 92.0 |
1243 | Robin Robin | 2012 | N/A | Short | NaN |
1244 | All the Bright Places | 2020 | N/A | Drama | NaN |
1245 | Beyond the Result | 2016 | N/A | Biography | NaN |
1246 | First Ladies | 2012 | N/A | Short | NaN |
1247 | Freaks | 1932 | 7.9 | Drama | 39211.0 |
1248 | Hogar | 2011 | N/A | Short | NaN |
1249 | Jingle Jangle | 2017 | N/A | Music | NaN |
1250 | Over the Moon | 1939 | 5.8 | Comedy | 173.0 |
1251 | Sergio | 2009 | 7.8 | Documentary | 228.0 |
1252 | The Boys in the Band | 1970 | 7.6 | Drama | 3740.0 |
1253 | The Dig | 2018 | 6.1 | Thriller | 510.0 |
1254 | The Last Paradise | 1955 | 7.0 | Documentary | 9.0 |
1255 | The Last Thing He Wanted | 2020 | N/A | Crime | NaN |
1256 | The Main Event | 1979 | 5.9 | Comedy | 2364.0 |
1257 | My Father's Dragon | 1997 | 6.5 | Animation | 16.0 |
1258 | Pinocchio | 1940 | 7.4 | Animation | 120078.0 |
1259 | The Power of the Dog | 2014 | N/A | Crime | NaN |
1260 | A Shaun the Sheep Movie: Farmageddon | 2019 | 7.1 | Animation | 1618.0 |
1261 rows × 5 columns
Notice "into the deep" is listed as 1994. It looks like our API is conflating a netflix movie (release date TBD) with an already existing movie (see https://www.imdb.com/title/tt0110150/)
How can we solve this? Well, most of the movies this appears to be occuring with (including other examples in this dataframe, such as war party (https://www.imdb.com/title/tt0098619/), night on earth, pinnochio, etc, are conflating newly planned netflix movies with older films with the same name. Many of these movies have not yet been released, so they don't have IMDB pages. If they did, the API defaults to the newest verison. This can be show with the newest cinderella movie. If we give the api just the term "cinderella", it returns the 2015 version. see: (http://www.omdbapi.com/?t=cinderella&r=json&apikey=ed54ed5a). Thus, we can conclude that any film that returns and older version is a planned netflix movie that has not yet been released.
Thus, we can simply drop these.
#identify valid years
valid_years = ['2013', '2014', '2015', '2016', '2017', '2018', '2019']
#remove those that are in valid years
netflix_ratings_df = netflix_ratings_df[netflix_ratings_df['Year'].isin(valid_years)]
#confirm
netflix_ratings_df.Year.unique()
array(['2013', '2014', '2015', '2016', '2017', '2018', '2019'], dtype=object)
Great! the only years present in this dataframe are those in which netflix actually produced original content
Now we are going to find a Distibution of IMDB ratings for netflix movies!
#step 1: convert necessary dtypes, and replace any missing values in ratings column
netflix_ratings_df['Rating'] = netflix_ratings_df['Rating'].replace(['N/A'], np.nan)
netflix_ratings_df['Rating'] = netflix_ratings_df['Rating'].astype(float)
#step 2: plot it!
netflix_s = netflix_ratings_df['Rating'].dropna()
#netflix_ax = netflix_s.plot.hist(bins=10) #, cumulative=True, weights=netflix_w)
netflix_ratings_hist = netflix_ratings_df['Rating'].plot.hist(bins = 15, by="Rating") #, weights=netflix_ratings_df["Ratings_Count"])
#stpe 3: edit labels
netflix_ratings_hist.text(6.5, -20, 'IMBD Rating', ha='center')
netflix_ratings_hist.text(5.5, 180, 'Netflix Original Content')
Text(5.5, 180, 'Netflix Original Content')
To aggregate information for disney, we are going to grab the list of every title that is currently available on disney+ from this verge article (https://www.theverge.com/2019/10/14/20913417/disney-plus-launch-lineup-marvel-star-wars-pixar-tv-shows-movies-simpsons-national-geographic). We will then, much like we did for Netflix, convert these movies to the approriate URL for OMDB, and then grab the information we want out of the returned JSON unit.
#step 0: imports
import urllib.request
import bs4 as bs
import pandas as pd
import numpy as np
import requests
import xml.etree.ElementTree as ET
from io import StringIO
#step 1: Necessary Setting adjustments
pd.set_option('display.max_rows', 100) #we want to see a lot of rows
apikey = 'b9b7add3' #apikey to access omdb.
#step 2: pull page from theverge
disney_list = "https://www.theverge.com/2019/10/14/20913417/disney-plus-launch-lineup-marvel-star-wars-pixar-tv-shows-movies-simpsons-national-geographic"
request_disney = requests.get(disney_list)
source_disney = urllib.request.urlopen(disney_list).read()
soup = bs.BeautifulSoup(source_disney, 'html.parser')
#step 3: isolate title lines in HTML
list2 = soup.find_all('em')
list_true = list2[20:] #first 20 characters are explanatory, here we skip over htese
#step 4: create series out of title list
disney_films = pd.Series(list_true)
#step 5: turn it into a dataframe
disney_films_df = pd.DataFrame(disney_films, columns=['Title'])
#step 6: convert all titles to strings only
disney_films_df['Title'] = disney_films_df['Title'].apply(lambda x: str(x))
#step 7: replace <em> tags with. '' so we isolatetitles
disney_films_df['Title'] = disney_films_df['Title'].apply(lambda x: x.replace('<em>','').replace('</em>',''))
#Step 8: filter out extra data
disney_films_df = disney_films_df[:-5] #last 5 rows are explanatory/irrelevnt <em> tags. remove mannually
#step 9: display
disney_films_df
Title | |
---|---|
0 | Swiss Family Robinson |
1 | Miracle on 34th Street |
2 | Treasure Island |
3 | The Story of Robin Hood and His Merrie Men |
4 | The Living Desert |
5 | The Vanishing Prairie |
6 | 20,000 Leagues Under the Sea |
7 | Davy Crockett, King of the Wild Frontier |
8 | The African Lion |
9 | Davy Crockett and the River Pirates |
10 | Secrets of Life |
11 | Perri |
12 | Old Yeller |
13 | White Wilderness |
14 | The Sign of Zorro |
15 | The Shaggy Dog |
16 | Darby O’Gill and the Little People |
17 | Journey to the Center of the Earth |
18 | Jungle Cat |
19 | Pollyanna |
20 | The Absent-Minded Professor |
21 | The Parent Trap |
22 | Greyfriars Bobby |
23 | Babes in Toyland |
24 | The Prince and the Pauper |
25 | Almost Angels |
26 | Sammy, the Way-Out Seal |
27 | The Incredible Journey |
28 | Mary Poppins |
29 | Emil and the Detectives |
30 | Those Calloways |
31 | The Sound of Music |
32 | That Darn Cat! |
33 | The Ugly Dachshund |
34 | The Adventures of Bullwhip Griffin |
35 | Blackbeard’s Ghost (1968) |
36 | The Love Bug |
37 | The Computer Wore Tennis Shoes |
38 | The Barefoot Executive |
39 | The Million Dollar Duck |
40 | Bedknobs and Broomsticks |
41 | Justin Morgan Had a Horse |
42 | The Biscuit Eater |
43 | Snowball Express |
44 | Herbie Rides Again |
45 | The Bears and I |
46 | The Castaway Cowboy |
47 | The Strongest Man in the World |
48 | Escape to Witch Mountain |
49 | The Apple Dumpling Gang |
... | ... |
601 | Journey to Shark Eden |
602 | Great Migrations |
603 | Brain Games |
604 | The Incredible Dr. Pol |
605 | Secrets of the King Cobra |
606 | Winged Seduction: Birds of Paradise |
607 | Life Below Zero |
608 | Sharks of Lost Island |
609 | Miracle Landing on the Hudson |
610 | Dr. Oakley, Yukon Vet |
611 | Dr. K’s Exotic Animal ER |
612 | Wild Yellowstone |
613 | World’s Greatest Dogs |
614 | Expedition Mars: Spirit & Opportunity |
615 | Before the Flood |
616 | Sea of Hope: America’s Underwater Treasures |
617 | Atlantis Rising |
618 | Origins: The Journey of Humankind |
619 | Earth Live |
620 | Kingdom of the Apes: Battle Lines |
621 | Diana: In Her Own Words |
622 | Breaking2 |
623 | Jane |
624 | Titanic: 20 Years Later With James Cameron |
625 | Secrets of Christ’s Tomb: Explorer Special |
626 | Man Among Cheetahs |
627 | Decorating Disney: Holiday Magic |
628 | Planet of the Birds |
629 | Giants of the Deep Blue |
630 | Rocky Mountain Animal Rescue |
631 | Into the Okavango |
632 | Drain the Oceans |
633 | Science Fair |
634 | Free Solo |
635 | Under The Sea: A Descendants Short Story |
636 | Mars: Inside SpaceX |
637 | Mission to the Sun |
638 | The Flood |
639 | Tree Climbing Lions |
640 | Paris to Pittsburgh |
641 | Into the Grand Canyon |
642 | Lost Treasures of the Maya |
643 | The Lost Tomb of Alexander the Great |
644 | Hostile Planet |
645 | Apollo: Missions to the Moon |
646 | Gordon Ramsay: Uncharted |
647 | Kingdom of the White Wolf |
648 | The Simpsons |
649 | Ice Age: The Great Egg-Scapade |
650 | Little Einsteins |
651 rows × 1 columns
Now that we have a list of titles, we can push them to the OMBD API to get a JSON object containing relevant infomration.
#current api key: ed54ed5a
#optional api keys: aa11aa8, a7e31369 or your own!
#if you get the "failed at url" message, create a new api key, activate it, and paste it into the line ("http://www.omdbapi.com/?t=%s&r=json&apikey=PASTEHERE)"
from urllib.parse import urlencode
problematic_titles = []
returned_null = []
errors = 0
apikey="ed54ed5a"
disney_films_df_best = pd.DataFrame()
for row in disney_films_df['Title']:
try:
row_search = urllib.parse.quote(row)
url = ("http://www.omdbapi.com/?t=%s&r=json&apikey=4148dbf1" % row_search)
request = requests.get(url)
source = urllib.request.urlopen(url).read()
source = source.decode()
d = {'Title' : row, 'JSON_DATA' : source}
df = pd.DataFrame(data=d, index=[0])
disney_films_df_best = disney_films_df_best.append(df)
except:
print("failed at %s" % url)
disney_films_df_best
Title | JSON_DATA | |
---|---|---|
0 | Swiss Family Robinson | {"Title":"Swiss Family Robinson","Year":"1960"... |
0 | Miracle on 34th Street | {"Title":"Miracle on 34th Street","Year":"1947... |
0 | Treasure Island | {"Title":"Treasure Island","Year":"1950","Rate... |
0 | The Story of Robin Hood and His Merrie Men | {"Title":"The Story of Robin Hood and His Merr... |
0 | The Living Desert | {"Title":"The Living Desert","Year":"1953","Ra... |
0 | The Vanishing Prairie | {"Title":"The Vanishing Prairie","Year":"1954"... |
0 | 20,000 Leagues Under the Sea | {"Title":"20,000 Leagues Under the Sea","Year"... |
0 | Davy Crockett, King of the Wild Frontier | {"Title":"Davy Crockett: King of the Wild Fron... |
0 | The African Lion | {"Title":"The African Lion","Year":"1955","Rat... |
0 | Davy Crockett and the River Pirates | {"Title":"Davy Crockett and the River Pirates"... |
0 | Secrets of Life | {"Title":"Secrets of Life","Year":"1956","Rate... |
0 | Perri | {"Title":"Perri","Year":"1957","Rated":"Approv... |
0 | Old Yeller | {"Title":"Old Yeller","Year":"1957","Rated":"A... |
0 | White Wilderness | {"Title":"White Wilderness","Year":"1958","Rat... |
0 | The Sign of Zorro | {"Title":"The Sign of Zorro","Year":"1958","Ra... |
0 | The Shaggy Dog | {"Title":"The Shaggy Dog","Year":"2006","Rated... |
0 | Darby O’Gill and the Little People | {"Response":"False","Error":"Movie not found!"} |
0 | Journey to the Center of the Earth | {"Title":"Journey to the Center of the Earth",... |
0 | Jungle Cat | {"Title":"Jungle Cat","Year":"1960","Rated":"A... |
0 | Pollyanna | {"Title":"Pollyanna","Year":"1960","Rated":"Ap... |
0 | The Absent-Minded Professor | {"Title":"The Absent-Minded Professor","Year":... |
0 | The Parent Trap | {"Title":"The Parent Trap","Year":"1998","Rate... |
0 | Greyfriars Bobby | {"Title":"Greyfriars Bobby: The True Story of ... |
0 | Babes in Toyland | {"Title":"Babes in Toyland","Year":"1960","Rat... |
0 | The Prince and the Pauper | {"Title":"The Prince and the Pauper","Year":"1... |
0 | Almost Angels | {"Title":"Almost Angels","Year":"1962","Rated"... |
0 | Sammy, the Way-Out Seal | {"Response":"False","Error":"Movie not found!"} |
0 | The Incredible Journey | {"Title":"The Incredible Journey","Year":"1963... |
0 | Mary Poppins | {"Title":"Mary Poppins","Year":"1964","Rated":... |
0 | Emil and the Detectives | {"Title":"Emil and the Detectives","Year":"200... |
0 | Those Calloways | {"Title":"Those Calloways","Year":"1965","Rate... |
0 | The Sound of Music | {"Title":"The Sound of Music","Year":"1965","R... |
0 | That Darn Cat! | {"Title":"That Darn Cat!","Year":"1965","Rated... |
0 | The Ugly Dachshund | {"Title":"The Ugly Dachshund","Year":"1966","R... |
0 | The Adventures of Bullwhip Griffin | {"Title":"The Adventures of Bullwhip Griffin",... |
0 | Blackbeard’s Ghost (1968) | {"Response":"False","Error":"Movie not found!"} |
0 | The Love Bug | {"Title":"The Love Bug","Year":"1968","Rated":... |
0 | The Computer Wore Tennis Shoes | {"Title":"The Computer Wore Tennis Shoes","Yea... |
0 | The Barefoot Executive | {"Title":"The Barefoot Executive","Year":"1971... |
0 | The Million Dollar Duck | {"Title":"The Million Dollar Duck","Year":"197... |
0 | Bedknobs and Broomsticks | {"Title":"Bedknobs and Broomsticks","Year":"19... |
0 | Justin Morgan Had a Horse | {"Title":"Justin Morgan Had a Horse","Year":"1... |
0 | The Biscuit Eater | {"Title":"The Biscuit Eater","Year":"1972","Ra... |
0 | Snowball Express | {"Title":"Snowball Express","Year":"1972","Rat... |
0 | Herbie Rides Again | {"Title":"Herbie Rides Again","Year":"1974","R... |
0 | The Bears and I | {"Title":"The Bears and I","Year":"1974","Rate... |
0 | The Castaway Cowboy | {"Title":"The Castaway Cowboy","Year":"1974","... |
0 | The Strongest Man in the World | {"Title":"The Strongest Man in the World","Yea... |
0 | Escape to Witch Mountain | {"Title":"Escape to Witch Mountain","Year":"19... |
0 | The Apple Dumpling Gang | {"Title":"The Apple Dumpling Gang","Year":"197... |
... | ... | ... |
0 | Journey to Shark Eden | {"Response":"False","Error":"Movie not found!"} |
0 | Great Migrations | {"Title":"Great Migrations","Year":"2010–","Ra... |
0 | Brain Games | {"Title":"Brain Games","Year":"2011–","Rated":... |
0 | The Incredible Dr. Pol | {"Title":"The Incredible Dr. Pol","Year":"2011... |
0 | Secrets of the King Cobra | {"Response":"False","Error":"Movie not found!"} |
0 | Winged Seduction: Birds of Paradise | {"Title":"Winged Seduction: Birds of Paradise"... |
0 | Life Below Zero | {"Title":"Life Below Zero","Year":"2013–","Rat... |
0 | Sharks of Lost Island | {"Title":"Sharks of Lost Island","Year":"2013"... |
0 | Miracle Landing on the Hudson | {"Title":"Miracle Landing on the Hudson","Year... |
0 | Dr. Oakley, Yukon Vet | {"Title":"Dr. Oakley, Yukon Vet","Year":"2014–... |
0 | Dr. K’s Exotic Animal ER | {"Title":"Dr K's Exotic Animal ER","Year":"201... |
0 | Wild Yellowstone | {"Title":"Wild Yellowstone","Year":"2015","Rat... |
0 | World’s Greatest Dogs | {"Response":"False","Error":"Movie not found!"} |
0 | Expedition Mars: Spirit & Opportunity | {"Response":"False","Error":"Movie not found!"} |
0 | Before the Flood | {"Title":"Before the Flood","Year":"2016","Rat... |
0 | Sea of Hope: America’s Underwater Treasures | {"Title":"Sea of Hope: America's Underwater Tr... |
0 | Atlantis Rising | {"Title":"Atlantis Rising","Year":"2017","Rate... |
0 | Origins: The Journey of Humankind | {"Title":"Origins: The Journey of Humankind","... |
0 | Earth Live | {"Title":"Earth Live","Year":"2017","Rated":"N... |
0 | Kingdom of the Apes: Battle Lines | {"Response":"False","Error":"Movie not found!"} |
0 | Diana: In Her Own Words | {"Title":"Diana: In Her Own Words","Year":"201... |
0 | Breaking2 | {"Title":"Breaking2","Year":"2017","Rated":"N/... |
0 | Jane | {"Title":"Jane","Year":"2017","Rated":"PG","Re... |
0 | Titanic: 20 Years Later With James Cameron | {"Title":"Titanic: 20 Years Later with James C... |
0 | Secrets of Christ’s Tomb: Explorer Special | {"Response":"False","Error":"Movie not found!"} |
0 | Man Among Cheetahs | {"Title":"Man Among Cheetahs","Year":"2017","R... |
0 | Decorating Disney: Holiday Magic | {"Title":"Decorating Disney: Holiday Magic","Y... |
0 | Planet of the Birds | {"Response":"False","Error":"Movie not found!"} |
0 | Giants of the Deep Blue | {"Response":"False","Error":"Movie not found!"} |
0 | Rocky Mountain Animal Rescue | {"Title":"Rocky Mountain Animal Rescue","Year"... |
0 | Into the Okavango | {"Title":"Into The Okavango","Year":"2017","Ra... |
0 | Drain the Oceans | {"Title":"Drain the Oceans","Year":"2018–","Ra... |
0 | Science Fair | {"Title":"Science Fair","Year":"2018","Rated":... |
0 | Free Solo | {"Title":"Free Solo","Year":"2018","Rated":"PG... |
0 | Under The Sea: A Descendants Short Story | {"Response":"False","Error":"Movie not found!"} |
0 | Mars: Inside SpaceX | {"Title":"MARS: Inside SpaceX","Year":"2018","... |
0 | Mission to the Sun | {"Title":"Mission to the Sun","Year":"2018","R... |
0 | The Flood | {"Title":"The Flood","Year":"2019","Rated":"N/... |
0 | Tree Climbing Lions | {"Response":"False","Error":"Movie not found!"} |
0 | Paris to Pittsburgh | {"Title":"Paris to Pittsburgh","Year":"2018","... |
0 | Into the Grand Canyon | {"Response":"False","Error":"Movie not found!"} |
0 | Lost Treasures of the Maya | {"Title":"Lost Treasures of the Maya Snake Kin... |
0 | The Lost Tomb of Alexander the Great | {"Title":"The Lost Tomb of Alexander the Great... |
0 | Hostile Planet | {"Title":"Hostile Planet","Year":"2019–","Rate... |
0 | Apollo: Missions to the Moon | {"Title":"Apollo: Missions to the Moon","Year"... |
0 | Gordon Ramsay: Uncharted | {"Title":"Gordon Ramsay: Uncharted","Year":"20... |
0 | Kingdom of the White Wolf | {"Title":"Kingdom of the White Wolf","Year":"2... |
0 | The Simpsons | {"Title":"The Simpsons","Year":"1989–","Rated"... |
0 | Ice Age: The Great Egg-Scapade | {"Title":"Ice Age: The Great Egg-Scapade","Yea... |
0 | Little Einsteins | {"Title":"Little Einsteins","Year":"2005–","Ra... |
651 rows × 2 columns
#drop duplicates and measure and display table
disney_films_df_best = disney_films_df_best.drop_duplicates(subset="Title", keep='first')
disney_films_df_best.count()
disney_films_df_best
Title | JSON_DATA | |
---|---|---|
0 | Swiss Family Robinson | {"Title":"Swiss Family Robinson","Year":"1960"... |
0 | Miracle on 34th Street | {"Title":"Miracle on 34th Street","Year":"1947... |
0 | Treasure Island | {"Title":"Treasure Island","Year":"1950","Rate... |
0 | The Story of Robin Hood and His Merrie Men | {"Title":"The Story of Robin Hood and His Merr... |
0 | The Living Desert | {"Title":"The Living Desert","Year":"1953","Ra... |
0 | The Vanishing Prairie | {"Title":"The Vanishing Prairie","Year":"1954"... |
0 | 20,000 Leagues Under the Sea | {"Title":"20,000 Leagues Under the Sea","Year"... |
0 | Davy Crockett, King of the Wild Frontier | {"Title":"Davy Crockett: King of the Wild Fron... |
0 | The African Lion | {"Title":"The African Lion","Year":"1955","Rat... |
0 | Davy Crockett and the River Pirates | {"Title":"Davy Crockett and the River Pirates"... |
0 | Secrets of Life | {"Title":"Secrets of Life","Year":"1956","Rate... |
0 | Perri | {"Title":"Perri","Year":"1957","Rated":"Approv... |
0 | Old Yeller | {"Title":"Old Yeller","Year":"1957","Rated":"A... |
0 | White Wilderness | {"Title":"White Wilderness","Year":"1958","Rat... |
0 | The Sign of Zorro | {"Title":"The Sign of Zorro","Year":"1958","Ra... |
0 | The Shaggy Dog | {"Title":"The Shaggy Dog","Year":"2006","Rated... |
0 | Darby O’Gill and the Little People | {"Response":"False","Error":"Movie not found!"} |
0 | Journey to the Center of the Earth | {"Title":"Journey to the Center of the Earth",... |
0 | Jungle Cat | {"Title":"Jungle Cat","Year":"1960","Rated":"A... |
0 | Pollyanna | {"Title":"Pollyanna","Year":"1960","Rated":"Ap... |
0 | The Absent-Minded Professor | {"Title":"The Absent-Minded Professor","Year":... |
0 | The Parent Trap | {"Title":"The Parent Trap","Year":"1998","Rate... |
0 | Greyfriars Bobby | {"Title":"Greyfriars Bobby: The True Story of ... |
0 | Babes in Toyland | {"Title":"Babes in Toyland","Year":"1960","Rat... |
0 | The Prince and the Pauper | {"Title":"The Prince and the Pauper","Year":"1... |
0 | Almost Angels | {"Title":"Almost Angels","Year":"1962","Rated"... |
0 | Sammy, the Way-Out Seal | {"Response":"False","Error":"Movie not found!"} |
0 | The Incredible Journey | {"Title":"The Incredible Journey","Year":"1963... |
0 | Mary Poppins | {"Title":"Mary Poppins","Year":"1964","Rated":... |
0 | Emil and the Detectives | {"Title":"Emil and the Detectives","Year":"200... |
0 | Those Calloways | {"Title":"Those Calloways","Year":"1965","Rate... |
0 | The Sound of Music | {"Title":"The Sound of Music","Year":"1965","R... |
0 | That Darn Cat! | {"Title":"That Darn Cat!","Year":"1965","Rated... |
0 | The Ugly Dachshund | {"Title":"The Ugly Dachshund","Year":"1966","R... |
0 | The Adventures of Bullwhip Griffin | {"Title":"The Adventures of Bullwhip Griffin",... |
0 | Blackbeard’s Ghost (1968) | {"Response":"False","Error":"Movie not found!"} |
0 | The Love Bug | {"Title":"The Love Bug","Year":"1968","Rated":... |
0 | The Computer Wore Tennis Shoes | {"Title":"The Computer Wore Tennis Shoes","Yea... |
0 | The Barefoot Executive | {"Title":"The Barefoot Executive","Year":"1971... |
0 | The Million Dollar Duck | {"Title":"The Million Dollar Duck","Year":"197... |
0 | Bedknobs and Broomsticks | {"Title":"Bedknobs and Broomsticks","Year":"19... |
0 | Justin Morgan Had a Horse | {"Title":"Justin Morgan Had a Horse","Year":"1... |
0 | The Biscuit Eater | {"Title":"The Biscuit Eater","Year":"1972","Ra... |
0 | Snowball Express | {"Title":"Snowball Express","Year":"1972","Rat... |
0 | Herbie Rides Again | {"Title":"Herbie Rides Again","Year":"1974","R... |
0 | The Bears and I | {"Title":"The Bears and I","Year":"1974","Rate... |
0 | The Castaway Cowboy | {"Title":"The Castaway Cowboy","Year":"1974","... |
0 | The Strongest Man in the World | {"Title":"The Strongest Man in the World","Yea... |
0 | Escape to Witch Mountain | {"Title":"Escape to Witch Mountain","Year":"19... |
0 | The Apple Dumpling Gang | {"Title":"The Apple Dumpling Gang","Year":"197... |
... | ... | ... |
0 | Journey to Shark Eden | {"Response":"False","Error":"Movie not found!"} |
0 | Great Migrations | {"Title":"Great Migrations","Year":"2010–","Ra... |
0 | Brain Games | {"Title":"Brain Games","Year":"2011–","Rated":... |
0 | The Incredible Dr. Pol | {"Title":"The Incredible Dr. Pol","Year":"2011... |
0 | Secrets of the King Cobra | {"Response":"False","Error":"Movie not found!"} |
0 | Winged Seduction: Birds of Paradise | {"Title":"Winged Seduction: Birds of Paradise"... |
0 | Life Below Zero | {"Title":"Life Below Zero","Year":"2013–","Rat... |
0 | Sharks of Lost Island | {"Title":"Sharks of Lost Island","Year":"2013"... |
0 | Miracle Landing on the Hudson | {"Title":"Miracle Landing on the Hudson","Year... |
0 | Dr. Oakley, Yukon Vet | {"Title":"Dr. Oakley, Yukon Vet","Year":"2014–... |
0 | Dr. K’s Exotic Animal ER | {"Title":"Dr K's Exotic Animal ER","Year":"201... |
0 | Wild Yellowstone | {"Title":"Wild Yellowstone","Year":"2015","Rat... |
0 | World’s Greatest Dogs | {"Response":"False","Error":"Movie not found!"} |
0 | Expedition Mars: Spirit & Opportunity | {"Response":"False","Error":"Movie not found!"} |
0 | Before the Flood | {"Title":"Before the Flood","Year":"2016","Rat... |
0 | Sea of Hope: America’s Underwater Treasures | {"Title":"Sea of Hope: America's Underwater Tr... |
0 | Atlantis Rising | {"Title":"Atlantis Rising","Year":"2017","Rate... |
0 | Origins: The Journey of Humankind | {"Title":"Origins: The Journey of Humankind","... |
0 | Earth Live | {"Title":"Earth Live","Year":"2017","Rated":"N... |
0 | Kingdom of the Apes: Battle Lines | {"Response":"False","Error":"Movie not found!"} |
0 | Diana: In Her Own Words | {"Title":"Diana: In Her Own Words","Year":"201... |
0 | Breaking2 | {"Title":"Breaking2","Year":"2017","Rated":"N/... |
0 | Jane | {"Title":"Jane","Year":"2017","Rated":"PG","Re... |
0 | Titanic: 20 Years Later With James Cameron | {"Title":"Titanic: 20 Years Later with James C... |
0 | Secrets of Christ’s Tomb: Explorer Special | {"Response":"False","Error":"Movie not found!"} |
0 | Man Among Cheetahs | {"Title":"Man Among Cheetahs","Year":"2017","R... |
0 | Decorating Disney: Holiday Magic | {"Title":"Decorating Disney: Holiday Magic","Y... |
0 | Planet of the Birds | {"Response":"False","Error":"Movie not found!"} |
0 | Giants of the Deep Blue | {"Response":"False","Error":"Movie not found!"} |
0 | Rocky Mountain Animal Rescue | {"Title":"Rocky Mountain Animal Rescue","Year"... |
0 | Into the Okavango | {"Title":"Into The Okavango","Year":"2017","Ra... |
0 | Drain the Oceans | {"Title":"Drain the Oceans","Year":"2018–","Ra... |
0 | Science Fair | {"Title":"Science Fair","Year":"2018","Rated":... |
0 | Free Solo | {"Title":"Free Solo","Year":"2018","Rated":"PG... |
0 | Under The Sea: A Descendants Short Story | {"Response":"False","Error":"Movie not found!"} |
0 | Mars: Inside SpaceX | {"Title":"MARS: Inside SpaceX","Year":"2018","... |
0 | Mission to the Sun | {"Title":"Mission to the Sun","Year":"2018","R... |
0 | The Flood | {"Title":"The Flood","Year":"2019","Rated":"N/... |
0 | Tree Climbing Lions | {"Response":"False","Error":"Movie not found!"} |
0 | Paris to Pittsburgh | {"Title":"Paris to Pittsburgh","Year":"2018","... |
0 | Into the Grand Canyon | {"Response":"False","Error":"Movie not found!"} |
0 | Lost Treasures of the Maya | {"Title":"Lost Treasures of the Maya Snake Kin... |
0 | The Lost Tomb of Alexander the Great | {"Title":"The Lost Tomb of Alexander the Great... |
0 | Hostile Planet | {"Title":"Hostile Planet","Year":"2019–","Rate... |
0 | Apollo: Missions to the Moon | {"Title":"Apollo: Missions to the Moon","Year"... |
0 | Gordon Ramsay: Uncharted | {"Title":"Gordon Ramsay: Uncharted","Year":"20... |
0 | Kingdom of the White Wolf | {"Title":"Kingdom of the White Wolf","Year":"2... |
0 | The Simpsons | {"Title":"The Simpsons","Year":"1989–","Rated"... |
0 | Ice Age: The Great Egg-Scapade | {"Title":"Ice Age: The Great Egg-Scapade","Yea... |
0 | Little Einsteins | {"Title":"Little Einsteins","Year":"2005–","Ra... |
647 rows × 2 columns
Now, Let's check for errors, Like we did with netflix
error_checking = disney_films_df_best.copy()
disney_film_errors = error_checking[error_checking['JSON_DATA'] == "{\"Response\":\"False\",\"Error\":\"Movie not found!\"}"]
disney_film_errors
Title | JSON_DATA | |
---|---|---|
0 | Darby O’Gill and the Little People | {"Response":"False","Error":"Movie not found!"} |
0 | Sammy, the Way-Out Seal | {"Response":"False","Error":"Movie not found!"} |
0 | Blackbeard’s Ghost (1968) | {"Response":"False","Error":"Movie not found!"} |
0 | Sultan and the Rock Star (1980) | {"Response":"False","Error":"Movie not found!"} |
0 | Mr. Boogedy (1986) | {"Response":"False","Error":"Movie not found!"} |
0 | Fuzzbucket (1986) | {"Response":"False","Error":"Movie not found!"} |
0 | Turner & Hooch | {"Response":"False","Error":"Movie not found!"} |
0 | Three Men and a Little Lady | {"Response":"False","Error":"Movie not found!"} |
0 | I’ll Be Home for Christmas | {"Response":"False","Error":"Movie not found!"} |
0 | Don’t Look Under the Bed | {"Response":"False","Error":"Movie not found!"} |
0 | America’s Heart and Soul | {"Response":"False","Error":"Movie not found!"} |
0 | High School Musical 3: Senior Year | {"Response":"False","Error":"Movie not found!"} |
0 | Teen Beach Movie 2 | {"Response":"False","Error":"Movie not found!"} |
0 | Oliver & Company | {"Response":"False","Error":"Movie not found!"} |
0 | Pocahontas II: Journey to a New World | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King II: Simba’s Pride | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid II: Return to the Sea | {"Response":"False","Error":"Movie not found!"} |
0 | Lady and the Tramp II: Scamp’s Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella II: Dreams Come True | {"Response":"False","Error":"Movie not found!"} |
0 | The Hunchback of Notre Dame II | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Tarzan & Jane | {"Response":"False","Error":"Movie not found!"} |
0 | 101 Dalmatians II: Patch’s London Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Recess: Taking the 5th Grade | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King 1½ | {"Response":"False","Error":"Movie not found!"} |
0 | Kim Possible Movie: So the Drama | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch 2: Stitch Has a Glitch | {"Response":"False","Error":"Movie not found!"} |
0 | Bambi II | {"Response":"False","Error":"Movie not found!"} |
0 | Garfield: A Tail of Two Kitties | {"Response":"False","Error":"Movie not found!"} |
0 | Leroy & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella III: A Twist in Time | {"Response":"False","Error":"Movie not found!"} |
0 | Casebusters | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Timon & Pumbaa | {"Response":"False","Error":"Movie not found!"} |
0 | Mighty Ducks - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Hercules - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Even Stevens (2000) | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch: The Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Suite Life of Zack & Cody | {"Response":"False","Error":"Movie not found!"} |
0 | My Friends Tigger & Pooh | {"Response":"False","Error":"Movie not found!"} |
0 | Crash & Bernstein | {"Response":"False","Error":"Movie not found!"} |
0 | The Muppets - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Book of Once Upon a Time | {"Response":"False","Error":"Movie not found!"} |
0 | Captain Jake and the Never Land Pirates | {"Response":"False","Error":"Movie not found!"} |
0 | Rapunzel’s Tangled Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Coop & Cami Ask the World | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars- The Lost Missions -... | {"Response":"False","Error":"Movie not found!"} |
0 | LEGO Star Wars: The New Yoda Chronicles | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man and His Amazing Friends - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Comics Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Incredible Hulk – Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Avengers: United They Stand | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man Unlimited - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men: Evolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man Armored Adventures - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Ultimate Spider-Man | {"Response":"False","Error":"Movie not found!"} |
0 | Hulk and the Agents of S.M.A.S.H. - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers Assemble - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Guardians of the Galaxy - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Ultron Revolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Ultimate Spider-Man Vs. The Sinister ... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Secret Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Black Panther’s Quest - Ser... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Guardians of the Galaxy: Mission Brea... | {"Response":"False","Error":"Movie not found!"} |
0 | Stonehenge Decoded: Secrets Revealed | {"Response":"False","Error":"Movie not found!"} |
0 | Easter Island Unsolved | {"Response":"False","Error":"Movie not found!"} |
0 | Journey to Shark Eden | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of the King Cobra | {"Response":"False","Error":"Movie not found!"} |
0 | World’s Greatest Dogs | {"Response":"False","Error":"Movie not found!"} |
0 | Expedition Mars: Spirit & Opportunity | {"Response":"False","Error":"Movie not found!"} |
0 | Kingdom of the Apes: Battle Lines | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of Christ’s Tomb: Explorer Special | {"Response":"False","Error":"Movie not found!"} |
0 | Planet of the Birds | {"Response":"False","Error":"Movie not found!"} |
0 | Giants of the Deep Blue | {"Response":"False","Error":"Movie not found!"} |
0 | Under The Sea: A Descendants Short Story | {"Response":"False","Error":"Movie not found!"} |
0 | Tree Climbing Lions | {"Response":"False","Error":"Movie not found!"} |
0 | Into the Grand Canyon | {"Response":"False","Error":"Movie not found!"} |
The errors here are a bit more complicated than they were for netflix.
"teen beach movie 2", for insantce, fails because IMDB lists it as "Teen beach 2." That being said, there are still some patterns we can try to fix.
Some movies, for instance, have the year they were released in parenthesis next to their name. in the case of blackbeard's ghost, for instance, this makes the API fail to find it. The first thing well do is thus detect and fix those parenthesis.
disney_film_errors['Title'] = disney_film_errors['Title'].str.split('(').str[0]
disney_film_errors
Title | JSON_DATA | |
---|---|---|
0 | Darby O’Gill and the Little People | {"Response":"False","Error":"Movie not found!"} |
0 | Sammy, the Way-Out Seal | {"Response":"False","Error":"Movie not found!"} |
0 | Blackbeard’s Ghost | {"Response":"False","Error":"Movie not found!"} |
0 | Sultan and the Rock Star | {"Response":"False","Error":"Movie not found!"} |
0 | Mr. Boogedy | {"Response":"False","Error":"Movie not found!"} |
0 | Fuzzbucket | {"Response":"False","Error":"Movie not found!"} |
0 | Turner & Hooch | {"Response":"False","Error":"Movie not found!"} |
0 | Three Men and a Little Lady | {"Response":"False","Error":"Movie not found!"} |
0 | I’ll Be Home for Christmas | {"Response":"False","Error":"Movie not found!"} |
0 | Don’t Look Under the Bed | {"Response":"False","Error":"Movie not found!"} |
0 | America’s Heart and Soul | {"Response":"False","Error":"Movie not found!"} |
0 | High School Musical 3: Senior Year | {"Response":"False","Error":"Movie not found!"} |
0 | Teen Beach Movie 2 | {"Response":"False","Error":"Movie not found!"} |
0 | Oliver & Company | {"Response":"False","Error":"Movie not found!"} |
0 | Pocahontas II: Journey to a New World | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King II: Simba’s Pride | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid II: Return to the Sea | {"Response":"False","Error":"Movie not found!"} |
0 | Lady and the Tramp II: Scamp’s Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella II: Dreams Come True | {"Response":"False","Error":"Movie not found!"} |
0 | The Hunchback of Notre Dame II | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Tarzan & Jane | {"Response":"False","Error":"Movie not found!"} |
0 | 101 Dalmatians II: Patch’s London Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Recess: Taking the 5th Grade | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King 1½ | {"Response":"False","Error":"Movie not found!"} |
0 | Kim Possible Movie: So the Drama | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch 2: Stitch Has a Glitch | {"Response":"False","Error":"Movie not found!"} |
0 | Bambi II | {"Response":"False","Error":"Movie not found!"} |
0 | Garfield: A Tail of Two Kitties | {"Response":"False","Error":"Movie not found!"} |
0 | Leroy & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella III: A Twist in Time | {"Response":"False","Error":"Movie not found!"} |
0 | Casebusters | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Timon & Pumbaa | {"Response":"False","Error":"Movie not found!"} |
0 | Mighty Ducks - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Hercules - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Even Stevens | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch: The Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Suite Life of Zack & Cody | {"Response":"False","Error":"Movie not found!"} |
0 | My Friends Tigger & Pooh | {"Response":"False","Error":"Movie not found!"} |
0 | Crash & Bernstein | {"Response":"False","Error":"Movie not found!"} |
0 | The Muppets - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Book of Once Upon a Time | {"Response":"False","Error":"Movie not found!"} |
0 | Captain Jake and the Never Land Pirates | {"Response":"False","Error":"Movie not found!"} |
0 | Rapunzel’s Tangled Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Coop & Cami Ask the World | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars- The Lost Missions -... | {"Response":"False","Error":"Movie not found!"} |
0 | LEGO Star Wars: The New Yoda Chronicles | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man and His Amazing Friends - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Comics Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Incredible Hulk – Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Avengers: United They Stand | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man Unlimited - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men: Evolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man Armored Adventures - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Ultimate Spider-Man | {"Response":"False","Error":"Movie not found!"} |
0 | Hulk and the Agents of S.M.A.S.H. - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers Assemble - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Guardians of the Galaxy - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Ultron Revolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Ultimate Spider-Man Vs. The Sinister ... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Secret Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Black Panther’s Quest - Ser... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Guardians of the Galaxy: Mission Brea... | {"Response":"False","Error":"Movie not found!"} |
0 | Stonehenge Decoded: Secrets Revealed | {"Response":"False","Error":"Movie not found!"} |
0 | Easter Island Unsolved | {"Response":"False","Error":"Movie not found!"} |
0 | Journey to Shark Eden | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of the King Cobra | {"Response":"False","Error":"Movie not found!"} |
0 | World’s Greatest Dogs | {"Response":"False","Error":"Movie not found!"} |
0 | Expedition Mars: Spirit & Opportunity | {"Response":"False","Error":"Movie not found!"} |
0 | Kingdom of the Apes: Battle Lines | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of Christ’s Tomb: Explorer Special | {"Response":"False","Error":"Movie not found!"} |
0 | Planet of the Birds | {"Response":"False","Error":"Movie not found!"} |
0 | Giants of the Deep Blue | {"Response":"False","Error":"Movie not found!"} |
0 | Under The Sea: A Descendants Short Story | {"Response":"False","Error":"Movie not found!"} |
0 | Tree Climbing Lions | {"Response":"False","Error":"Movie not found!"} |
0 | Into the Grand Canyon | {"Response":"False","Error":"Movie not found!"} |
Another common issue is that some movies have a II, whereas the API expects a 2. or the movie is listed as III, wheras the API expects 3. This is also a simple fix
disney_film_errors['Title'] = disney_film_errors['Title'].str.replace('III', '3')
disney_film_errors['Title'] = disney_film_errors['Title'].str.replace('II', '2')
disney_film_errors
Title | JSON_DATA | |
---|---|---|
0 | Darby O’Gill and the Little People | {"Response":"False","Error":"Movie not found!"} |
0 | Sammy, the Way-Out Seal | {"Response":"False","Error":"Movie not found!"} |
0 | Blackbeard’s Ghost | {"Response":"False","Error":"Movie not found!"} |
0 | Sultan and the Rock Star | {"Response":"False","Error":"Movie not found!"} |
0 | Mr. Boogedy | {"Response":"False","Error":"Movie not found!"} |
0 | Fuzzbucket | {"Response":"False","Error":"Movie not found!"} |
0 | Turner & Hooch | {"Response":"False","Error":"Movie not found!"} |
0 | Three Men and a Little Lady | {"Response":"False","Error":"Movie not found!"} |
0 | I’ll Be Home for Christmas | {"Response":"False","Error":"Movie not found!"} |
0 | Don’t Look Under the Bed | {"Response":"False","Error":"Movie not found!"} |
0 | America’s Heart and Soul | {"Response":"False","Error":"Movie not found!"} |
0 | High School Musical 3: Senior Year | {"Response":"False","Error":"Movie not found!"} |
0 | Teen Beach Movie 2 | {"Response":"False","Error":"Movie not found!"} |
0 | Oliver & Company | {"Response":"False","Error":"Movie not found!"} |
0 | Pocahontas 2: Journey to a New World | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King 2: Simba’s Pride | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid 2: Return to the Sea | {"Response":"False","Error":"Movie not found!"} |
0 | Lady and the Tramp 2: Scamp’s Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella 2: Dreams Come True | {"Response":"False","Error":"Movie not found!"} |
0 | The Hunchback of Notre Dame 2 | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Tarzan & Jane | {"Response":"False","Error":"Movie not found!"} |
0 | 101 Dalmatians 2: Patch’s London Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Recess: Taking the 5th Grade | {"Response":"False","Error":"Movie not found!"} |
0 | The Lion King 1½ | {"Response":"False","Error":"Movie not found!"} |
0 | Kim Possible Movie: So the Drama | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch 2: Stitch Has a Glitch | {"Response":"False","Error":"Movie not found!"} |
0 | Bambi 2 | {"Response":"False","Error":"Movie not found!"} |
0 | Garfield: A Tail of Two Kitties | {"Response":"False","Error":"Movie not found!"} |
0 | Leroy & Stitch | {"Response":"False","Error":"Movie not found!"} |
0 | Cinderella 3: A Twist in Time | {"Response":"False","Error":"Movie not found!"} |
0 | Casebusters | {"Response":"False","Error":"Movie not found!"} |
0 | The Little Mermaid - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Timon & Pumbaa | {"Response":"False","Error":"Movie not found!"} |
0 | Mighty Ducks - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Hercules - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Even Stevens | {"Response":"False","Error":"Movie not found!"} |
0 | Lilo & Stitch: The Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Suite Life of Zack & Cody | {"Response":"False","Error":"Movie not found!"} |
0 | My Friends Tigger & Pooh | {"Response":"False","Error":"Movie not found!"} |
0 | Crash & Bernstein | {"Response":"False","Error":"Movie not found!"} |
0 | The Muppets - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Book of Once Upon a Time | {"Response":"False","Error":"Movie not found!"} |
0 | Captain Jake and the Never Land Pirates | {"Response":"False","Error":"Movie not found!"} |
0 | Rapunzel’s Tangled Adventure | {"Response":"False","Error":"Movie not found!"} |
0 | Coop & Cami Ask the World | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Star Wars: The Clone Wars- The Lost Missions -... | {"Response":"False","Error":"Movie not found!"} |
0 | LEGO Star Wars: The New Yoda Chronicles | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man and His Amazing Friends - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Comics Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Incredible Hulk – Series | {"Response":"False","Error":"Movie not found!"} |
0 | The Avengers: United They Stand | {"Response":"False","Error":"Movie not found!"} |
0 | Spider-Man Unlimited - Series | {"Response":"False","Error":"Movie not found!"} |
0 | X-Men: Evolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Iron Man Armored Adventures - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel Ultimate Spider-Man | {"Response":"False","Error":"Movie not found!"} |
0 | Hulk and the Agents of S.M.A.S.H. - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers Assemble - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Guardians of the Galaxy - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Ultron Revolution - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Ultimate Spider-Man Vs. The Sinister ... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Secret Wars - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Spider-Man - Series | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Avengers: Black Panther’s Quest - Ser... | {"Response":"False","Error":"Movie not found!"} |
0 | Marvel’s Guardians of the Galaxy: Mission Brea... | {"Response":"False","Error":"Movie not found!"} |
0 | Stonehenge Decoded: Secrets Revealed | {"Response":"False","Error":"Movie not found!"} |
0 | Easter Island Unsolved | {"Response":"False","Error":"Movie not found!"} |
0 | Journey to Shark Eden | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of the King Cobra | {"Response":"False","Error":"Movie not found!"} |
0 | World’s Greatest Dogs | {"Response":"False","Error":"Movie not found!"} |
0 | Expedition Mars: Spirit & Opportunity | {"Response":"False","Error":"Movie not found!"} |
0 | Kingdom of the Apes: Battle Lines | {"Response":"False","Error":"Movie not found!"} |
0 | Secrets of Christ’s Tomb: Explorer Special | {"Response":"False","Error":"Movie not found!"} |
0 | Planet of the Birds | {"Response":"False","Error":"Movie not found!"} |
0 | Giants of the Deep Blue | {"Response":"False","Error":"Movie not found!"} |
0 | Under The Sea: A Descendants Short Story | {"Response":"False","Error":"Movie not found!"} |
0 | Tree Climbing Lions | {"Response":"False","Error":"Movie not found!"} |
0 | Into the Grand Canyon | {"Response":"False","Error":"Movie not found!"} |
Now we can again try to find matching imdb pages, with this edited df
fixes = pd.DataFrame()
for row in disney_film_errors['Title']:
try:
row_search = urllib.parse.quote(row)
url = ("http://www.omdbapi.com/?t=%s&r=json&apikey=d28b037d" % row_search)
request = requests.get(url)
source = urllib.request.urlopen(url).read()
source = source.decode()
d = {'Title' : row, 'JSON_DATA' : source}
df = pd.DataFrame(data=d, index=[0])
fixes = fixes.append(df)
except:
print("failed at %s" % url)
Now we can remove the erros from the initial df, and add back the components we were able to fix
#drop errored entries
disney_films_df_best = disney_films_df_best[disney_films_df_best['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Movie not found!\"}"]
#add back entries we were able to fix
disney_films_df_best.append(fixes)
#drop entries that yielded multiple pages
disney_films_df_best = disney_films_df_best[disney_films_df_best['JSON_DATA'] != "{\"Response\":\"False\",\"Error\":\"Subquery returned more than 1 value. This is not permitted when the subquery follows =, !=, <, <= , >, >= or when the subquery is used as an expression.\"}"]
disney_films_df_best
Title | JSON_DATA | |
---|---|---|
0 | Swiss Family Robinson | {"Title":"Swiss Family Robinson","Year":"1960"... |
0 | Miracle on 34th Street | {"Title":"Miracle on 34th Street","Year":"1947... |
0 | Treasure Island | {"Title":"Treasure Island","Year":"1950","Rate... |
0 | The Story of Robin Hood and His Merrie Men | {"Title":"The Story of Robin Hood and His Merr... |
0 | The Living Desert | {"Title":"The Living Desert","Year":"1953","Ra... |
0 | The Vanishing Prairie | {"Title":"The Vanishing Prairie","Year":"1954"... |
0 | 20,000 Leagues Under the Sea | {"Title":"20,000 Leagues Under the Sea","Year"... |
0 | Davy Crockett, King of the Wild Frontier | {"Title":"Davy Crockett: King of the Wild Fron... |
0 | The African Lion | {"Title":"The African Lion","Year":"1955","Rat... |
0 | Davy Crockett and the River Pirates | {"Title":"Davy Crockett and the River Pirates"... |
0 | Secrets of Life | {"Title":"Secrets of Life","Year":"1956","Rate... |
0 | Perri | {"Title":"Perri","Year":"1957","Rated":"Approv... |
0 | Old Yeller | {"Title":"Old Yeller","Year":"1957","Rated":"A... |
0 | White Wilderness | {"Title":"White Wilderness","Year":"1958","Rat... |
0 | The Sign of Zorro | {"Title":"The Sign of Zorro","Year":"1958","Ra... |
0 | The Shaggy Dog | {"Title":"The Shaggy Dog","Year":"2006","Rated... |
0 | Journey to the Center of the Earth | {"Title":"Journey to the Center of the Earth",... |
0 | Jungle Cat | {"Title":"Jungle Cat","Year":"1960","Rated":"A... |
0 | Pollyanna | {"Title":"Pollyanna","Year":"1960","Rated":"Ap... |
0 | The Absent-Minded Professor | {"Title":"The Absent-Minded Professor","Year":... |
0 | The Parent Trap | {"Title":"The Parent Trap","Year":"1998","Rate... |
0 | Greyfriars Bobby | {"Title":"Greyfriars Bobby: The True Story of ... |
0 | Babes in Toyland | {"Title":"Babes in Toyland","Year":"1960","Rat... |
0 | The Prince and the Pauper | {"Title":"The Prince and the Pauper","Year":"1... |
0 | Almost Angels | {"Title":"Almost Angels","Year":"1962","Rated"... |
0 | The Incredible Journey | {"Title":"The Incredible Journey","Year":"1963... |
0 | Mary Poppins | {"Title":"Mary Poppins","Year":"1964","Rated":... |
0 | Emil and the Detectives | {"Title":"Emil and the Detectives","Year":"200... |
0 | Those Calloways | {"Title":"Those Calloways","Year":"1965","Rate... |
0 | The Sound of Music | {"Title":"The Sound of Music","Year":"1965","R... |
0 | That Darn Cat! | {"Title":"That Darn Cat!","Year":"1965","Rated... |
0 | The Ugly Dachshund | {"Title":"The Ugly Dachshund","Year":"1966","R... |
0 | The Adventures of Bullwhip Griffin | {"Title":"The Adventures of Bullwhip Griffin",... |
0 | The Love Bug | {"Title":"The Love Bug","Year":"1968","Rated":... |
0 | The Computer Wore Tennis Shoes | {"Title":"The Computer Wore Tennis Shoes","Yea... |
0 | The Barefoot Executive | {"Title":"The Barefoot Executive","Year":"1971... |
0 | The Million Dollar Duck | {"Title":"The Million Dollar Duck","Year":"197... |
0 | Bedknobs and Broomsticks | {"Title":"Bedknobs and Broomsticks","Year":"19... |
0 | Justin Morgan Had a Horse | {"Title":"Justin Morgan Had a Horse","Year":"1... |
0 | The Biscuit Eater | {"Title":"The Biscuit Eater","Year":"1972","Ra... |
0 | Snowball Express | {"Title":"Snowball Express","Year":"1972","Rat... |
0 | Herbie Rides Again | {"Title":"Herbie Rides Again","Year":"1974","R... |
0 | The Bears and I | {"Title":"The Bears and I","Year":"1974","Rate... |
0 | The Castaway Cowboy | {"Title":"The Castaway Cowboy","Year":"1974","... |
0 | The Strongest Man in the World | {"Title":"The Strongest Man in the World","Yea... |
0 | Escape to Witch Mountain | {"Title":"Escape to Witch Mountain","Year":"19... |
0 | The Apple Dumpling Gang | {"Title":"The Apple Dumpling Gang","Year":"197... |
0 | Gus | {"Title":"Gus","Year":"1976","Rated":"G","Rele... |
0 | Treasure of Matecumbe | {"Title":"Treasure of Matecumbe","Year":"1976"... |
0 | The Shaggy D.A. | {"Title":"The Shaggy D.A.","Year":"1976","Rate... |
... | ... | ... |
0 | Ant-Man | {"Title":"Ant-Man","Year":"2015","Rated":"PG-1... |
0 | Captain America: Civil War | {"Title":"Captain America: Civil War","Year":"... |
0 | Doctor Strange | {"Title":"Doctor Strange","Year":"2016","Rated... |
0 | Guardians of the Galaxy Vol. 2 | {"Title":"Guardians of the Galaxy Vol. 2","Yea... |
0 | Marvel Rising: Secret Warriors | {"Title":"Marvel Rising: Secret Warriors","Yea... |
0 | Captain Marvel | {"Title":"Captain Marvel","Year":"2019","Rated... |
0 | Avengers: Endgame | {"Title":"Avengers: Endgame","Year":"2019","Ra... |
0 | How Dogs Got Their Shapes | {"Title":"How Dogs Got Their Shapes","Year":"2... |
0 | Dog Whisperer With Cesar Millan | {"Title":"Dog Whisperer with Cesar Millan","Ye... |
0 | Kingdom of the Blue Whale | {"Title":"Kingdom of the Blue Whale","Year":"2... |
0 | Bizarre Dinosaurs | {"Title":"Bizarre Dinosaurs","Year":"2009","Ra... |
0 | Great Migrations | {"Title":"Great Migrations","Year":"2010–","Ra... |
0 | Brain Games | {"Title":"Brain Games","Year":"2011–","Rated":... |
0 | The Incredible Dr. Pol | {"Title":"The Incredible Dr. Pol","Year":"2011... |
0 | Winged Seduction: Birds of Paradise | {"Title":"Winged Seduction: Birds of Paradise"... |
0 | Life Below Zero | {"Title":"Life Below Zero","Year":"2013–","Rat... |
0 | Sharks of Lost Island | {"Title":"Sharks of Lost Island","Year":"2013"... |
0 | Miracle Landing on the Hudson | {"Title":"Miracle Landing on the Hudson","Year... |
0 | Dr. Oakley, Yukon Vet | {"Title":"Dr. Oakley, Yukon Vet","Year":"2014–... |
0 | Dr. K’s Exotic Animal ER | {"Title":"Dr K's Exotic Animal ER","Year":"201... |
0 | Wild Yellowstone | {"Title":"Wild Yellowstone","Year":"2015","Rat... |
0 | Before the Flood | {"Title":"Before the Flood","Year":"2016","Rat... |
0 | Sea of Hope: America’s Underwater Treasures | {"Title":"Sea of Hope: America's Underwater Tr... |
0 | Atlantis Rising | {"Title":"Atlantis Rising","Year":"2017","Rate... |
0 | Origins: The Journey of Humankind | {"Title":"Origins: The Journey of Humankind","... |
0 | Earth Live | {"Title":"Earth Live","Year":"2017","Rated":"N... |
0 | Diana: In Her Own Words | {"Title":"Diana: In Her Own Words","Year":"201... |
0 | Breaking2 | {"Title":"Breaking2","Year":"2017","Rated":"N/... |
0 | Jane | {"Title":"Jane","Year":"2017","Rated":"PG","Re... |
0 | Titanic: 20 Years Later With James Cameron | {"Title":"Titanic: 20 Years Later with James C... |
0 | Man Among Cheetahs | {"Title":"Man Among Cheetahs","Year":"2017","R... |
0 | Decorating Disney: Holiday Magic | {"Title":"Decorating Disney: Holiday Magic","Y... |
0 | Rocky Mountain Animal Rescue | {"Title":"Rocky Mountain Animal Rescue","Year"... |
0 | Into the Okavango | {"Title":"Into The Okavango","Year":"2017","Ra... |
0 | Drain the Oceans | {"Title":"Drain the Oceans","Year":"2018–","Ra... |
0 | Science Fair | {"Title":"Science Fair","Year":"2018","Rated":... |
0 | Free Solo | {"Title":"Free Solo","Year":"2018","Rated":"PG... |
0 | Mars: Inside SpaceX | {"Title":"MARS: Inside SpaceX","Year":"2018","... |
0 | Mission to the Sun | {"Title":"Mission to the Sun","Year":"2018","R... |
0 | The Flood | {"Title":"The Flood","Year":"2019","Rated":"N/... |
0 | Paris to Pittsburgh | {"Title":"Paris to Pittsburgh","Year":"2018","... |
0 | Lost Treasures of the Maya | {"Title":"Lost Treasures of the Maya Snake Kin... |
0 | The Lost Tomb of Alexander the Great | {"Title":"The Lost Tomb of Alexander the Great... |
0 | Hostile Planet | {"Title":"Hostile Planet","Year":"2019–","Rate... |
0 | Apollo: Missions to the Moon | {"Title":"Apollo: Missions to the Moon","Year"... |
0 | Gordon Ramsay: Uncharted | {"Title":"Gordon Ramsay: Uncharted","Year":"20... |
0 | Kingdom of the White Wolf | {"Title":"Kingdom of the White Wolf","Year":"2... |
0 | The Simpsons | {"Title":"The Simpsons","Year":"1989–","Rated"... |
0 | Ice Age: The Great Egg-Scapade | {"Title":"Ice Age: The Great Egg-Scapade","Yea... |
0 | Little Einsteins | {"Title":"Little Einsteins","Year":"2005–","Ra... |
566 rows × 2 columns
For the purpose of our analysis we want Movie title (which we arleady have), Rating data, Release Year, and Genre
disney_films_df_best['Year'] = disney_films_df_best['JSON_DATA'].apply(lambda x: x.split("Year")[1][3:7])
disney_films_df_best['Rating'] = disney_films_df_best['JSON_DATA'].apply(lambda x: x.split("imdbRating")[1][3:6])
disney_films_df_best['Genre'] = disney_films_df_best['JSON_DATA'].apply(lambda x: x.split("Genre")[1][3:6])
disney_films_df_best['Genre'].unique()
#N/A will automatically be converted to np.nan
disney_films_df_best["Genre"] = disney_films_df_best["Genre"].map({
"Dra": "Drama",
"Cri": "Crime",
"Act": "Action",
"Com": "Comedy",
"Thr": "Thriller",
"Hor": "Horror",
"Bio": "Biography",
"Ani": "Animation",
"Mys": "Myster",
"Sci": "Sci-Fi",
"Sho": "Short",
"Adv": "Adventure",
"Rom": "Romance",
"Doc": "Documentary",
"Mus": "Music",
"Rea": "Reality",
"Fam": "Family",
"Fan": "Fantasy",
"Adu": "Adult"
})
disney_films_df_best['Ratings_Count'] = disney_films_df_best['JSON_DATA'].apply(lambda x: x.split("imdbVotes")[1].split(":")[1].replace("\"", '').replace("imdbID", '').replace(",", ''))
disney_films_df_best['Ratings_Count'] = disney_films_df_best['Ratings_Count'].replace(['N/A'], np.nan)
disney_films_df_best['Ratings_Count'] = disney_films_df_best['Ratings_Count'].astype(float)
#for now, we will drop the JSON data column. If in the future, we decide we want more data, we can always load it in again
disney_films_df_best = disney_films_df_best.drop(['JSON_DATA'], axis=1)
disney_films_df_best
Title | Year | Rating | Genre | Ratings_Count | |
---|---|---|---|---|---|
0 | Swiss Family Robinson | 1960 | 7.2 | Adventure | 12491.0 |
0 | Miracle on 34th Street | 1947 | 7.9 | Comedy | 37479.0 |
0 | Treasure Island | 1950 | 6.9 | Adventure | 6167.0 |
0 | The Story of Robin Hood and His Merrie Men | 1952 | 6.7 | Action | 1147.0 |
0 | The Living Desert | 1953 | 7.6 | Family | 1083.0 |
0 | The Vanishing Prairie | 1954 | 7.7 | Documentary | 341.0 |
0 | 20,000 Leagues Under the Sea | 1954 | 7.2 | Adventure | 26637.0 |
0 | Davy Crockett, King of the Wild Frontier | 1955 | 7.0 | Adventure | 3081.0 |
0 | The African Lion | 1955 | 7.5 | Family | 165.0 |
0 | Davy Crockett and the River Pirates | 1956 | 6.8 | Adventure | 1490.0 |
0 | Secrets of Life | 1956 | 7.8 | Documentary | 126.0 |
0 | Perri | 1957 | 7.2 | Adventure | 272.0 |
0 | Old Yeller | 1957 | 7.3 | Adventure | 10742.0 |
0 | White Wilderness | 1958 | 5.4 | Documentary | 322.0 |
0 | The Sign of Zorro | 1958 | 7.1 | Adventure | 378.0 |
0 | The Shaggy Dog | 2006 | 4.4 | Comedy | 17390.0 |
0 | Journey to the Center of the Earth | 2008 | 5.8 | Action | 106981.0 |
0 | Jungle Cat | 1960 | 7.6 | Documentary | 175.0 |
0 | Pollyanna | 1960 | 7.4 | Comedy | 8228.0 |
0 | The Absent-Minded Professor | 1907 | N/A | Short | NaN |
0 | The Parent Trap | 1998 | 6.5 | Adventure | 110689.0 |
0 | Greyfriars Bobby | 1961 | 7.4 | Drama | 1094.0 |
0 | Babes in Toyland | 1960 | 6.3 | Comedy | 3057.0 |
0 | The Prince and the Pauper | 1990 | 7.1 | Animation | 2629.0 |
0 | Almost Angels | 1962 | 7.1 | Comedy | 309.0 |
0 | The Incredible Journey | 1963 | 7.1 | Adventure | 3477.0 |
0 | Mary Poppins | 1964 | 7.8 | Comedy | 147008.0 |
0 | Emil and the Detectives | 2001 | 5.9 | Family | 938.0 |
0 | Those Calloways | 1965 | 6.8 | Drama | 423.0 |
0 | The Sound of Music | 1965 | 8.0 | Biography | 186246.0 |
0 | That Darn Cat! | 1965 | 6.7 | Comedy | 5171.0 |
0 | The Ugly Dachshund | 1966 | 6.7 | Comedy | 3043.0 |
0 | The Adventures of Bullwhip Griffin | 1967 | 6.6 | Action | 603.0 |
0 | The Love Bug | 1968 | 6.5 | Comedy | 13001.0 |
0 | The Computer Wore Tennis Shoes | 1969 | 6.0 | Comedy | 3924.0 |
0 | The Barefoot Executive | 1971 | 6.0 | Family | 1539.0 |
0 | The Million Dollar Duck | 1971 | 5.9 | Comedy | 1742.0 |
0 | Bedknobs and Broomsticks | 1971 | 7.1 | Animation | 31829.0 |
0 | Justin Morgan Had a Horse | 1972 | 7.3 | Family | 91.0 |
0 | The Biscuit Eater | 1972 | 5.6 | Drama | 255.0 |
0 | Snowball Express | 1972 | 6.5 | Comedy | 1225.0 |
0 | Herbie Rides Again | 1974 | 5.7 | Comedy | 6738.0 |
0 | The Bears and I | 1974 | 6.1 | Drama | 233.0 |
0 | The Castaway Cowboy | 1974 | 5.9 | Comedy | 382.0 |
0 | The Strongest Man in the World | 1975 | 6.1 | Comedy | 2390.0 |
0 | Escape to Witch Mountain | 1975 | 6.4 | Adventure | 8391.0 |
0 | The Apple Dumpling Gang | 1975 | 6.4 | Comedy | 4458.0 |
0 | Gus | 1976 | 5.9 | Comedy | 1443.0 |
0 | Treasure of Matecumbe | 1976 | 6.3 | Adventure | 397.0 |
0 | The Shaggy D.A. | 1976 | 5.9 | Comedy | 2332.0 |
... | ... | ... | ... | ... | ... |
0 | Ant-Man | 2015 | 7.3 | Action | 521484.0 |
0 | Captain America: Civil War | 2016 | 7.8 | Action | 610916.0 |
0 | Doctor Strange | 2016 | 7.5 | Action | 543758.0 |
0 | Guardians of the Galaxy Vol. 2 | 2017 | 7.6 | Action | 513275.0 |
0 | Marvel Rising: Secret Warriors | 2018 | 5.0 | Animation | 754.0 |
0 | Captain Marvel | 2019 | 7.0 | Action | 368679.0 |
0 | Avengers: Endgame | 2019 | 8.5 | Action | 613329.0 |
0 | How Dogs Got Their Shapes | 2016 | N/A | Documentary | NaN |
0 | Dog Whisperer With Cesar Millan | 2004 | 8.0 | Family | 2509.0 |
0 | Kingdom of the Blue Whale | 2009 | 7.3 | Documentary | 65.0 |
0 | Bizarre Dinosaurs | 2009 | 6.6 | Documentary | 47.0 |
0 | Great Migrations | 2010 | 8.1 | Documentary | 675.0 |
0 | Brain Games | 2011 | 8.3 | Documentary | 2702.0 |
0 | The Incredible Dr. Pol | 2011 | 8.6 | Documentary | 857.0 |
0 | Winged Seduction: Birds of Paradise | 2012 | 6.5 | Documentary | 10.0 |
0 | Life Below Zero | 2013 | 8.1 | Documentary | 1265.0 |
0 | Sharks of Lost Island | 2013 | N/A | NaN | NaN |
0 | Miracle Landing on the Hudson | 2014 | 7.4 | Drama | 21.0 |
0 | Dr. Oakley, Yukon Vet | 2014 | 8.2 | Reality | 266.0 |
0 | Dr. K’s Exotic Animal ER | 2014 | 7.9 | Reality | 211.0 |
0 | Wild Yellowstone | 2015 | 7.3 | Documentary | 19.0 |
0 | Before the Flood | 2016 | 8.3 | Documentary | 24232.0 |
0 | Sea of Hope: America’s Underwater Treasures | 2017 | N/A | Documentary | NaN |
0 | Atlantis Rising | 2017 | 6.8 | Documentary | 178.0 |
0 | Origins: The Journey of Humankind | 2017 | 6.9 | Documentary | 321.0 |
0 | Earth Live | 2017 | 5.6 | Documentary | 24.0 |
0 | Diana: In Her Own Words | 2017 | 7.9 | Documentary | 1012.0 |
0 | Breaking2 | 2017 | 7.5 | Documentary | 42.0 |
0 | Jane | 2017 | 7.8 | Documentary | 3242.0 |
0 | Titanic: 20 Years Later With James Cameron | ater | 7.3 | Documentary | 177.0 |
0 | Man Among Cheetahs | 2017 | N/A | Documentary | NaN |
0 | Decorating Disney: Holiday Magic | 2017 | N/A | Reality | NaN |
0 | Rocky Mountain Animal Rescue | 2018 | 7.8 | Reality | 5.0 |
0 | Into the Okavango | 2017 | 9.2 | Documentary | 11.0 |
0 | Drain the Oceans | 2018 | 7.5 | Documentary | 153.0 |
0 | Science Fair | 2018 | 7.7 | Documentary | 331.0 |
0 | Free Solo | 2018 | 8.2 | Documentary | 41204.0 |
0 | Mars: Inside SpaceX | 2018 | 7.2 | Documentary | 412.0 |
0 | Mission to the Sun | 2018 | 7.3 | Documentary | 23.0 |
0 | The Flood | 2019 | 4.8 | Drama | 432.0 |
0 | Paris to Pittsburgh | 2018 | 5.9 | NaN | 9.0 |
0 | Lost Treasures of the Maya | 2018 | 5.7 | Documentary | 10.0 |
0 | The Lost Tomb of Alexander the Great | 2019 | N/A | Documentary | NaN |
0 | Hostile Planet | 2019 | 8.2 | Documentary | 268.0 |
0 | Apollo: Missions to the Moon | 2019 | 7.7 | NaN | 90.0 |
0 | Gordon Ramsay: Uncharted | 2019 | 8.0 | Adventure | 238.0 |
0 | Kingdom of the White Wolf | 2019 | 7.0 | Documentary | 10.0 |
0 | The Simpsons | 1989 | 8.7 | Animation | 328282.0 |
0 | Ice Age: The Great Egg-Scapade | 2016 | 5.9 | Animation | 2741.0 |
0 | Little Einsteins | 2005 | 6.4 | Animation | 948.0 |
566 rows × 5 columns
Now lets verify the years, like for netflix.
disney_films_df_best.Year.unique()
array(['1960', '1947', '1950', '1952', '1953', '1954', '1955', '1956', '1957', '1958', '2006', '2008', '1907', '1998', '1961', '1990', '1962', '1963', '1964', '2001', '1965', '1966', '1967', '1968', '1969', '1971', '1972', '1974', '1975', '1976', '2003', '1977', '2016', '1978', '1979', '1980', '2015', '1981', '1982', '1985', '1986', '1987', '1994', '1988', '1989', '1991', '1992', '1993', '', '2011', '1995', '1996', '1997', '1999', '2000', '1921', '2002', '2004', '2005', '2007', '2009', '2010', '2012', '2013', '2014', '2017', '2018', '1941', '2019', '1937', '1940', '1942', '1944', '1948', '1949', '1959', '1970', '1984', '1983', 'ater'], dtype=object)
Disney has been around for a while, so these make more sense. Excpet for the last one "Ater", and a few ''. These must have been picked up from the webscraping.
disney_films_df_best = disney_films_df_best[disney_films_df_best['Year'] != "ater"]
disney_films_df_best = disney_films_df_best[disney_films_df_best['Year'] != ""]
disney_films_df_best.Year.unique()
array(['1960', '1947', '1950', '1952', '1953', '1954', '1955', '1956', '1957', '1958', '2006', '2008', '1907', '1998', '1961', '1990', '1962', '1963', '1964', '2001', '1965', '1966', '1967', '1968', '1969', '1971', '1972', '1974', '1975', '1976', '2003', '1977', '2016', '1978', '1979', '1980', '2015', '1981', '1982', '1985', '1986', '1987', '1994', '1988', '1989', '1991', '1992', '1993', '2011', '1995', '1996', '1997', '1999', '2000', '1921', '2002', '2004', '2005', '2007', '2009', '2010', '2012', '2013', '2014', '2017', '2018', '1941', '2019', '1937', '1940', '1942', '1944', '1948', '1949', '1959', '1970', '1984', '1983'], dtype=object)
Now lets reset the index, just like we did for netflix
disney_films_df_best.reset_index(drop=True, inplace=True)
disney_films_df_best
Title | Year | Rating | Genre | Ratings_Count | |
---|---|---|---|---|---|
0 | Swiss Family Robinson | 1960 | 7.2 | Adventure | 12491.0 |
1 | Miracle on 34th Street | 1947 | 7.9 | Comedy | 37479.0 |
2 | Treasure Island | 1950 | 6.9 | Adventure | 6167.0 |
3 | The Story of Robin Hood and His Merrie Men | 1952 | 6.7 | Action | 1147.0 |
4 | The Living Desert | 1953 | 7.6 | Family | 1083.0 |
5 | The Vanishing Prairie | 1954 | 7.7 | Documentary | 341.0 |
6 | 20,000 Leagues Under the Sea | 1954 | 7.2 | Adventure | 26637.0 |
7 | Davy Crockett, King of the Wild Frontier | 1955 | 7.0 | Adventure | 3081.0 |
8 | The African Lion | 1955 | 7.5 | Family | 165.0 |
9 | Davy Crockett and the River Pirates | 1956 | 6.8 | Adventure | 1490.0 |
10 | Secrets of Life | 1956 | 7.8 | Documentary | 126.0 |
11 | Perri | 1957 | 7.2 | Adventure | 272.0 |
12 | Old Yeller | 1957 | 7.3 | Adventure | 10742.0 |
13 | White Wilderness | 1958 | 5.4 | Documentary | 322.0 |
14 | The Sign of Zorro | 1958 | 7.1 | Adventure | 378.0 |
15 | The Shaggy Dog | 2006 | 4.4 | Comedy | 17390.0 |
16 | Journey to the Center of the Earth | 2008 | 5.8 | Action | 106981.0 |
17 | Jungle Cat | 1960 | 7.6 | Documentary | 175.0 |
18 | Pollyanna | 1960 | 7.4 | Comedy | 8228.0 |
19 | The Absent-Minded Professor | 1907 | N/A | Short | NaN |
20 | The Parent Trap | 1998 | 6.5 | Adventure | 110689.0 |
21 | Greyfriars Bobby | 1961 | 7.4 | Drama | 1094.0 |
22 | Babes in Toyland | 1960 | 6.3 | Comedy | 3057.0 |
23 | The Prince and the Pauper | 1990 | 7.1 | Animation | 2629.0 |
24 | Almost Angels | 1962 | 7.1 | Comedy | 309.0 |
25 | The Incredible Journey | 1963 | 7.1 | Adventure | 3477.0 |
26 | Mary Poppins | 1964 | 7.8 | Comedy | 147008.0 |
27 | Emil and the Detectives | 2001 | 5.9 | Family | 938.0 |
28 | Those Calloways | 1965 | 6.8 | Drama | 423.0 |
29 | The Sound of Music | 1965 | 8.0 | Biography | 186246.0 |
30 | That Darn Cat! | 1965 | 6.7 | Comedy | 5171.0 |
31 | The Ugly Dachshund | 1966 | 6.7 | Comedy | 3043.0 |
32 | The Adventures of Bullwhip Griffin | 1967 | 6.6 | Action | 603.0 |
33 | The Love Bug | 1968 | 6.5 | Comedy | 13001.0 |
34 | The Computer Wore Tennis Shoes | 1969 | 6.0 | Comedy | 3924.0 |
35 | The Barefoot Executive | 1971 | 6.0 | Family | 1539.0 |
36 | The Million Dollar Duck | 1971 | 5.9 | Comedy | 1742.0 |
37 | Bedknobs and Broomsticks | 1971 | 7.1 | Animation | 31829.0 |
38 | Justin Morgan Had a Horse | 1972 | 7.3 | Family | 91.0 |
39 | The Biscuit Eater | 1972 | 5.6 | Drama | 255.0 |
40 | Snowball Express | 1972 | 6.5 | Comedy | 1225.0 |
41 | Herbie Rides Again | 1974 | 5.7 | Comedy | 6738.0 |
42 | The Bears and I | 1974 | 6.1 | Drama | 233.0 |
43 | The Castaway Cowboy | 1974 | 5.9 | Comedy | 382.0 |
44 | The Strongest Man in the World | 1975 | 6.1 | Comedy | 2390.0 |
45 | Escape to Witch Mountain | 1975 | 6.4 | Adventure | 8391.0 |
46 | The Apple Dumpling Gang | 1975 | 6.4 | Comedy | 4458.0 |
47 | Gus | 1976 | 5.9 | Comedy | 1443.0 |
48 | Treasure of Matecumbe | 1976 | 6.3 | Adventure | 397.0 |
49 | The Shaggy D.A. | 1976 | 5.9 | Comedy | 2332.0 |
... | ... | ... | ... | ... | ... |
512 | Marvel’s | 2016 | 7.0 | Action | 399.0 |
513 | Ant-Man | 2015 | 7.3 | Action | 521484.0 |
514 | Captain America: Civil War | 2016 | 7.8 | Action | 610916.0 |
515 | Doctor Strange | 2016 | 7.5 | Action | 543758.0 |
516 | Guardians of the Galaxy Vol. 2 | 2017 | 7.6 | Action | 513275.0 |
517 | Marvel Rising: Secret Warriors | 2018 | 5.0 | Animation | 754.0 |
518 | Captain Marvel | 2019 | 7.0 | Action | 368679.0 |
519 | Avengers: Endgame | 2019 | 8.5 | Action | 613329.0 |
520 | How Dogs Got Their Shapes | 2016 | N/A | Documentary | NaN |
521 | Dog Whisperer With Cesar Millan | 2004 | 8.0 | Family | 2509.0 |
522 | Kingdom of the Blue Whale | 2009 | 7.3 | Documentary | 65.0 |
523 | Bizarre Dinosaurs | 2009 | 6.6 | Documentary | 47.0 |
524 | Great Migrations | 2010 | 8.1 | Documentary | 675.0 |
525 | Brain Games | 2011 | 8.3 | Documentary | 2702.0 |
526 | The Incredible Dr. Pol | 2011 | 8.6 | Documentary | 857.0 |
527 | Winged Seduction: Birds of Paradise | 2012 | 6.5 | Documentary | 10.0 |
528 | Life Below Zero | 2013 | 8.1 | Documentary | 1265.0 |
529 | Sharks of Lost Island | 2013 | N/A | NaN | NaN |
530 | Miracle Landing on the Hudson | 2014 | 7.4 | Drama | 21.0 |
531 | Dr. Oakley, Yukon Vet | 2014 | 8.2 | Reality | 266.0 |
532 | Dr. K’s Exotic Animal ER | 2014 | 7.9 | Reality | 211.0 |
533 | Wild Yellowstone | 2015 | 7.3 | Documentary | 19.0 |
534 | Before the Flood | 2016 | 8.3 | Documentary | 24232.0 |
535 | Sea of Hope: America’s Underwater Treasures | 2017 | N/A | Documentary | NaN |
536 | Atlantis Rising | 2017 | 6.8 | Documentary | 178.0 |
537 | Origins: The Journey of Humankind | 2017 | 6.9 | Documentary | 321.0 |
538 | Earth Live | 2017 | 5.6 | Documentary | 24.0 |
539 | Diana: In Her Own Words | 2017 | 7.9 | Documentary | 1012.0 |
540 | Breaking2 | 2017 | 7.5 | Documentary | 42.0 |
541 | Jane | 2017 | 7.8 | Documentary | 3242.0 |
542 | Man Among Cheetahs | 2017 | N/A | Documentary | NaN |
543 | Decorating Disney: Holiday Magic | 2017 | N/A | Reality | NaN |
544 | Rocky Mountain Animal Rescue | 2018 | 7.8 | Reality | 5.0 |
545 | Into the Okavango | 2017 | 9.2 | Documentary | 11.0 |
546 | Drain the Oceans | 2018 | 7.5 | Documentary | 153.0 |
547 | Science Fair | 2018 | 7.7 | Documentary | 331.0 |
548 | Free Solo | 2018 | 8.2 | Documentary | 41204.0 |
549 | Mars: Inside SpaceX | 2018 | 7.2 | Documentary | 412.0 |
550 | Mission to the Sun | 2018 | 7.3 | Documentary | 23.0 |
551 | The Flood | 2019 | 4.8 | Drama | 432.0 |
552 | Paris to Pittsburgh | 2018 | 5.9 | NaN | 9.0 |
553 | Lost Treasures of the Maya | 2018 | 5.7 | Documentary | 10.0 |
554 | The Lost Tomb of Alexander the Great | 2019 | N/A | Documentary | NaN |
555 | Hostile Planet | 2019 | 8.2 | Documentary | 268.0 |
556 | Apollo: Missions to the Moon | 2019 | 7.7 | NaN | 90.0 |
557 | Gordon Ramsay: Uncharted | 2019 | 8.0 | Adventure | 238.0 |
558 | Kingdom of the White Wolf | 2019 | 7.0 | Documentary | 10.0 |
559 | The Simpsons | 1989 | 8.7 | Animation | 328282.0 |
560 | Ice Age: The Great Egg-Scapade | 2016 | 5.9 | Animation | 2741.0 |
561 | Little Einsteins | 2005 | 6.4 | Animation | 948.0 |
562 rows × 5 columns
Now lets see a quick distribution of disney plus' IMDB ratings, just like we did with Netflix
#Replace n/a with np.nan
disney_films_df_best['Rating'] = disney_films_df_best['Rating'].replace(['N/A'], np.nan)
#convert ratings to float
disney_films_df_best['Rating'] = disney_films_df_best['Rating'].astype(float)
#drop na in ratings, keep track of rating as a seperate series, in case we need it later
disney_s = disney_films_df_best['Rating'].dropna()
ax = disney_films_df_best.Rating.plot.hist(bins=25)
ax.text(5.5, -10, 'IMBD_Rating', ha='center')
ax.text(5.5, 80, 'Dinsey+ IMBD Ratings', ha='center')
Text(5.5, 80, 'Dinsey+ IMBD Ratings')
Now that we have collected, processed, tidies, and done some bried exploratory analysis on this data, We can begin to do some real analysis to try to generate any insight into which platform has an advantage in the coming streaming wars in terms of content quantity and quality.
Let's start out by simply blotting a distribution of the ratings for the content on either platform.
ax.legend(["Disney", "Netflix"]);
import matplotlib.pyplot as plt
plt.hist([disney_s, netflix_s], label=['disney', 'netflix'])
plt.suptitle('Distribution of IMDB Ratings', x=0.5, y=1.05, ha='center', fontsize='xx-large')
plt.text(6, -50, 'IMDB Rating', ha='center')
plt.text(0.04, 150, 'Number of movie ratings', va='center', rotation='vertical')
plt.legend(loc='upper right')
<matplotlib.legend.Legend at 0x7f6b6602beb8>
The above histogram shows a distribution of Disney+ media content ratings vs Netflix orginal content ratings. This is a trend over hundreds of media pieces, and each rating represents many peoples votes.
The initial perspective of this graph is that netflix is actually beating disney by wide margins in terms of quantity of content! This definitly suprised me and subverted my expectations.
How can we more accuratley detect if there is a signficant distinction in terms of quality or populatrity?? Well the first step is to criticize the above figure.
Notice how the above figure treats every movie with equal merit. The rating for a move that very few people have seen holds as much merit as a movie that many people have seen. Think about it this way: in the above chart, Swiss Family Robinson holds as much weight in terms of representing disney as Star wars does.
The question is thus: how do we display popularity?
Thankfully, we can use the number of ratings a movie has as a proxy for this. Essentially, we will weight each movies rating by how many reviews that movie has on IMDB.
import matplotlib.pyplot as plt
#keep track of ratings_count as a seperate series, so that we can use it to weigth the ratings later.
disney_w = disney_films_df_best['Ratings_Count'].dropna()
netflix_w = netflix_ratings_df['Ratings_Count'].dropna()
#disney_s and netflix_s are series of the disney and netflix ratings. they were generated in a seperate step.
plt.hist([disney_s, netflix_s], label=['disney', 'netflix'], weights=(disney_w, netflix_w))
plt.legend(loc='upper right')
plt.suptitle('Number of IMDB Ratings', x=0.5, y=1.05, ha='center', fontsize='xx-large')
plt.text(6, -3000000, 'IMDB Rating', ha='center')
plt.text(0.04, 10500000, 'Number of individual ratings ', va='center', rotation='vertical')
Text(0.04, 10500000, 'Number of individual ratings ')
Interesting! There are several insights that we can draw from this graph. Notice how disney absolutely drawfs netflix in terms of content popularity. One important thing to note is that Netflix is actually taking the lead in terms of quantity of content. Specifically, Disney has 562 rows in this dataframe, while Netflix has 1261! In spite of this, Netflix has significantly lower imdb ratings. this means that even though Disney+ has less content, its content is both more well liked and more popular. Disney's content gets millions more ratings.
The question then arises: which type of content is more popular on which platforms? We can try to determine this by dividing the content into Generes, and seeing the rankings for each assocaited content on each platform.
First, we will need to make two sepereate dataframes, which will each be the result of performing a groupby function on both the disney and netflix dataframes, based on their genre column. From there, we will calculate the mean rating for each genre on either dataframe. we will then merge these two dataframes, so that we can run analysis on the resulting df. See below.
#group by netflix
netflix_by_genre = netflix_ratings_df.groupby('Genre', sort=False)
netflix_genre_ratings = netflix_by_genre['Rating'].mean()
#group by Disney
disney_by_genre = disney_films_df_best.groupby('Genre', sort=False)
disney_genre_ratings = disney_by_genre['Rating'].mean()
#make new dataframes
netflix_genre_ratings_df = pd.DataFrame(data=netflix_genre_ratings)
disney_genre_ratings_df = pd.DataFrame(data=disney_genre_ratings)
#merge
ratings_by_genre_df = disney_genre_ratings_df.merge(netflix_genre_ratings_df, how="outer", on = "Genre")
#specify column names so we don't get confused
ratings_by_genre_df = ratings_by_genre_df.rename(columns={"Rating_x": "Disney_Ratings", "Rating_y": "Netflix_Ratings"})
ratings_by_genre_df
Disney_Ratings | Netflix_Ratings | |
---|---|---|
Genre | ||
Adventure | 6.285915 | 6.517391 |
Comedy | 5.916547 | 6.531068 |
Action | 6.629032 | 6.639326 |
Family | 6.052632 | 6.644444 |
Documentary | 7.169565 | 7.235359 |
Short | NaN | 7.378947 |
Drama | 6.454839 | 6.679747 |
Animation | 6.954777 | 6.898246 |
Biography | 7.092308 | 6.992000 |
Crime | 7.800000 | 7.021875 |
Music | 8.400000 | 7.050000 |
Reality | 7.800000 | 6.808333 |
Horror | NaN | 5.740000 |
Thriller | NaN | 5.538462 |
Fantasy | NaN | 6.666667 |
Sci-Fi | NaN | 5.600000 |
Romance | NaN | 5.985714 |
Myster | NaN | 6.250000 |
When looking at this, the first thing to notice is incredibly obvious: Why are there no Disney Romances? no disney Sci-Fi or Fantasy? The answer is that our API takes the first genre given, and disney will always list the first genre of their movies as that which has the broadest appeal. Take, for instance, mary poppins. The move on IMDB (see here https://www.imdb.com/title/tt0058331/?ref_=fn_al_tt_1) is listed as "comedy, family, fantasy." our API looks at and only returns "comedy". This is an unfortunate shortcoming of our data, but I believe its necessary. The alternative is to tag every movie with every single one of its genres, and this means every movie would be double or triple counted - each would have to appear several times in each of the genre groups. This would make any conclusions we draw extremely muddled and ripe for innacuracies. If we want to make conclusions about which content either company is better at, then it simply makes the most sense to assocaite each movie with their "primary" genre - that is, the genre that is first listed on IMDB. While its not perfect, the alternatives are far worse.
Now that we have a df wiith each genre and either companies assoicated mean ratings for that genre, lets plot them!
ax = ratings_by_genre_df.plot.bar(figsize=(8,6),title="Average Ratings for Netflix and Disney by Genre")#(x='Genre', y='Ratin', rot=0)
ax.legend(["Disney", "Netflix"]);
ax.set_xlabel("Genre")
# Set the label for the y-axis
ax.set_ylabel("Average IMDB Rating")
Text(0, 0.5, 'Average IMDB Rating')
The above graph is really interesting! It highlights how, generally speaking, The two companies produce pretty comparable content. Netflix just barely beats out disney in adventure, comedy, and familty, while disney absolutely drwarfs netflix in Crime, Music, and Reality. The two giants are virtually tied for Action. Netflix doesn't seem to be losing by a massive degree in terms of quality, as per our predictions via the histogram thaat was weighted by populatrity. One reason this might be the case is that Netflix beats Disney in every Genre that disney is not competing in. In Genres such as Mystery, horror, or thriller, Netflix beats Disney because Disney refused to compete, perhaps due to the potential that an r rate movie would hurt their family friendly image.
You may think that this graphic falls to the same issue that the graphic at the start of part 2 fell to - each movie is weighed equally. However, I would argue that this graph is more insightful - we are trying to draw conclusiosn about which type of genee either company is good at producing, in terms of quality. If we weighed for ratings counts by genre, we would just see disney drawfing netflix again, due to the popularity of their content. This would hinder our ability to draw interesting and insightful conclusions.
The last thing I wanted to cover in tutorial is trends over time. Specifically, I wanted to see any trends over time - has either company gotten better at producing content over time? Is there any Genre that disney has gotten better - or worse- at producing in the past 50 years?
I also want to address concerns about time bias in this data. Specifically, as this one guy (http://www.georgesaines.com/blog/2015/2/25/imdb-score-bias-its-temporal) and this one redditor (https://www.reddit.com/r/movies/comments/bxu247/analysis_of_recency_bias_in_imdb_movie_ratings/) argues, IMDB ratings are inflated when a movie premieres. This creates a bias of newer movies having generally higher ratings. I would like to investigate to what extent this bias exists here, and how it affects either platform.
First, lets try to see some trends over time!
Let's start out with some basics: just ratings over time for netflix and disney. Since netflix has existed for such a shorter time, it doesn't make a lot of sense to plot the two together, as you would barely even be able to see netflix.
disney_over_time = disney_films_df_best.pivot_table(index=["Year"], values="Rating", aggfunc="mean")
ax = disney_over_time.plot(title='Disney ratings Over Time')
ax.set_xlabel("Year")
ax.set_ylabel("IMDB rating")
Text(0, 0.5, 'IMDB rating')
netflix_over_time = netflix_ratings_df.pivot_table(index=["Year"], values="Rating", aggfunc="mean")
ax = netflix_over_time.plot(title='Disney ratings Over Time')
ax.set_xlabel("Year")
ax.set_ylabel("IMDB rating")
Text(0, 0.5, 'IMDB rating')
These are interesting! Notice How disney has seen massive volatility over time. Another interesting point is that netflix appears to have peaked in 2014, and been steadily decreasing since. To be fair, however, netflix has a much smaller time frame, so it would be innacurate to draw conclusions from just this graph.
One thing I want to discusss here is the issue of recency bias. Recency bias is the idea that movies that were recently released see a bonus in ratings. These charts do not depict this trend. There are serveral reasons this could be the case. The first is that the recency bias is not really a thing - or that it is something that only affects a specific subset of movies, and thus largely does not affect our data in the long run. Another possibility is that this bias does exist, and we will in future years see today's ratings of recent movies go down.
Unfortunatly, the API we use in this tutorial cannot access previous ratings. As such, it is impossible to perform analysis as to whether or not ratings will lower over time. If recency bias were substantial, we would expect to see recnet years have a significant peak in terms of average ratings. This is not the case for either Netflix or Disney. Both companies average ratings are lower than they were at their peak, and Netflix's specificlaly is almost as low as it has ever been. Thus, we can argue that this bias is generally insignificant and will not largly impact our dataa.
Let's see if we can break down any of these values by genre, to notice any trends! We'll start with Netflix
netflix_years = netflix_ratings_df.pivot_table(index=["Year"], values="Rating", columns=["Genre"], aggfunc="mean")
ax = netflix_years.plot(figsize=(10,10), title ="Netflix Ratings over time by genre", colormap="nipy_spectral")
#step3: remove scientific notation for consistency
plt.ticklabel_format(style='plain', axis='y')
#step 4: set labels
ax.set_ylabel("Mean Rating")
ax.set_xlabel("Year")
ax
<matplotlib.axes._subplots.AxesSubplot at 0x7f6b5b1f5240>
First off, I would like to say that it is very difficult to find a colormap that adequatly represents every genre. I chose nipy_spectral because I believe it has the greatest contrast, but if you find another I encourage you to use it.
We noted before that netflix can compete with disney by doing the things that disney won't: i.e. horror films, scifi, and thrillers. Among these, netflix appears to be largely unscucessful. Scifi is the red bar that has decreased dramatically over the past few years, and Thriller has also largely stagnated. The genres that appear to be successfull for netflix over time are animation, Documentary, and biographies. This is a poor stratagy for netflix, who appears to be trying to beat Disney on Disney's home field: Animation. A smarter tactic would be to invest into horror, scifi, etc to try to compete in markets that Disney won't enter.
disney_years = disney_films_df_best.pivot_table(index=["Year"], values="Rating", columns=["Genre"], aggfunc="mean")
ax = disney_years.plot(figsize=(10,10), title = "Disney ratings over time by Genre")
#step3: remove scientific notation for consistency
plt.ticklabel_format(style='plain', axis='y')
#step 4: set labels
ax.set_ylabel("Mean Rating")
ax.set_xlabel("Year")
ax
<matplotlib.axes._subplots.AxesSubplot at 0x7f1a501c86d8>
The above graph is interesting, but it's too volatile and cluttered to really gain any insights from. How can we make this better? We can discretize these results into five year periods!
#first we have to convert disney's year columns into ints.
disney_films_df_best['Year'] = disney_films_df_best['Year'].astype(int)
#next, we have to identify the potential year sections
year_sections = np.arange(1921, 2019, 5)
#now we will make a copy of the df
discrete_disney = disney_films_df_best.copy()
#now we will split it into discrete sections
discrete_disney['Year_range'] = pd.cut(discrete_disney['Year'], year_sections, right=True)
discrete_disney.head()
Title | Year | Rating | Genre | Ratings_Count | Year_range | |
---|---|---|---|---|---|---|
0 | Swiss Family Robinson | 1960 | 7.2 | Adventure | 12491.0 | (1956, 1961] |
1 | Miracle on 34th Street | 1947 | 7.9 | Comedy | 37479.0 | (1946, 1951] |
2 | Treasure Island | 1950 | 6.9 | Adventure | 6167.0 | (1946, 1951] |
3 | The Story of Robin Hood and His Merrie Men | 1952 | 6.7 | Action | 1147.0 | (1951, 1956] |
4 | The Living Desert | 1953 | 7.6 | Family | 1083.0 | (1951, 1956] |
Now that we have broken this up by time range, we can run some analysis!
discrete_disney_by_genre = discrete_disney.pivot_table(index=["Year_range"], values="Rating", columns=["Genre"], aggfunc="mean")
ax = discrete_disney_by_genre.plot(figsize=(10,10), title = "Disney ratings over time by Genre")
This graph is much clearer, and allows us to notice trends. One thing I want to point out is disney's peak in animation an comedy during 1986-1991. Michael Eisner became CEO of disney in 1984, and among his many successes, some view him as revitalizing disney's movie business. He took a ton of actions to rebuild the company culture from the ground up, and many say the company would not be what it was today without him. There is a whole case study about mostly his work, you can find it here (https://www.hbs.edu/faculty/Pages/item.aspx?num=27931). I just think its really interesting that we can see his impact through these rating scores.
Another interesting trend to note is how much the Action, Comedy, and Animation ratings have changed since the 80s. There was a massive downfall in ratings from the 80s into the 90s, but it looks like Disney has, in recent years, begun to fight back by reinvesting into these categories. This makes a lot of sense, and it definitly serves to leverage Disney's Core competencies.
Ultimatley, there will be many factors that influence the future of the streaming wars. What we have done together, however, shows that Disney's content is dramatically more popular. We've also shown how Netflix has failed to capatalize on their capacity to create content that Disney cannot. This shows that the competition for the streaming industry is likely just getting started. Netflix has chosen fight over flight, and intends to capture the same consumer love for Animation, comedy, and action that disney has had a grasp on for the past century.
It's a very complicated industry wiht lots of exterior facets, but I think that in the long run, Disney will beat out netflix. The data in this tutorial tells a consistent story of Disney producing higher quality content that gains more popularity, while netflix consistently chooses quantity over quality. Since netflix is choosing to compete with Dinsey by throwing massive amounts of poorly rated content at its subscribers, I can't help but think that the streaming giant just doesn't know how to compete in entertainment.
Lastly, I want to end this tutorial with a few grains of salt. Specifically, I want everyone to consider the significance that the lack of diversity of ratings on IMDB has on our analyis. This Wired article points out how the majority of viewers who rate on IMDB are straight white males, a sample that is likely not representative of the population as a whole. Though there is nothing we can do to control for this in the context of the tutorial, I think it is worth mentioning. https://www.wired.co.uk/article/which-film-ranking-site-should-i-trust-rotten-tomatoes-imdb-metacritic