Spaces:
Runtime error
Runtime error
Create kb.py
Browse files
kb.py
ADDED
@@ -0,0 +1,167 @@
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
1 |
+
movie_kb = [
|
2 |
+
{
|
3 |
+
"title": "A Goofy Movie",
|
4 |
+
"description": "Max, Goofy's teenage son, struggles with adolescence and his father's attempts to bond during a cross-country road trip.",
|
5 |
+
"genre": ["Animation", "Children", "Comedy", "Romance"],
|
6 |
+
"director": "Kevin Lima",
|
7 |
+
"actors": ["Bill Farmer", "Jason Marsden", "Jenna von Oÿ"],
|
8 |
+
"year": 1995,
|
9 |
+
"box_office": 37591956,
|
10 |
+
"awards": [],
|
11 |
+
"rating": 4.5
|
12 |
+
},
|
13 |
+
{
|
14 |
+
"title": "Gumby: The Movie",
|
15 |
+
"description": "Gumby and his pals must save their farm from the evil Blockheads in a claymation adventure.",
|
16 |
+
"genre": ["Animation", "Children"],
|
17 |
+
"director": "Art Clokey",
|
18 |
+
"actors": ["Art Clokey", "Gloria Clokey", "Manny La Carruba"],
|
19 |
+
"year": 1995,
|
20 |
+
"box_office": 57399,
|
21 |
+
"awards": [],
|
22 |
+
"rating": 3.5
|
23 |
+
},
|
24 |
+
{
|
25 |
+
"title": "The Swan Princess",
|
26 |
+
"description": "A princess cursed to live as a swan must find true love to break the spell, despite an evil sorcerer's interference.",
|
27 |
+
"genre": ["Animation", "Children"],
|
28 |
+
"director": "Richard Rich",
|
29 |
+
"actors": ["Michelle Nicastro", "Howard McGillin", "Jack Palance"],
|
30 |
+
"year": 1994,
|
31 |
+
"box_office": 9771657,
|
32 |
+
"awards": [],
|
33 |
+
"rating": 3.0
|
34 |
+
},
|
35 |
+
{
|
36 |
+
"title": "The Lion King",
|
37 |
+
"description": "A young lion prince flees his kingdom after his father's murder, only to return and reclaim his throne years later.",
|
38 |
+
"genre": ["Adventure", "Animation", "Children", "Drama", "Musical", "IMAX"],
|
39 |
+
"director": ["Roger Allers", "Rob Minkoff"],
|
40 |
+
"actors": ["Matthew Broderick", "Jeremy Irons", "James Earl Jones"],
|
41 |
+
"year": 1994,
|
42 |
+
"box_office": 987483777,
|
43 |
+
"awards": ["Oscar Best Original Score", "Oscar Best Original Song", "Golden Globe Best Motion Picture - Musical or Comedy"],
|
44 |
+
"rating": 4.5
|
45 |
+
},
|
46 |
+
{
|
47 |
+
"title": "The Secret Adventures of Tom Thumb",
|
48 |
+
"description": "A tiny boy born to normal-sized parents navigates a dark, surreal world of science and exploitation in this stop-motion tale.",
|
49 |
+
"genre": ["Adventure", "Animation"],
|
50 |
+
"director": "Dave Borthwick",
|
51 |
+
"actors": ["Nick Upton", "Deborah Collar", "Frank Passingham"],
|
52 |
+
"year": 1993,
|
53 |
+
"box_office": 0, # Limited release, no reliable box office data available
|
54 |
+
"awards": [],
|
55 |
+
"rating": 2.5
|
56 |
+
},
|
57 |
+
{
|
58 |
+
"title": "This So-Called Disaster",
|
59 |
+
"description": "A documentary chronicling actor Sam Shepard's preparation for a play, blending rehearsal footage with personal reflections.",
|
60 |
+
"genre": ["Documentary", "Disaster"],
|
61 |
+
"director": "Michael Almereyda",
|
62 |
+
"actors": ["Sam Shepard", "Nick Nolte", "Sean Penn"],
|
63 |
+
"year": 2003,
|
64 |
+
"box_office": 0, # Limited release, no significant box office data
|
65 |
+
"awards": [],
|
66 |
+
"rating": 3.0
|
67 |
+
},
|
68 |
+
{
|
69 |
+
"title": "Love and Other Disasters",
|
70 |
+
"description": "A fashion magazine assistant navigates love and life in London, matchmaking friends while avoiding her own romantic truths.",
|
71 |
+
"genre": ["Comedy", "Romance", "Disaster"],
|
72 |
+
"director": "Alek Keshishian",
|
73 |
+
"actors": ["Brittany Murphy", "Matthew Rhys", "Santiago Cabrera"],
|
74 |
+
"year": 2006,
|
75 |
+
"box_office": 6753996,
|
76 |
+
"awards": [],
|
77 |
+
"rating": 3.0
|
78 |
+
},
|
79 |
+
{
|
80 |
+
"title": "Disaster Movie",
|
81 |
+
"description": "A group of friends faces absurd, over-the-top disasters in a parody of popular disaster films.",
|
82 |
+
"genre": ["Comedy", "Disaster"],
|
83 |
+
"director": "Aaron Seltzer",
|
84 |
+
"actors": ["Matt Lanter", "Vanessa Minnillo", "Kim Kardashian"],
|
85 |
+
"year": 2008,
|
86 |
+
"box_office": 34816440,
|
87 |
+
"awards": [],
|
88 |
+
"rating": 2.0
|
89 |
+
},
|
90 |
+
{
|
91 |
+
"title": "It's a Disaster",
|
92 |
+
"description": "A couples' brunch turns chaotic when they learn of an impending catastrophic attack, testing their relationships.",
|
93 |
+
"genre": ["Comedy", "Drama", "Disaster"],
|
94 |
+
"director": "Todd Berger",
|
95 |
+
"actors": ["Rachel Boston", "Kevin M. Brennan", "David Cross"],
|
96 |
+
"year": 2012,
|
97 |
+
"box_office": 60868,
|
98 |
+
"awards": [],
|
99 |
+
"rating": 4.0
|
100 |
+
},
|
101 |
+
{
|
102 |
+
"title": "The Challenger Disaster",
|
103 |
+
"description": "A dramatization of physicist Richard Feynman's investigation into the Space Shuttle Challenger explosion.",
|
104 |
+
"genre": ["Drama", "Disaster"],
|
105 |
+
"director": "James Hawes",
|
106 |
+
"actors": ["William Hurt", "Bruce Greenwood", "Joanne Whalley"],
|
107 |
+
"year": 2013,
|
108 |
+
"box_office": 0, # TV movie, no theatrical box office
|
109 |
+
"awards": [],
|
110 |
+
"rating": 3.0
|
111 |
+
},
|
112 |
+
{
|
113 |
+
"title": "Some Girl(s)",
|
114 |
+
"description": "A writer travels the country to confront past girlfriends before his wedding, unraveling emotional consequences.",
|
115 |
+
"genre": ["Comedy", "Drama"],
|
116 |
+
"director": "Daisy von Scherler Mayer",
|
117 |
+
"actors": ["Adam Brody", "Kristen Bell", "Zoe Kazan"],
|
118 |
+
"year": 2013,
|
119 |
+
"box_office": 0, # Limited release, no significant box office data
|
120 |
+
"awards": [],
|
121 |
+
"rating": 3.5
|
122 |
+
},
|
123 |
+
{
|
124 |
+
"title": "The Fourth Angel",
|
125 |
+
"description": "A grieving father turns vigilante after his family is killed in a terrorist hijacking, seeking justice outside the law.",
|
126 |
+
"genre": ["Action", "Drama", "Thriller"],
|
127 |
+
"director": "John Irvin",
|
128 |
+
"actors": ["Jeremy Irons", "Forest Whitaker", "Jason Priestley"],
|
129 |
+
"year": 2001,
|
130 |
+
"box_office": 0, # Limited theatrical release, no major box office data
|
131 |
+
"awards": [],
|
132 |
+
"rating": 3.5
|
133 |
+
},
|
134 |
+
{
|
135 |
+
"title": "The Rat Race",
|
136 |
+
"description": "A musician and a dancer form an unlikely partnership to survive the harsh realities of New York City.",
|
137 |
+
"genre": ["Comedy", "Drama", "Romance"],
|
138 |
+
"director": "Robert Mulligan",
|
139 |
+
"actors": ["Tony Curtis", "Debbie Reynolds", "Jack Oakie"],
|
140 |
+
"year": 1960,
|
141 |
+
"box_office": 0, # Pre-1970s box office data unavailable or unreliable
|
142 |
+
"awards": [],
|
143 |
+
"rating": 3.5
|
144 |
+
},
|
145 |
+
{
|
146 |
+
"title": "Straight from the Heart",
|
147 |
+
"description": "A photographer finds love with a Wyoming rancher after answering his ad for a wife, overcoming their differences.",
|
148 |
+
"genre": ["Action", "Adventure", "Drama", "Romance", "Western"],
|
149 |
+
"director": "David S. Cass Sr.",
|
150 |
+
"actors": ["Teri Polo", "Andrew McCarthy", "Patricia Kalember"],
|
151 |
+
"year": 2003,
|
152 |
+
"box_office": 0, # TV movie, no theatrical box office
|
153 |
+
"awards": [],
|
154 |
+
"rating": 4.0
|
155 |
+
},
|
156 |
+
{
|
157 |
+
"title": "Lone Survivor",
|
158 |
+
"description": "A Navy SEAL team faces overwhelming odds in a failed mission against Taliban forces in Afghanistan.",
|
159 |
+
"genre": ["Action", "Drama", "Thriller", "War"],
|
160 |
+
"director": "Peter Berg",
|
161 |
+
"actors": ["Mark Wahlberg", "Taylor Kitsch", "Emile Hirsch"],
|
162 |
+
"year": 2013,
|
163 |
+
"box_office": 154802912,
|
164 |
+
"awards": [],
|
165 |
+
"rating": 3.0
|
166 |
+
}
|
167 |
+
]
|