From afe3ae4692c58e0cfc42c1acc5766c073d87f517 Mon Sep 17 00:00:00 2001 From: Carlos Silva Date: Tue, 1 Aug 2023 22:33:22 +0100 Subject: [PATCH] /Users/barbaragdias/Desktop/Week 3/lab-web-scraping --- your-code/main.ipynb | 9579 +++++++++++++++++++++++++++++++++++++++++- 1 file changed, 9540 insertions(+), 39 deletions(-) mode change 100755 => 100644 your-code/main.ipynb diff --git a/your-code/main.ipynb b/your-code/main.ipynb old mode 100755 new mode 100644 index 1fe9046..177c288 --- a/your-code/main.ipynb +++ b/your-code/main.ipynb @@ -36,7 +36,7 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 71, "metadata": {}, "outputs": [], "source": [ @@ -54,21 +54,88 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 74, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://github.com/trending/developers'" + "url = 'https://github.com/trending/developers'\n", + "\n", + "r = requests.get(url)\n", + "r.status_code" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 77, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "soup = BeautifulSoup(response.content, 'html.parser')" + ] + }, + { + "cell_type": "code", + "execution_count": 118, + "metadata": {}, + "outputs": [], + "source": [ + "trending_developers = soup.find_all('h1', class_='h3 lh-condensed')" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Trending Developers on GitHub:\n", + "1. tangly1024\n", + "2. Henrik Rydgård\n", + "3. c9s\n", + "4. Ha Thach\n", + "5. Gongfan Fang\n", + "6. App Generator\n", + "7. Antonio Cheong\n", + "8. pilcrowOnPaper\n", + "9. d1onys1us\n", + "10. boojack\n", + "11. JJ Kasper\n", + "12. Ben V. Brown\n", + "13. Manuel Kaufmann\n", + "14. Herman Slatman\n", + "15. Predrag Gruevski\n", + "16. Justin Schroeder\n", + "17. Yann Collet\n", + "18. Leonid Bugaev\n", + "19. Geoff Boeing\n", + "20. Alberto Rodríguez\n", + "21. Lukáš Křečan\n", + "22. oobabooga\n", + "23. Hengfei Yang\n", + "24. neo.zhu\n", + "25. Younes Belkada\n" + ] + } + ], + "source": [ + "print(\"Trending Developers on GitHub:\")\n", + "for index, developer in enumerate(trending_developers, start=1):\n", + " print(f\"{index}. {developer.text.strip()}\")" ] }, { @@ -126,11 +193,195 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 108, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Trending Developers on GitHub:\n", + "1. tangly1024\n", + "2. Henrik Rydgård\n", + "3. c9s\n", + "4. Ha Thach\n", + "5. Gongfan Fang\n", + "6. App Generator\n", + "7. Antonio Cheong\n", + "8. pilcrowOnPaper\n", + "9. d1onys1us\n", + "10. boojack\n", + "11. JJ Kasper\n", + "12. Ben V. Brown\n", + "13. Manuel Kaufmann\n", + "14. Herman Slatman\n", + "15. Predrag Gruevski\n", + "16. Justin Schroeder\n", + "17. Yann Collet\n", + "18. Leonid Bugaev\n", + "19. Geoff Boeing\n", + "20. Alberto Rodríguez\n", + "21. Lukáš Křečan\n", + "22. oobabooga\n", + "23. Hengfei Yang\n", + "24. neo.zhu\n", + "25. Younes Belkada\n" + ] + } + ], + "source": [ + "print(\"Trending Developers on GitHub:\")\n", + "for index, developer in enumerate(trending_developers, start=1):\n", + " print(f\"{index}. {developer.text.strip()}\")" + ] + }, + { + "cell_type": "code", + "execution_count": 112, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "developer_names = []" + ] + }, + { + "cell_type": "code", + "execution_count": 119, + "metadata": {}, + "outputs": [], + "source": [ + "trending_developers_nick = soup.find_all('h1', class_='h4 lh-condensed')" + ] + }, + { + "cell_type": "code", + "execution_count": 122, + "metadata": {}, + "outputs": [], + "source": [ + "for developer_element in trending_developers_nick:\n", + " name_with_username = developer_element.get_text(strip=True)\n", + " name_with_username = name_with_username.replace('\\n', '').replace(' ', ' ')\n", + " developer_names.append(name_with_username)" + ] + }, + { + "cell_type": "code", + "execution_count": 124, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "['tangly1024',\n", + " 'Henrik Rydgård',\n", + " 'c9s',\n", + " 'Ha Thach',\n", + " 'Gongfan Fang',\n", + " 'App Generator',\n", + " 'Antonio Cheong',\n", + " 'pilcrowOnPaper',\n", + " 'd1onys1us',\n", + " 'boojack',\n", + " 'JJ Kasper',\n", + " 'Ben V. Brown',\n", + " 'Manuel Kaufmann',\n", + " 'Herman Slatman',\n", + " 'Predrag Gruevski',\n", + " 'Justin Schroeder',\n", + " 'Yann Collet',\n", + " 'Leonid Bugaev',\n", + " 'Geoff Boeing',\n", + " 'Alberto Rodríguez',\n", + " 'Lukáš Křečan',\n", + " 'oobabooga',\n", + " 'Hengfei Yang',\n", + " 'neo.zhu',\n", + " 'Younes Belkada',\n", + " 'tangly1024',\n", + " 'Henrik Rydgård',\n", + " 'c9s',\n", + " 'Ha Thach',\n", + " 'Gongfan Fang',\n", + " 'App Generator',\n", + " 'Antonio Cheong',\n", + " 'pilcrowOnPaper',\n", + " 'd1onys1us',\n", + " 'boojack',\n", + " 'JJ Kasper',\n", + " 'Ben V. Brown',\n", + " 'Manuel Kaufmann',\n", + " 'Herman Slatman',\n", + " 'Predrag Gruevski',\n", + " 'Justin Schroeder',\n", + " 'Yann Collet',\n", + " 'Leonid Bugaev',\n", + " 'Geoff Boeing',\n", + " 'Alberto Rodríguez',\n", + " 'Lukáš Křečan',\n", + " 'oobabooga',\n", + " 'Hengfei Yang',\n", + " 'neo.zhu',\n", + " 'Younes Belkada',\n", + " 'tangly1024',\n", + " 'Henrik Rydgård',\n", + " 'c9s',\n", + " 'Ha Thach',\n", + " 'Gongfan Fang',\n", + " 'App Generator',\n", + " 'Antonio Cheong',\n", + " 'pilcrowOnPaper',\n", + " 'd1onys1us',\n", + " 'boojack',\n", + " 'JJ Kasper',\n", + " 'Ben V. Brown',\n", + " 'Manuel Kaufmann',\n", + " 'Herman Slatman',\n", + " 'Predrag Gruevski',\n", + " 'Justin Schroeder',\n", + " 'Yann Collet',\n", + " 'Leonid Bugaev',\n", + " 'Geoff Boeing',\n", + " 'Alberto Rodríguez',\n", + " 'Lukáš Křečan',\n", + " 'oobabooga',\n", + " 'Hengfei Yang',\n", + " 'neo.zhu',\n", + " 'Younes Belkada',\n", + " 'NotionNext',\n", + " 'ppsspp',\n", + " 'bbgo',\n", + " 'tinyusb',\n", + " 'Torch-Pruning',\n", + " 'free-site-builder',\n", + " 'ChatGPT-to-API',\n", + " 'lucia',\n", + " 'dapp-slaps',\n", + " 'slash',\n", + " 'notion-blog',\n", + " 'IronOS',\n", + " 'sphinx-translated-node-example',\n", + " 'awesome-threat-intelligence',\n", + " 'trustfall',\n", + " 'arrow-js',\n", + " 'xxHash',\n", + " 'goreplay',\n", + " 'osmnx',\n", + " 'LiveCharts2',\n", + " 'ShedLock',\n", + " 'text-generation-webui',\n", + " 'grpc-flatbuffers-example',\n", + " 'CleanArchitectureWithBlazorServer',\n", + " 'interfacegan']" + ] + }, + "execution_count": 124, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "developer_names" ] }, { @@ -144,21 +395,1684 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 266, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 266, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://github.com/trending/python?since=daily'" + "url = 'https://github.com/trending/python?since=daily'\n", + "\n", + "r = requests.get(url)\n", + "r.status_code" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 271, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "soup = BeautifulSoup(r.content, 'html.parser')" + ] + }, + { + "cell_type": "code", + "execution_count": 272, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[\n", + " \n", + " \n", + " \n", + " \n", + " bregman-arie /\n", + " \n", + " devops-exercises\n", + " ,\n", + " \n", + " \n", + " \n", + " \n", + " 49,837\n", + " ,\n", + " \n", + " \n", + " \n", + " \n", + " 10,956\n", + " ]" + ] + }, + "execution_count": 272, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "trending_repositories = soup.find_all('article', attrs={\"class\":'Box-row'})\n", + "trending_repositories[0].find_all(\"a\", attrs={\"class\":\"Link\"})" + ] + }, + { + "cell_type": "code", + "execution_count": 273, + "metadata": {}, + "outputs": [], + "source": [ + "for developer_element in trending_repositories:\n", + " name_with_username = developer_element.get_text(strip=True)\n", + " name_with_username = name_with_username.replace('\\n', '').replace(' ', ' ')\n", + " developer_names.append(name_with_username)" + ] + }, + { + "cell_type": "code", + "execution_count": 274, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "[
\n", + " \n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " bregman-arie /\n", + " \n", + " devops-exercises\n", + "

\n", + "

\n", + " Linux, Jenkins, AWS, SRE, Prometheus, Docker, Python, Ansible, Git, Kubernetes, Terraform, OpenStack, SQL, NoSQL, Azure, GCP, DNS, Elastic, Network, Virtualization. DevOps Interview Questions\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 49,837\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 10,956\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@surister\"\n", + " \"@austinsonger\"\n", + " \"@bregman-arie\"\n", + " \"@knoxknot\"\n", + " \"@adrianfusco\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 2,222 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " base-org /\n", + " \n", + " node\n", + "

\n", + "

\n", + " Everything required to run your own Base node\n", + "

\n", + "
\n", + " \n", + " \n", + " Shell\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 56,339\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,903\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@mdehoog\"\n", + " \"@wbnns\"\n", + " \"@roberto-bayardo\"\n", + " \"@stratusceo\"\n", + " \"@lookfirst\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 572 stars today\n", + "
\n", + "
,\n", + "
\n", + " \n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " dani-garcia /\n", + " \n", + " vaultwarden\n", + "

\n", + "

\n", + " Unofficial Bitwarden compatible server written in Rust, formerly known as bitwarden_rs\n", + "

\n", + "
\n", + " \n", + " \n", + " Rust\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 26,755\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,368\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@dani-garcia\"\n", + " \"@BlackDex\"\n", + " \"@jjlin\"\n", + " \"@mprasil\"\n", + " \"@njfox\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 95 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " llm-attacks /\n", + " \n", + " llm-attacks\n", + "

\n", + "

\n", + " Universal and Transferable Attacks on Aligned Language Models\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,019\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 124\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@andyzoujm\"\n", + " \"@zifanw505\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 198 stars today\n", + "
\n", + "
,\n", + "
\n", + " \n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " dogboy21 /\n", + " \n", + " serializationisbad\n", + "

\n", + "

\n", + " A Minecraft coremod / Java Agent aiming to patch serious security vulnerabilities found in many different mods\n", + "

\n", + "
\n", + " \n", + " \n", + " Java\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 183\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 15\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@dogboy21\"\n", + " \"@mysticdrew\"\n", + " \"@SuperMartijn642\"\n", + " \"@bziemons\"\n", + " \"@HellFirePvP\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 59 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " TheAlgorithms /\n", + " \n", + " Python\n", + "

\n", + "

\n", + " All Algorithms implemented in Python\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 161,776\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 40,886\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@cclauss\"\n", + " \"@harshildarji\"\n", + " \"@pre-commit-ci\"\n", + " \"@dhruvmanila\"\n", + " \"@poyea\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 272 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " geekan /\n", + " \n", + " MetaGPT\n", + "

\n", + "

\n", + " 🌟 The Multi-Agent Framework: Given one line Requirement, return PRD, Design, Tasks, Repo\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 7,920\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,020\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@geekan\"\n", + " \"@stellaHSR\"\n", + " \"@voidking\"\n", + " \"@sablin39\"\n", + " \"@eltociear\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 425 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " bloomberg /\n", + " \n", + " blazingmq\n", + "

\n", + "

\n", + " A modern high-performance open source message queuing system\n", + "

\n", + "
\n", + " \n", + " \n", + " C++\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,785\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 63\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@hallfox\"\n", + " \"@quarter-note\"\n", + " \"@mlongob\"\n", + " \"@678098\"\n", + " \"@lee-see\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 211 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " langgenius /\n", + " \n", + " dify\n", + "

\n", + "

\n", + " One API for plugins and datasets, one interface for prompt engineering and visual operation, all for creating powerful AI applications.\n", + "

\n", + "
\n", + " \n", + " \n", + " TypeScript\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 6,402\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 933\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@takatost\"\n", + " \"@iamjoel\"\n", + " \"@zxhlyh\"\n", + " \"@JohnJyong\"\n", + " \"@crazywoola\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 187 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " Ignitetechnologies /\n", + " \n", + " Mindmap\n", + "

\n", + "

\n", + " This repository will contain many mindmaps for cyber security technologies, methodologies, courses, and certifications in a tree structure to give brief details about them\n", + "

\n", + "
\n", + " \n", + " \n", + " \n", + " \n", + " 4,111\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 732\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@Ignitetechnologies\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 147 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " mastodon /\n", + " \n", + " mastodon\n", + "

\n", + "

\n", + " Your self-hosted, globally interconnected microblogging community\n", + "

\n", + "
\n", + " \n", + " \n", + " Ruby\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 43,385\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 6,439\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@Gargron\"\n", + " \"@dependabot\"\n", + " \"@ClearlyClaire\"\n", + " \"@dependabot-preview\"\n", + " \"@ykzts\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 102 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " apple /\n", + " \n", + " ml-stable-diffusion\n", + "

\n", + "

\n", + " Stable Diffusion with Core ML on Apple Silicon\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 13,994\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 718\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@atiorh\"\n", + " \"@pcuenca\"\n", + " \"@vzsg\"\n", + " \"@msiracusa\"\n", + " \"@alejandro-isaza\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 131 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " a16z-infra /\n", + " \n", + " companion-app\n", + "

\n", + "

\n", + " AI companions with memory: a lightweight stack to create and host your own AI companions\n", + "

\n", + "
\n", + " \n", + " \n", + " TypeScript\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 4,722\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 600\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@ykhli\"\n", + " \"@jmoore994\"\n", + " \"@jenniferli23\"\n", + " \"@pphu\"\n", + " \"@shahmeerchaudhry\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 118 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " owncast /\n", + " \n", + " owncast\n", + "

\n", + "

\n", + " Take control over your live stream video by running it yourself. Streaming + chat out of the box.\n", + "

\n", + "
\n", + " \n", + " \n", + " TypeScript\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 7,909\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 667\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@gabek\"\n", + " \"@renovate\"\n", + " \"@dependabot\"\n", + " \"@gingervitis\"\n", + " \"@MFTabriz\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 216 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " Stability-AI /\n", + " \n", + " generative-models\n", + "

\n", + "

\n", + " Generative Models by Stability AI\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 7,765\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 957\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@timudk\"\n", + " \"@ablattmann\"\n", + " \"@akx\"\n", + " \"@benjaminaubin\"\n", + " \"@jenuk\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 235 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " commaai /\n", + " \n", + " openpilot\n", + "

\n", + "

\n", + " openpilot is an open source driver assistance system. openpilot performs the functions of Automated Lane Centering and Adaptive Cruise Control for 250+ supported car makes and models.\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 40,887\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 7,502\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@adeebshihadeh\"\n", + " \"@pd0wm\"\n", + " \"@deanlee\"\n", + " \"@sshane\"\n", + " \"@haraschax\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 163 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " comfyanonymous /\n", + " \n", + " ComfyUI\n", + "

\n", + "

\n", + " A powerful and modular stable diffusion GUI with a graph/nodes interface.\n", + "

\n", + "
\n", + " \n", + " \n", + " Python\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 9,225\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 815\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@comfyanonymous\"\n", + " \"@pythongosssss\"\n", + " \"@EllangoK\"\n", + " \"@space-nuko\"\n", + " \"@missionfloyd\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 188 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " languagetool-org /\n", + " \n", + " languagetool\n", + "

\n", + "

\n", + " Style and Grammar Checker for 25+ Languages\n", + "

\n", + "
\n", + " \n", + " \n", + " Java\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 9,350\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,115\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@danielnaber\"\n", + " \"@jaumeortola\"\n", + " \"@tiff\"\n", + " \"@marcoagpinto\"\n", + " \"@milekpl\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 109 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " gmpetrov /\n", + " \n", + " databerry\n", + "

\n", + "

\n", + " The no-code platform for building custom LLM Agents\n", + "

\n", + "
\n", + " \n", + " \n", + " TypeScript\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 2,243\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 251\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@gmpetrov\"\n", + " \"@fbossiere\"\n", + " \"@BenoitGdb\"\n", + " \"@Klaudioz\"\n", + " \"@rhijjawi\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 84 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " GraphiteEditor /\n", + " \n", + " Graphite\n", + "

\n", + "

\n", + " 2D raster & vector editor that melds traditional layers & tools with a modern node-based, fully non-destructive procedural workflow.\n", + "

\n", + "
\n", + " \n", + " \n", + " Rust\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 3,590\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 157\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@Keavon\"\n", + " \"@0HyperCube\"\n", + " \"@TrueDoctor\"\n", + " \"@mfish33\"\n", + " \"@hannahli2010\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 281 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 2dust /\n", + " \n", + " v2rayN\n", + "

\n", + "

\n", + " A GUI client for Windows, support Xray core and v2fly core and others\n", + "

\n", + "
\n", + " \n", + " \n", + " C#\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 45,788\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 8,459\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@2dust\"\n", + " \"@yfdyh000\"\n", + " \"@CGQAQ\"\n", + " \"@Lemonawa\"\n", + " \"@ilyfairy\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 86 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " nix-community /\n", + " \n", + " home-manager\n", + "

\n", + "

\n", + " Manage a user environment using Nix [maintainer=@rycee] \n", + "

\n", + "
\n", + " \n", + " \n", + " Nix\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 4,507\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 1,322\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@rycee\"\n", + " \"@ncfavier\"\n", + " \"@berbiche\"\n", + " \"@sumnerevans\"\n", + " \"@teto\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 93 stars today\n", + "
\n", + "
,\n", + "
\n", + " \n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " tokio-rs /\n", + " \n", + " axum\n", + "

\n", + "

\n", + " Ergonomic and modular web framework built with Tokio, Tower, and Hyper\n", + "

\n", + "
\n", + " \n", + " \n", + " Rust\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 11,451\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 749\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@davidpdrsn\"\n", + " \"@jplatte\"\n", + " \"@SabrinaJewson\"\n", + " \"@programatik29\"\n", + " \"@tottoto\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 82 stars today\n", + "
\n", + "
,\n", + "
\n", + "
\n", + " \n", + "
\n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " fanmingming /\n", + " \n", + " live\n", + "

\n", + "

\n", + " ✯ 一个国内可直连的直播源分享项目 ✯ 🔕 永久免费 直连访问 完整开源 不含广告 完善的台标 直播源支持IPv4/IPv6双栈访问 🔕\n", + "

\n", + "
\n", + " \n", + " \n", + " HTML\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 5,401\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 962\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@fanmingming\"\n", + " \"@drangjchen\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 282 stars today\n", + "
\n", + "
,\n", + "
\n", + " \n", + "

\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " satoshi0212 /\n", + " \n", + " visionOS_30Days\n", + "

\n", + "

\n", + " visionOS 30 days challenge.\n", + "

\n", + "
\n", + " \n", + " \n", + " Swift\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 529\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 26\n", + " \n", + " \n", + " Built by\n", + " \n", + " \"@satoshi0212\"\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " 107 stars today\n", + "
\n", + "
]" + ] + }, + "execution_count": 274, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "trending_repositories" ] }, { @@ -171,21 +2085,110 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 189, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 189, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://en.wikipedia.org/wiki/Walt_Disney'" + "url = 'https://en.wikipedia.org/wiki/Walt_Disney'\n", + "\n", + "\n", + "r = requests.get(url)\n", + "r.status_code" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 190, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "if r.status_code == 200:\n", + " soup = BeautifulSoup(r.content, 'html.parser')\n", + " image_links = []" + ] + }, + { + "cell_type": "code", + "execution_count": 191, + "metadata": {}, + "outputs": [], + "source": [ + "for img_tag in soup.find_all('img'):\n", + " \n", + " image_link = img_tag.get('src')\n", + " if image_link:\n", + " image_links.append(image_link)" + ] + }, + { + "cell_type": "code", + "execution_count": 192, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "/static/images/icons/wikipedia.png\n", + "/static/images/mobile/copyright/wikipedia-wordmark-en.svg\n", + "/static/images/mobile/copyright/wikipedia-tagline-en.svg\n", + "//upload.wikimedia.org/wikipedia/en/thumb/e/e7/Cscr-featured.svg/20px-Cscr-featured.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/8/8c/Extended-protection-shackle.svg/20px-Extended-protection-shackle.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/d/df/Walt_Disney_1946.JPG/220px-Walt_Disney_1946.JPG\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/8/87/Walt_Disney_1942_signature.svg/150px-Walt_Disney_1942_signature.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/3/3a/Walt_Disney_Birthplace_Exterior_Hermosa_Chicago_Illinois.jpg/220px-Walt_Disney_Birthplace_Exterior_Hermosa_Chicago_Illinois.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/c/c4/Walt_Disney_envelope_ca._1921.jpg/220px-Walt_Disney_envelope_ca._1921.jpg\n", + "//upload.wikimedia.org/wikipedia/en/thumb/4/4e/Steamboat-willie.jpg/220px-Steamboat-willie.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/c/cd/Walt_Disney_Snow_white_1937_trailer_screenshot_%2813%29.jpg/220px-Walt_Disney_Snow_white_1937_trailer_screenshot_%2813%29.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/1/15/Disney_drawing_goofy.jpg/170px-Disney_drawing_goofy.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/8/8c/WaltDisneyplansDisneylandDec1954.jpg/220px-WaltDisneyplansDisneylandDec1954.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Walt_disney_portrait_right.jpg/170px-Walt_disney_portrait_right.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Walt_Disney_Grave.JPG/170px-Walt_Disney_Grave.JPG\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/1/13/DisneySchiphol1951.jpg/220px-DisneySchiphol1951.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/6/6c/Disney1968.jpg/170px-Disney1968.jpg\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/b/b0/Disney_Oscar_1953_%28cropped%29.jpg/170px-Disney_Oscar_1953_%28cropped%29.jpg\n", + "//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/30px-Commons-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/38px-Wikisource-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/34px-Wikiquote-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/e/e3/Disneyland_Resort_logo.svg/135px-Disneyland_Resort_logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/d/da/Animation_disc.svg/20px-Animation_disc.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/6/69/P_vip.svg/19px-P_vip.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/1/1a/Magic_Kingdom_castle.jpg/15px-Magic_Kingdom_castle.jpg\n", + "//upload.wikimedia.org/wikipedia/en/thumb/e/e7/Video-x-generic.svg/19px-Video-x-generic.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/a/a3/Flag_of_Los_Angeles_County%2C_California.svg/21px-Flag_of_Los_Angeles_County%2C_California.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/8/8c/Blank_television_set.svg/21px-Blank_television_set.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/a/a4/Flag_of_the_United_States.svg/21px-Flag_of_the_United_States.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/4/4a/Commons-logo.svg/14px-Commons-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/f/fa/Wikiquote-logo.svg/16px-Wikiquote-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/4/4c/Wikisource-logo.svg/18px-Wikisource-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/commons/thumb/f/ff/Wikidata-logo.svg/21px-Wikidata-logo.svg.png\n", + "//upload.wikimedia.org/wikipedia/en/thumb/8/8a/OOjs_UI_icon_edit-ltr-progressive.svg/10px-OOjs_UI_icon_edit-ltr-progressive.svg.png\n", + "//en.wikipedia.org/wiki/Special:CentralAutoLogin/start?type=1x1\n", + "/static/images/footer/wikimedia-button.png\n", + "/static/images/footer/poweredby_mediawiki_88x31.png\n", + "Failed to fetch the page. Status code: 200\n" + ] + } + ], + "source": [ + " for link in image_links:\n", + " print(link)\n", + "else:\n", + " print(f\"Failed to fetch the page. Status code: {r.status_code}\")" ] }, { @@ -197,21 +2200,69 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 193, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 193, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://www.wikipedia.org/'" + "url = 'https://www.wikipedia.org/'\n", + "\n", + "\n", + "r = requests.get(url)\n", + "r.status_code" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 194, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "if response.status_code == 200:\n", + " \n", + " soup = BeautifulSoup(response.content, 'html.parser')" + ] + }, + { + "cell_type": "code", + "execution_count": 197, + "metadata": {}, + "outputs": [], + "source": [ + "language_divs = soup.find_all('div', class_='jsl10n-visible')" + ] + }, + { + "cell_type": "code", + "execution_count": 198, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "Failed to fetch data. Status code: 200\n" + ] + } + ], + "source": [ + "for div in language_divs:\n", + " language_name = div.b.text.strip()\n", + " article_count = div.small.bdi.text.strip()\n", + " print(f\"Language: {language_name}, Articles: {article_count}\")\n", + "else:\n", + " print(f\"Failed to fetch data. Status code: {response.status_code}\")" ] }, { @@ -224,21 +2275,115 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 199, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 199, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise\n", - "url = 'https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers'" + "url = 'https://en.wikipedia.org/wiki/List_of_languages_by_number_of_native_speakers'\n", + "\n", + "\n", + "\n", + "\n", + "r = requests.get(url)\n", + "r.status_code" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 200, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "tables = pd.read_html(url)" + ] + }, + { + "cell_type": "code", + "execution_count": 201, + "metadata": {}, + "outputs": [], + "source": [ + "top_languages_df = tables[0]" + ] + }, + { + "cell_type": "code", + "execution_count": 202, + "metadata": {}, + "outputs": [], + "source": [ + "top_languages_df = top_languages_df.iloc[:, :2] \n", + "top_languages_df.columns = ['Language', 'Number of Native Speakers']" + ] + }, + { + "cell_type": "code", + "execution_count": 203, + "metadata": {}, + "outputs": [], + "source": [ + "top_languages_df.dropna(subset=['Language'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 204, + "metadata": {}, + "outputs": [], + "source": [ + "top_languages_df.reset_index(drop=True, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 205, + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + " Language \\\n", + "0 Mandarin Chinese (incl. Standard Chinese, but ... \n", + "1 Spanish \n", + "2 English \n", + "3 Hindi (excl. Urdu, and other languages) \n", + "4 Portuguese \n", + "5 Bengali \n", + "6 Russian \n", + "7 Japanese \n", + "8 Yue Chinese (incl. Cantonese) \n", + "9 Vietnamese \n", + "\n", + " Number of Native Speakers \n", + "0 939.0 \n", + "1 485.0 \n", + "2 380.0 \n", + "3 345.0 \n", + "4 236.0 \n", + "5 234.0 \n", + "6 147.0 \n", + "7 123.0 \n", + "8 86.1 \n", + "9 85.0 \n" + ] + } + ], + "source": [ + "top_10_languages = top_languages_df.head(10)\n", + "print(top_10_languages)" ] }, { @@ -251,12 +2396,7133 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 275, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 275, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "# This is the url you will scrape in this exercise \n", - "url = 'https://www.imdb.com/chart/top'" + "url = 'https://www.imdb.com/chart/top'\n", + "\n", + "\n", + "r = requests.get(url, headers ={\"User-agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"})\n", + "r.status_code" + ] + }, + { + "cell_type": "code", + "execution_count": 300, + "metadata": {}, + "outputs": [], + "source": [ + "if r.status_code == 200:\n", + " soup = BeautifulSoup(r.content, 'html.parser')" + ] + }, + { + "cell_type": "code", + "execution_count": 309, + "metadata": {}, + "outputs": [], + "source": [ + "rows = soup.find_all(\"li\", attrs = {\"class\":\"ipc-metadata-list-summary-item sc-bca49391-0 eypSaE cli-parent\"})" + ] + }, + { + "cell_type": "code", + "execution_count": 310, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'1. Os Condenados de Shawshank'" + ] + }, + "execution_count": 310, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rows[0].find_all(\"a\", attrs = {\"class\":\"ipc-title-link-wrapper\"})[0].get_text()" + ] + }, + { + "cell_type": "code", + "execution_count": 316, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'1994'" + ] + }, + "execution_count": 316, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "rows[0].find_all(\"span\", attrs = {\"class\":\"sc-14dd939d-6 kHVqMR cli-title-metadata-item\"})[0].get_text()" + ] + }, + { + "cell_type": "code", + "execution_count": 321, + "metadata": {}, + "outputs": [], + "source": [ + "movies_dict = {}\n", + "\n", + "headers = {\"User-Agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"}\n", + "counter = 0\n", + "\n", + "for row in rows[:250]:\n", + " title = row.find_all(\"a\", attrs = {\"class\":\"ipc-title-link-wrapper\"})[0].get_text()\n", + " year = row.find_all(\"span\", attrs = {\"class\":\"sc-14dd939d-6 kHVqMR cli-title-metadata-item\"})[0].get_text()\n", + " partial_link = row.find_all(\"a\", attrs = {\"class\":\"ipc-title-link-wrapper\"})[0][\"href\"]\n", + "\n", + " url = f\"https://www.imdb.com{partial_link}\"\n", + " r = requests.get(url, headers = headers)\n", + " soup = BeautifulSoup(r.content)\n", + " director = soup.find_all(\"div\", attrs = {\"class\":\"ipc-metadata-list-item__content-container\"})[0].get_text()\n", + "\n", + " movies_dict[counter] = {\"Title\":title,\n", + " \"Release date\": year,\n", + " \"Director\":director,\n", + " \"Stars\":stars}\n", + " counter += 1" + ] + }, + { + "cell_type": "code", + "execution_count": 322, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "{0: {'Title': '1. Os Condenados de Shawshank',\n", + " 'Release date': '1994',\n", + " 'Director': 'Frank Darabont',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 1: {'Title': '2. O Padrinho',\n", + " 'Release date': '1972',\n", + " 'Director': 'Francis Ford Coppola',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 2: {'Title': '3. O Cavaleiro das Trevas',\n", + " 'Release date': '2008',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 3: {'Title': '4. O Padrinho: Parte II',\n", + " 'Release date': '1974',\n", + " 'Director': 'Francis Ford Coppola',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 4: {'Title': '5. Doze Homens em Fúria',\n", + " 'Release date': '1957',\n", + " 'Director': 'Sidney Lumet',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 5: {'Title': '6. A Lista de Schindler',\n", + " 'Release date': '1993',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 6: {'Title': '7. O Senhor dos Anéis - O Regresso do Rei',\n", + " 'Release date': '2003',\n", + " 'Director': 'Peter Jackson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 7: {'Title': '8. Pulp Fiction',\n", + " 'Release date': '1994',\n", + " 'Director': 'Quentin Tarantino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 8: {'Title': '9. O Senhor dos Anéis - A Irmandade do Anel',\n", + " 'Release date': '2001',\n", + " 'Director': 'Peter Jackson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 9: {'Title': '10. O Bom, o Mau e o Vilão',\n", + " 'Release date': '1966',\n", + " 'Director': 'Sergio Leone',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 10: {'Title': '11. Forrest Gump',\n", + " 'Release date': '1994',\n", + " 'Director': 'Robert Zemeckis',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 11: {'Title': '12. Clube de Combate',\n", + " 'Release date': '1999',\n", + " 'Director': 'David Fincher',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 12: {'Title': '13. O Senhor dos Anéis - As Duas Torres',\n", + " 'Release date': '2002',\n", + " 'Director': 'Peter Jackson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 13: {'Title': '14. A Origem',\n", + " 'Release date': '2010',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 14: {'Title': '15. Homem-Aranha: Através do Aranhaverso',\n", + " 'Release date': '2023',\n", + " 'Director': 'Joaquim Dos SantosKemp PowersJustin K. Thompson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 15: {'Title': '16. Star Wars: Episódio V - O Império Contra-Ataca',\n", + " 'Release date': '1980',\n", + " 'Director': 'Irvin Kershner',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 16: {'Title': '17. Matrix',\n", + " 'Release date': '1999',\n", + " 'Director': 'Lana WachowskiLilly Wachowski',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 17: {'Title': '18. Tudo Bons Rapazes',\n", + " 'Release date': '1990',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 18: {'Title': '19. Voando Sobre Um Ninho de Cucos',\n", + " 'Release date': '1975',\n", + " 'Director': 'Milos Forman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 19: {'Title': '20. Seven - 7 Pecados Mortais',\n", + " 'Release date': '1995',\n", + " 'Director': 'David Fincher',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 20: {'Title': '21. Do Céu Caiu Uma Estrela',\n", + " 'Release date': '1946',\n", + " 'Director': 'Frank Capra',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 21: {'Title': '22. Os Sete Samurais',\n", + " 'Release date': '1954',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 22: {'Title': '23. O Silêncio dos Inocentes',\n", + " 'Release date': '1991',\n", + " 'Director': 'Jonathan Demme',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 23: {'Title': '24. Interstellar',\n", + " 'Release date': '2014',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 24: {'Title': '25. O Resgate do Soldado Ryan',\n", + " 'Release date': '1998',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 25: {'Title': '26. Cidade de Deus',\n", + " 'Release date': '2002',\n", + " 'Director': 'Fernando MeirellesKátia Lund',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 26: {'Title': '27. A Vida É Bela',\n", + " 'Release date': '1997',\n", + " 'Director': 'Roberto Benigni',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 27: {'Title': '28. À Espera de Um Milagre',\n", + " 'Release date': '1999',\n", + " 'Director': 'Frank Darabont',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 28: {'Title': '29. Oppenheimer',\n", + " 'Release date': '2023',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 29: {'Title': '30. Star Wars: Episódio IV - Uma Nova Esperança',\n", + " 'Release date': '1977',\n", + " 'Director': 'George Lucas',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 30: {'Title': '31. Exterminador Implacável 2 - O Dia do Julgamento',\n", + " 'Release date': '1991',\n", + " 'Director': 'James Cameron',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 31: {'Title': '32. Regresso ao Futuro',\n", + " 'Release date': '1985',\n", + " 'Director': 'Robert Zemeckis',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 32: {'Title': '33. A Viagem de Chihiro',\n", + " 'Release date': '2001',\n", + " 'Director': 'Hayao Miyazaki',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 33: {'Title': '34. O Pianista',\n", + " 'Release date': '2002',\n", + " 'Director': 'Roman Polanski',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 34: {'Title': '35. Psico',\n", + " 'Release date': '1960',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 35: {'Title': '36. Parasitas',\n", + " 'Release date': '2019',\n", + " 'Director': 'Bong Joon Ho',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 36: {'Title': '37. Gladiador',\n", + " 'Release date': '2000',\n", + " 'Director': 'Ridley Scott',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 37: {'Title': '38. The Lion King',\n", + " 'Release date': '1994',\n", + " 'Director': 'Roger AllersRob Minkoff',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 38: {'Title': '39. Léon, o Profissional',\n", + " 'Release date': '1994',\n", + " 'Director': 'Luc Besson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 39: {'Title': '40. América Proibida',\n", + " 'Release date': '1998',\n", + " 'Director': 'Tony Kaye',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 40: {'Title': '41. The Departed - Entre Inimigos',\n", + " 'Release date': '2006',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 41: {'Title': '42. Whiplash - Nos Limites',\n", + " 'Release date': '2014',\n", + " 'Director': 'Damien Chazelle',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 42: {'Title': '43. O Terceiro Passo',\n", + " 'Release date': '2006',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 43: {'Title': '44. Os Suspeitos do Costume',\n", + " 'Release date': '1995',\n", + " 'Director': 'Bryan Singer',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 44: {'Title': '45. Casablanca',\n", + " 'Release date': '1942',\n", + " 'Director': 'Michael Curtiz',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 45: {'Title': '46. O Túmulo dos Pirilampos',\n", + " 'Release date': '1988',\n", + " 'Director': 'Isao Takahata',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 46: {'Title': '47. Harakiri',\n", + " 'Release date': '1962',\n", + " 'Director': 'Masaki Kobayashi',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 47: {'Title': '48. Amigos Improváveis',\n", + " 'Release date': '2011',\n", + " 'Director': 'Olivier NakacheÉric Toledano',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 48: {'Title': '49. Tempos Modernos',\n", + " 'Release date': '1936',\n", + " 'Director': 'Charles Chaplin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 49: {'Title': '50. Cinema Paraíso',\n", + " 'Release date': '1988',\n", + " 'Director': 'Giuseppe Tornatore',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 50: {'Title': '51. Aconteceu no Oeste',\n", + " 'Release date': '1968',\n", + " 'Director': 'Sergio Leone',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 51: {'Title': '52. Janela Indiscreta',\n", + " 'Release date': '1954',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 52: {'Title': '53. Alien - O 8.º Passageiro',\n", + " 'Release date': '1979',\n", + " 'Director': 'Ridley Scott',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 53: {'Title': '54. Luzes da Cidade',\n", + " 'Release date': '1931',\n", + " 'Director': 'Charles Chaplin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 54: {'Title': '55. Apocalypse Now',\n", + " 'Release date': '1979',\n", + " 'Director': 'Francis Ford Coppola',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 55: {'Title': '56. Memento',\n", + " 'Release date': '2000',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 56: {'Title': '57. Django Libertado',\n", + " 'Release date': '2012',\n", + " 'Director': 'Quentin Tarantino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 57: {'Title': '58. Os Salteadores da Arca Perdida',\n", + " 'Release date': '1981',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 58: {'Title': '59. WALL·E',\n", + " 'Release date': '2008',\n", + " 'Director': 'Andrew Stanton',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 59: {'Title': '60. As Vidas dos Outros',\n", + " 'Release date': '2006',\n", + " 'Director': 'Florian Henckel von Donnersmarck',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 60: {'Title': '61. Crepúsculo dos Deuses',\n", + " 'Release date': '1950',\n", + " 'Director': 'Billy Wilder',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 61: {'Title': '62. Horizontes de Glória',\n", + " 'Release date': '1957',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 62: {'Title': '63. Vingadores: Guerra do Infinito',\n", + " 'Release date': '2018',\n", + " 'Director': 'Anthony RussoJoe Russo',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 63: {'Title': '64. Shining',\n", + " 'Release date': '1980',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 64: {'Title': '65. O Grande Ditador',\n", + " 'Release date': '1940',\n", + " 'Director': 'Charles Chaplin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 65: {'Title': '66. Testemunha de Acusação',\n", + " 'Release date': '1957',\n", + " 'Director': 'Billy Wilder',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 66: {'Title': '67. Homem-Aranha: No Universo Aranha',\n", + " 'Release date': '2018',\n", + " 'Director': 'Bob PersichettiPeter RamseyRodney Rothman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 67: {'Title': '68. Aliens: O Recontro Final',\n", + " 'Release date': '1986',\n", + " 'Director': 'James Cameron',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 68: {'Title': '69. Beleza Americana',\n", + " 'Release date': '1999',\n", + " 'Director': 'Sam Mendes',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 69: {'Title': '70. O Cavaleiro das Trevas Renasce',\n", + " 'Release date': '2012',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 70: {'Title': '71. Dr. Estranhoamor',\n", + " 'Release date': '1964',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 71: {'Title': '72. Sacanas Sem Lei',\n", + " 'Release date': '2009',\n", + " 'Director': 'Quentin Tarantino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 72: {'Title': '73. Oldboy - Velho Amigo',\n", + " 'Release date': '2003',\n", + " 'Director': 'Park Chan-wook',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 73: {'Title': '74. Coco',\n", + " 'Release date': '2017',\n", + " 'Director': 'Lee UnkrichAdrian Molina',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 74: {'Title': '75. Amadeus',\n", + " 'Release date': '1984',\n", + " 'Director': 'Milos Forman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 75: {'Title': '76. Toy Story: Os Rivais',\n", + " 'Release date': '1995',\n", + " 'Director': 'John Lasseter',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 76: {'Title': '77. Braveheart: O Desafio do Guerreiro',\n", + " 'Release date': '1995',\n", + " 'Director': 'Mel Gibson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 77: {'Title': '78. A Odisseia do Submarino 96',\n", + " 'Release date': '1981',\n", + " 'Director': 'Wolfgang Petersen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 78: {'Title': '79. Joker',\n", + " 'Release date': '2019',\n", + " 'Director': 'Todd Phillips',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 79: {'Title': '80. Vingadores: Endgame',\n", + " 'Release date': '2019',\n", + " 'Director': 'Anthony RussoJoe Russo',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 80: {'Title': '81. A Princesa Mononoke',\n", + " 'Release date': '1997',\n", + " 'Director': 'Hayao Miyazaki',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 81: {'Title': '82. O Bom Rebelde',\n", + " 'Release date': '1997',\n", + " 'Director': 'Gus Van Sant',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 82: {'Title': '83. Era Uma Vez na América',\n", + " 'Release date': '1984',\n", + " 'Director': 'Sergio Leone',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 83: {'Title': '84. Kimi no na wa.',\n", + " 'Release date': '2016',\n", + " 'Director': 'Makoto Shinkai',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 84: {'Title': '85. 3 Idiots',\n", + " 'Release date': '2009',\n", + " 'Director': 'Rajkumar Hirani',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 85: {'Title': '86. Serenata à Chuva',\n", + " 'Release date': '1952',\n", + " 'Director': 'Stanley DonenGene Kelly',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 86: {'Title': '87. Céu e o Inferno',\n", + " 'Release date': '1963',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 87: {'Title': '88. A Vida não é um Sonho',\n", + " 'Release date': '2000',\n", + " 'Director': 'Darren Aronofsky',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 88: {'Title': '89. Cafarnaum',\n", + " 'Release date': '2018',\n", + " 'Director': 'Nadine Labaki',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 89: {'Title': '90. Toy Story 3',\n", + " 'Release date': '2010',\n", + " 'Director': 'Lee Unkrich',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 90: {'Title': '91. Vem e Vê',\n", + " 'Release date': '1985',\n", + " 'Director': 'Elem Klimov',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 91: {'Title': '92. Star Wars: Episódio VI - O Regresso de Jedi',\n", + " 'Release date': '1983',\n", + " 'Director': 'Richard Marquand',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 92: {'Title': '93. O Despertar da Mente',\n", + " 'Release date': '2004',\n", + " 'Director': 'Michel Gondry',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 93: {'Title': '94. 2001: Odisseia no Espaço',\n", + " 'Release date': '1968',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 94: {'Title': '95. The Hunt - A Caça',\n", + " 'Release date': '2012',\n", + " 'Director': 'Thomas Vinterberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 95: {'Title': '96. Cães Danados',\n", + " 'Release date': '1992',\n", + " 'Director': 'Quentin Tarantino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 96: {'Title': '97. Lawrence da Arábia',\n", + " 'Release date': '1962',\n", + " 'Director': 'David Lean',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 97: {'Title': '98. Viver - Ikiru',\n", + " 'Release date': '1952',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 98: {'Title': '99. O Mundo a Seus Pés',\n", + " 'Release date': '1941',\n", + " 'Director': 'Orson Welles',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 99: {'Title': '100. Matou',\n", + " 'Release date': '1931',\n", + " 'Director': 'Fritz Lang',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 100: {'Title': '101. Intriga Internacional',\n", + " 'Release date': '1959',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 101: {'Title': '102. O Apartamento',\n", + " 'Release date': '1960',\n", + " 'Director': 'Billy Wilder',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 102: {'Title': '103. A Mulher Que Viveu Duas Vezes',\n", + " 'Release date': '1958',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 103: {'Title': '104. O Fabuloso Destino de Amélie',\n", + " 'Release date': '2001',\n", + " 'Director': 'Jean-Pierre Jeunet',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 104: {'Title': '105. Pagos a Dobrar',\n", + " 'Release date': '1944',\n", + " 'Director': 'Billy Wilder',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 105: {'Title': '106. Nascido Para Matar',\n", + " 'Release date': '1987',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 106: {'Title': '107. Scarface - A Força do Poder',\n", + " 'Release date': '1983',\n", + " 'Director': 'Brian De Palma',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 107: {'Title': '108. Laranja Mecânica',\n", + " 'Release date': '1971',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 108: {'Title': '109. Incendies - A Mulher que Canta',\n", + " 'Release date': '2010',\n", + " 'Director': 'Denis Villeneuve',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 109: {'Title': '110. Hamilton',\n", + " 'Release date': '2020',\n", + " 'Director': 'Thomas Kail',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 110: {'Title': '111. Heat - Cidade Sob Pressão',\n", + " 'Release date': '1995',\n", + " 'Director': 'Michael Mann',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 111: {'Title': '112. Up: Altamente',\n", + " 'Release date': '2009',\n", + " 'Director': 'Pete DocterBob Peterson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 112: {'Title': '113. Na Sombra e no Silêncio',\n", + " 'Release date': '1962',\n", + " 'Director': 'Robert Mulligan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 113: {'Title': '114. A Golpada',\n", + " 'Release date': '1973',\n", + " 'Director': 'George Roy Hill',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 114: {'Title': '115. Uma Separação',\n", + " 'Release date': '2011',\n", + " 'Director': 'Asghar Farhadi',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 115: {'Title': '116. Indiana Jones e a Grande Cruzada',\n", + " 'Release date': '1989',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 116: {'Title': '117. Metropolis',\n", + " 'Release date': '1927',\n", + " 'Director': 'Fritz Lang',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 117: {'Title': '118. Die Hard - Assalto ao Arranha-Céus',\n", + " 'Release date': '1988',\n", + " 'Director': 'John McTiernan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 118: {'Title': '119. L.A. Confidencial',\n", + " 'Release date': '1997',\n", + " 'Director': 'Curtis Hanson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 119: {'Title': '120. Snatch - Porcos E Diamantes',\n", + " 'Release date': '2000',\n", + " 'Director': 'Guy Ritchie',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 120: {'Title': '121. Ladrões de Bicicletas',\n", + " 'Release date': '1948',\n", + " 'Director': 'Vittorio De Sica',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 121: {'Title': '122. Taare Zameen Par',\n", + " 'Release date': '2007',\n", + " 'Director': 'Aamir KhanAmole Gupte',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 122: {'Title': '123. Taxi Driver',\n", + " 'Release date': '1976',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 123: {'Title': '124. 1917',\n", + " 'Release date': '2019',\n", + " 'Director': 'Sam Mendes',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 124: {'Title': '125. A Queda: Hitler e o Fim do Terceiro Reich',\n", + " 'Release date': '2004',\n", + " 'Director': 'Oliver Hirschbiegel',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 125: {'Title': '126. Dangal',\n", + " 'Release date': '2016',\n", + " 'Director': 'Nitesh Tiwari',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 126: {'Title': '127. Top Gun: Maverick',\n", + " 'Release date': '2022',\n", + " 'Director': 'Joseph Kosinski',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 127: {'Title': '128. Por Mais Alguns Dólares',\n", + " 'Release date': '1965',\n", + " 'Director': 'Sergio Leone',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 128: {'Title': '129. Batman - O Início',\n", + " 'Release date': '2005',\n", + " 'Director': 'Christopher Nolan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 129: {'Title': '130. O Garoto de Charlot',\n", + " 'Release date': '1921',\n", + " 'Director': 'Charles Chaplin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 130: {'Title': '131. Quanto Mais Quente Melhor',\n", + " 'Release date': '1959',\n", + " 'Director': 'Billy Wilder',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 131: {'Title': '132. O Pai',\n", + " 'Release date': '2020',\n", + " 'Director': 'Florian Zeller',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 132: {'Title': '133. O Lobo de Wall Street',\n", + " 'Release date': '2013',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 133: {'Title': '134. Green Book - Um Guia Para a Vida',\n", + " 'Release date': '2018',\n", + " 'Director': 'Peter Farrelly',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 134: {'Title': '135. Eva',\n", + " 'Release date': '1950',\n", + " 'Director': 'Joseph L. Mankiewicz',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 135: {'Title': '136. O Julgamento de Nuremberga',\n", + " 'Release date': '1961',\n", + " 'Director': 'Stanley Kramer',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 136: {'Title': '137. The Truman Show - A Vida em Directo',\n", + " 'Release date': '1998',\n", + " 'Director': 'Peter Weir',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 137: {'Title': '138. Ran - Os Senhores da Guerra',\n", + " 'Release date': '1985',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 138: {'Title': '139. Casino',\n", + " 'Release date': '1995',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 139: {'Title': '140. Haverá Sangue',\n", + " 'Release date': '2007',\n", + " 'Director': 'Paul Thomas Anderson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 140: {'Title': '141. O Labirinto do Fauno',\n", + " 'Release date': '2006',\n", + " 'Director': 'Guillermo del Toro',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 141: {'Title': '142. Shutter Island',\n", + " 'Release date': '2010',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 142: {'Title': '143. Imperdoável',\n", + " 'Release date': '1992',\n", + " 'Director': 'Clint Eastwood',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 143: {'Title': '144. O Sexto Sentido',\n", + " 'Release date': '1999',\n", + " 'Director': 'M. Night Shyamalan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 144: {'Title': '145. Parque Jurássico',\n", + " 'Release date': '1993',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 145: {'Title': '146. Uma Mente Brilhante',\n", + " 'Release date': '2001',\n", + " 'Director': 'Ron Howard',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 146: {'Title': '147. O Tesouro da Sierra Madre',\n", + " 'Release date': '1948',\n", + " 'Director': 'John Huston',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 147: {'Title': '148. Yojimbo - O Invencível',\n", + " 'Release date': '1961',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 148: {'Title': '149. Este País Não É Para Velhos',\n", + " 'Release date': '2007',\n", + " 'Director': 'Ethan CoenJoel Coen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 149: {'Title': '150. Monty Python e o Cálice Sagrado',\n", + " 'Release date': '1975',\n", + " 'Director': 'Terry GilliamTerry Jones',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 150: {'Title': '151. Kill Bill - A Vingança (vol. 1)',\n", + " 'Release date': '2003',\n", + " 'Director': 'Quentin Tarantino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 151: {'Title': '152. A Grande Evasão',\n", + " 'Release date': '1963',\n", + " 'Director': 'John Sturges',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 152: {'Title': '153. Veio do Outro Mundo',\n", + " 'Release date': '1982',\n", + " 'Director': 'John Carpenter',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 153: {'Title': '154. Às Portas do Inferno',\n", + " 'Release date': '1950',\n", + " 'Director': 'Akira Kurosawa',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 154: {'Title': '155. À Procura de Nemo',\n", + " 'Release date': '2003',\n", + " 'Director': 'Andrew StantonLee Unkrich',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 155: {'Title': '156. O Homem Elefante',\n", + " 'Release date': '1980',\n", + " 'Director': 'David Lynch',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 156: {'Title': '157. Chinatown',\n", + " 'Release date': '1974',\n", + " 'Director': 'Roman Polanski',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 157: {'Title': '158. Homem-Aranha: Sem Volta a Casa',\n", + " 'Release date': '2021',\n", + " 'Director': 'Jon Watts',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 158: {'Title': '159. V de Vingança',\n", + " 'Release date': '2005',\n", + " 'Director': 'James McTeigue',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 159: {'Title': '160. E Tudo o Vento Levou',\n", + " 'Release date': '1939',\n", + " 'Director': 'Victor FlemingGeorge CukorSam Wood',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 160: {'Title': '161. O Touro Enraivecido',\n", + " 'Release date': '1980',\n", + " 'Director': 'Martin Scorsese',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 161: {'Title': '162. Chamada para a Morte',\n", + " 'Release date': '1954',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 162: {'Title': '163. O Castelo Andante',\n", + " 'Release date': '2004',\n", + " 'Director': 'Hayao Miyazaki',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 163: {'Title': '164. Um Mal Nunca Vem Só',\n", + " 'Release date': '1998',\n", + " 'Director': 'Guy Ritchie',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 164: {'Title': '165. O Segredo dos Seus Olhos',\n", + " 'Release date': '2009',\n", + " 'Director': 'Juan José Campanella',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 165: {'Title': '166. Divertida-Mente',\n", + " 'Release date': '2015',\n", + " 'Director': 'Pete DocterRonnie Del Carmen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 166: {'Title': '167. Raptadas',\n", + " 'Release date': '2013',\n", + " 'Director': 'Denis Villeneuve',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 167: {'Title': '168. Três Cartazes à Beira da Estrada',\n", + " 'Release date': '2017',\n", + " 'Director': 'Martin McDonagh',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 168: {'Title': '169. A Ponte do Rio Kwai',\n", + " 'Release date': '1957',\n", + " 'Director': 'David Lean',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 169: {'Title': '170. Trainspotting',\n", + " 'Release date': '1996',\n", + " 'Director': 'Danny Boyle',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 170: {'Title': '171. Fargo',\n", + " 'Release date': '1996',\n", + " 'Director': 'Joel CoenEthan Coen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 171: {'Title': '172. Warrior - Combate Entre Irmãos',\n", + " 'Release date': '2011',\n", + " 'Director': \"Gavin O'Connor\",\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 172: {'Title': '173. Gran Torino',\n", + " 'Release date': '2008',\n", + " 'Director': 'Clint Eastwood',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 173: {'Title': '174. Apanha-me Se Puderes',\n", + " 'Release date': '2002',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 174: {'Title': '175. O Meu Vizinho Totoro',\n", + " 'Release date': '1988',\n", + " 'Director': 'Hayao Miyazaki',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 175: {'Title': '176. Million Dollar Baby - Sonhos Vencidos',\n", + " 'Release date': '2004',\n", + " 'Director': 'Clint Eastwood',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 176: {'Title': '177. Bacheha-Ye aseman',\n", + " 'Release date': '1997',\n", + " 'Director': 'Majid Majidi',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 177: {'Title': '178. Klaus',\n", + " 'Release date': '2019',\n", + " 'Director': 'Sergio PablosCarlos Martínez López',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 178: {'Title': '179. Harry Potter e os Talismãs da Morte: Parte 2',\n", + " 'Release date': '2011',\n", + " 'Director': 'David Yates',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 179: {'Title': '180. Blade Runner - Perigo Iminente',\n", + " 'Release date': '1982',\n", + " 'Director': 'Ridley Scott',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 180: {'Title': '181. 12 Anos Escravo',\n", + " 'Release date': '2013',\n", + " 'Director': 'Steve McQueen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 181: {'Title': '182. A Quimera do Ouro',\n", + " 'Release date': '1925',\n", + " 'Director': 'Charles Chaplin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 182: {'Title': '183. Antes do Amanhecer',\n", + " 'Release date': '1995',\n", + " 'Director': 'Richard Linklater',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 183: {'Title': '184. Grand Budapest Hotel',\n", + " 'Release date': '2014',\n", + " 'Director': 'Wes Anderson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 184: {'Title': '185. Ben-Hur',\n", + " 'Release date': '1959',\n", + " 'Director': 'William Wyler',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 185: {'Title': '186. Em Parte Incerta',\n", + " 'Release date': '2014',\n", + " 'Director': 'David Fincher',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 186: {'Title': '187. Há Lodo no Cais',\n", + " 'Release date': '1954',\n", + " 'Director': 'Elia Kazan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 187: {'Title': '188. Barry Lyndon',\n", + " 'Release date': '1975',\n", + " 'Director': 'Stanley Kubrick',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 188: {'Title': '189. Em Nome do Pai',\n", + " 'Release date': '1993',\n", + " 'Director': 'Jim Sheridan',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 189: {'Title': '190. Pamplinas Maquinista',\n", + " 'Release date': '1926',\n", + " 'Director': 'Clyde BruckmanBuster Keaton',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 190: {'Title': '191. O Herói de Hacksaw Ridge',\n", + " 'Release date': '2016',\n", + " 'Director': 'Mel Gibson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 191: {'Title': '192. Morangos Silvestres',\n", + " 'Release date': '1957',\n", + " 'Director': 'Ingmar Bergman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 192: {'Title': '193. O Caçador',\n", + " 'Release date': '1978',\n", + " 'Director': 'Michael Cimino',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 193: {'Title': '194. Memórias de Um Assassino',\n", + " 'Release date': '2003',\n", + " 'Director': 'Bong Joon Ho',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 194: {'Title': '195. O Terceiro Homem',\n", + " 'Release date': '1949',\n", + " 'Director': 'Carol Reed',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 195: {'Title': '196. O Salário do Medo',\n", + " 'Release date': '1953',\n", + " 'Director': 'Henri-Georges Clouzot',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 196: {'Title': '197. Sherlock Holmes Jr.',\n", + " 'Release date': '1924',\n", + " 'Director': 'Buster Keaton',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 197: {'Title': '198. Relatos Selvagens',\n", + " 'Release date': '2014',\n", + " 'Director': 'Damián Szifron',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 198: {'Title': '199. Mad Max: Estrada da Fúria',\n", + " 'Release date': '2015',\n", + " 'Director': 'George Miller',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 199: {'Title': '200. Peço a Palavra',\n", + " 'Release date': '1939',\n", + " 'Director': 'Frank Capra',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 200: {'Title': '201. O Clube dos Poetas Mortos',\n", + " 'Release date': '1989',\n", + " 'Director': 'Peter Weir',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 201: {'Title': '202. Monstros e Companhia',\n", + " 'Release date': '2001',\n", + " 'Director': 'Pete DocterDavid SilvermanLee Unkrich',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 202: {'Title': '203. Mary and Max.',\n", + " 'Release date': '2009',\n", + " 'Director': 'Adam Elliot',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 203: {'Title': '204. Como Treinares o Teu Dragão',\n", + " 'Release date': '2010',\n", + " 'Director': 'Dean DeBloisChris Sanders',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 204: {'Title': '205. Tubarão',\n", + " 'Release date': '1975',\n", + " 'Director': 'Steven Spielberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 205: {'Title': '206. O Sétimo Selo',\n", + " 'Release date': '1957',\n", + " 'Director': 'Ingmar Bergman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 206: {'Title': '207. Quarto',\n", + " 'Release date': '2015',\n", + " 'Director': 'Lenny Abrahamson',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 207: {'Title': '208. Viagem a Tóquio',\n", + " 'Release date': '1953',\n", + " 'Director': 'Yasujirô Ozu',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 208: {'Title': '209. O Grande Lebowski',\n", + " 'Release date': '1998',\n", + " 'Director': 'Joel CoenEthan Coen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 209: {'Title': \"210. Le Mans '66: O Duelo\",\n", + " 'Release date': '2019',\n", + " 'Director': 'James Mangold',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 210: {'Title': '211. Ratatui',\n", + " 'Release date': '2007',\n", + " 'Director': 'Brad BirdJan Pinkava',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 211: {'Title': \"212. A Paixão de Joana d'Arc\",\n", + " 'Release date': '1928',\n", + " 'Director': 'Carl Theodor Dreyer',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 212: {'Title': '213. Hotel Ruanda',\n", + " 'Release date': '2004',\n", + " 'Director': 'Terry George',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 213: {'Title': '214. Rocky',\n", + " 'Release date': '1976',\n", + " 'Director': 'John G. Avildsen',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 214: {'Title': '215. Platoon - Os Bravos do Pelotão',\n", + " 'Release date': '1986',\n", + " 'Director': 'Oliver Stone',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 215: {'Title': '216. Logan',\n", + " 'Release date': '2017',\n", + " 'Director': 'James Mangold',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 216: {'Title': '217. O Caso Spotlight',\n", + " 'Release date': '2015',\n", + " 'Director': 'Tom McCarthy',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 217: {'Title': '218. O Exterminador Implacável',\n", + " 'Release date': '1984',\n", + " 'Director': 'James Cameron',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 218: {'Title': '219. Jai Bhim',\n", + " 'Release date': '2021',\n", + " 'Director': 'T.J. Gnanavel',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 219: {'Title': '220. Antes do Anoitecer',\n", + " 'Release date': '2004',\n", + " 'Director': 'Richard Linklater',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 220: {'Title': '221. Rush - Duelo de Rivais',\n", + " 'Release date': '2013',\n", + " 'Director': 'Ron Howard',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 221: {'Title': '222. Escândalo na TV',\n", + " 'Release date': '1976',\n", + " 'Director': 'Sidney Lumet',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 222: {'Title': '223. Conta Comigo',\n", + " 'Release date': '1986',\n", + " 'Director': 'Rob Reiner',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 223: {'Title': '224. Os Melhores Anos das Nossas Vidas',\n", + " 'Release date': '1946',\n", + " 'Director': 'William Wyler',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 224: {'Title': '225. O Lado Selvagem',\n", + " 'Release date': '2007',\n", + " 'Director': 'Sean Penn',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 225: {'Title': '226. O Feiticeiro de Oz',\n", + " 'Release date': '1939',\n", + " 'Director': 'Victor FlemingGeorge CukorMervyn LeRoy',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 226: {'Title': '227. O Ódio',\n", + " 'Release date': '1995',\n", + " 'Director': 'Mathieu Kassovitz',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 227: {'Title': '228. O Exorcista',\n", + " 'Release date': '1973',\n", + " 'Director': 'William Friedkin',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 228: {'Title': '229. The Incredibles - Os Super Heróis',\n", + " 'Release date': '2004',\n", + " 'Director': 'Brad Bird',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 229: {'Title': '230. Piratas das Caraíbas - A Maldição do Pérola Negra',\n", + " 'Release date': '2003',\n", + " 'Director': 'Gore Verbinski',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 230: {'Title': '231. Ser ou Não Ser',\n", + " 'Release date': '1942',\n", + " 'Director': 'Ernst Lubitsch',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 231: {'Title': '232. O Feitiço do Tempo',\n", + " 'Release date': '1993',\n", + " 'Director': 'Harold Ramis',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 232: {'Title': '233. As Vinhas da Ira',\n", + " 'Release date': '1940',\n", + " 'Director': 'John Ford',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 233: {'Title': '234. Babam ve Oglum',\n", + " 'Release date': '2005',\n", + " 'Director': 'Çagan Irmak',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 234: {'Title': '235. A Batalha de Argel',\n", + " 'Release date': '1966',\n", + " 'Director': 'Gillo Pontecorvo',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 235: {'Title': '236. Hachiko - Amigo para Sempre',\n", + " 'Release date': '2009',\n", + " 'Director': 'Lasse Hallström',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 236: {'Title': '237. A Criada',\n", + " 'Release date': '2016',\n", + " 'Director': 'Park Chan-wook',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 237: {'Title': '238. Amor Cão',\n", + " 'Release date': '2000',\n", + " 'Director': 'Alejandro G. Iñárritu',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 238: {'Title': '239. O Lamento da Vereda',\n", + " 'Release date': '1955',\n", + " 'Director': 'Satyajit Ray',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 239: {'Title': '240. O Presidiário',\n", + " 'Release date': '1967',\n", + " 'Director': 'Stuart Rosenberg',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 240: {'Title': '241. Rebecca',\n", + " 'Release date': '1940',\n", + " 'Director': 'Alfred Hitchcock',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 241: {'Title': '242. Música no Coração',\n", + " 'Release date': '1965',\n", + " 'Director': 'Robert Wise',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 242: {'Title': '243. Uma Noite Aconteceu',\n", + " 'Release date': '1934',\n", + " 'Director': 'Frank Capra',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 243: {'Title': '244. Os Quatrocentos Golpes',\n", + " 'Release date': '1959',\n", + " 'Director': 'François Truffaut',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 244: {'Title': '245. A Máscara',\n", + " 'Release date': '1966',\n", + " 'Director': 'Ingmar Bergman',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 245: {'Title': '246. O Gigante de Ferro',\n", + " 'Release date': '1999',\n", + " 'Director': 'Brad Bird',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 246: {'Title': '247. As Serviçais',\n", + " 'Release date': '2011',\n", + " 'Director': 'Tate Taylor',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 247: {'Title': '248. A Vida de Brian',\n", + " 'Release date': '1979',\n", + " 'Director': 'Terry Jones',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 248: {'Title': '249. Aladdin',\n", + " 'Release date': '1992',\n", + " 'Director': 'Ron ClementsJohn Musker',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]},\n", + " 249: {'Title': '250. Danças com Lobos',\n", + " 'Release date': '1990',\n", + " 'Director': 'Kevin Costner',\n", + " 'Stars': [Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " Kevin Costner,\n", + " Mary McDonnell,\n", + " Graham Greene,\n", + " Kevin Costner,\n", + " Michael Blake,\n", + " March 8, 1991 (Portugal),\n", + " United States,\n", + " United Kingdom,\n", + " Official Facebook,\n", + " Official site,\n", + " English,\n", + " Sioux,\n", + " Pawnee,\n", + " Badlands National Park, South Dakota, USA,\n", + " Tig Productions,\n", + " Majestic Films International,\n", + " Allied Filmmakers,\n", + " Color]}}" + ] + }, + "execution_count": 322, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "movies_dict" ] }, { @@ -265,7 +9531,37 @@ "metadata": {}, "outputs": [], "source": [ - "# your code here" + "url = f\"https://www.imdb.com{partial_link}\"\n", + "headers = {\"User-Agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"}\n", + "r = requests.get(url, headers = headers)\n", + "soup = BeautifulSoup(r.content)\n", + "director = soup.find_all(\"div\", attrs = {\"class\":\"ipc-metadata-list-item__content-container\"})\n", + "director[0].get_text()" + ] + }, + { + "cell_type": "code", + "execution_count": 320, + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "'Kevin Costner'" + ] + }, + "execution_count": 320, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "url = f\"https://www.imdb.com{partial_link}\"\n", + "headers = {\"User-Agent\":\"Mozilla/5.0 (Macintosh; Intel Mac OS X 10_15_7) AppleWebKit/537.36 (KHTML, like Gecko) Chrome/114.0.0.0 Safari/537.36\"}\n", + "r = requests.get(url, headers = headers)\n", + "soup = BeautifulSoup(r.content)\n", + "stars = soup.find_all(\"a\", attrs = {\"class\":\"ipc-metadata-list-item__list-content-item\"})\n", + "stars[0].get_text()" ] }, { @@ -277,21 +9573,226 @@ }, { "cell_type": "code", - "execution_count": null, + "execution_count": 242, "metadata": {}, - "outputs": [], + "outputs": [ + { + "data": { + "text/plain": [ + "200" + ] + }, + "execution_count": 242, + "metadata": {}, + "output_type": "execute_result" + } + ], "source": [ "#This is the url you will scrape in this exercise\n", - "url = 'https://www.imdb.com/list/ls009796553/'" + "url = 'https://www.imdb.com/list/ls009796553/'\n", + "\n", + "r = requests.get(url)\n", + "r.status_code\n" ] }, { "cell_type": "code", - "execution_count": null, + "execution_count": 243, "metadata": {}, "outputs": [], "source": [ - "# your code here" + "if r.status_code == 200:\n", + " soup = BeautifulSoup(r.text, 'html.parser')" + ] + }, + { + "cell_type": "code", + "execution_count": 245, + "metadata": {}, + "outputs": [], + "source": [ + "movie_items = soup.find_all('div', class_='lister-item-content')" + ] + }, + { + "cell_type": "code", + "execution_count": 247, + "metadata": {}, + "outputs": [], + "source": [ + "movie_names = []\n", + "movie_years = []\n", + "movie_summaries = []" + ] + }, + { + "cell_type": "code", + "execution_count": 248, + "metadata": {}, + "outputs": [], + "source": [ + "for movie in movie_items[:10]:\n", + " name = movie.h3.a.text\n", + " year = movie.find('span', class_='lister-item-year').text.strip('()')\n", + " summary = movie.find('p', class_='text-muted').text.strip()\n", + " \n", + " movie_names.append(name)\n", + " movie_years.append(year)\n", + " movie_summaries.append(summary)" + ] + }, + { + "cell_type": "code", + "execution_count": 250, + "metadata": {}, + "outputs": [], + "source": [ + "movie_data = {\n", + " 'Movie Name': movie_names,\n", + " 'Year': movie_years,\n", + " 'Summary': movie_summaries\n", + " }\n", + " " + ] + }, + { + "cell_type": "code", + "execution_count": 251, + "metadata": {}, + "outputs": [], + "source": [ + "df = pd.DataFrame(movie_data)" + ] + }, + { + "cell_type": "code", + "execution_count": 252, + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Movie NameYearSummary
0Pesadelo em Elm Street1984M/18\\n|\\n91 min\\n|\\n\\nHorror
1Despertares1990M/12\\n|\\n121 min\\n|\\n\\nBiography, Drama
2Liga de Mulheres1992M/12\\n|\\n128 min\\n|\\n\\nComedy, Drama, Sport
3Um Bairro em Nova Iorque1993M/12\\n|\\n121 min\\n|\\n\\nCrime, Drama
4Anjos em Campo1994M/6\\n|\\n102 min\\n|\\n\\nComedy, Drama, Family
5Tempo de Matar1996M/12\\n|\\n149 min\\n|\\n\\nCrime, Drama, Thriller
6Amistad1997M/12\\n|\\n155 min\\n|\\n\\nBiography, Drama, History
7Anaconda1997M/12\\n|\\n89 min\\n|\\n\\nAction, Adventure, Horror
8A Cool, Dry Place1998PG-13\\n|\\n97 min\\n|\\n\\nDrama
9América Proibida1998M/16\\n|\\n119 min\\n|\\n\\nCrime, Drama
\n", + "
" + ], + "text/plain": [ + " Movie Name Year \\\n", + "0 Pesadelo em Elm Street 1984 \n", + "1 Despertares 1990 \n", + "2 Liga de Mulheres 1992 \n", + "3 Um Bairro em Nova Iorque 1993 \n", + "4 Anjos em Campo 1994 \n", + "5 Tempo de Matar 1996 \n", + "6 Amistad 1997 \n", + "7 Anaconda 1997 \n", + "8 A Cool, Dry Place 1998 \n", + "9 América Proibida 1998 \n", + "\n", + " Summary \n", + "0 M/18\\n|\\n91 min\\n|\\n\\nHorror \n", + "1 M/12\\n|\\n121 min\\n|\\n\\nBiography, Drama \n", + "2 M/12\\n|\\n128 min\\n|\\n\\nComedy, Drama, Sport \n", + "3 M/12\\n|\\n121 min\\n|\\n\\nCrime, Drama \n", + "4 M/6\\n|\\n102 min\\n|\\n\\nComedy, Drama, Family \n", + "5 M/12\\n|\\n149 min\\n|\\n\\nCrime, Drama, Thriller \n", + "6 M/12\\n|\\n155 min\\n|\\n\\nBiography, Drama, History \n", + "7 M/12\\n|\\n89 min\\n|\\n\\nAction, Adventure, Horror \n", + "8 PG-13\\n|\\n97 min\\n|\\n\\nDrama \n", + "9 M/16\\n|\\n119 min\\n|\\n\\nCrime, Drama " + ] + }, + "execution_count": 252, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "df" ] }, { @@ -395,7 +9896,7 @@ ], "metadata": { "kernelspec": { - "display_name": "Python 3", + "display_name": "Python 3 (ipykernel)", "language": "python", "name": "python3" }, @@ -409,7 +9910,7 @@ "name": "python", "nbconvert_exporter": "python", "pygments_lexer": "ipython3", - "version": "3.7.7" + "version": "3.10.9" } }, "nbformat": 4,