From 12c8ebc7a3ce703ddc0bcb5d7edd32905e9f61f6 Mon Sep 17 00:00:00 2001 From: asc Date: Sun, 30 Oct 2022 17:03:06 -0500 Subject: [PATCH] initial commit --- .gitignore | 106 + LICENSE | 22 + README.md | 6 + docs/Makefile | 20 + docs/make.bat | 35 + docs/source/conf.py | 54 + docs/source/index.rst | 25 + pymojo/__init__.py | 5 + pymojo/cli.py | 16 + pymojo/pymojo.py | 288 + setup.py | 40 + tests/__init__.py | 1 + tests/fixtures/vcr_cassettes/it2.yaml | 2324 ++++ .../release-schedule-20223-1.yaml | 2188 +++ .../release-schedule-range-summer-2019.yaml | 11551 ++++++++++++++++ .../fixtures/vcr_cassettes/rl1107461633.yaml | 2276 +++ .../fixtures/vcr_cassettes/rl3562898177.yaml | 939 ++ tests/fixtures/vcr_cassettes/summer-2018.yaml | 3721 +++++ tests/fixtures/vcr_cassettes/summer-2019.yaml | 3721 +++++ tests/fixtures/vcr_cassettes/summer-2022.yaml | 2727 ++++ tests/fixtures/vcr_cassettes/tt7349950.yaml | 1094 ++ tests/fixtures/vcr_cassettes/xxxxx.yaml | 105 + tests/test_pymojo.py | 103 + tox.ini | 5 + 24 files changed, 31372 insertions(+) create mode 100644 .gitignore create mode 100644 LICENSE create mode 100644 README.md create mode 100644 docs/Makefile create mode 100644 docs/make.bat create mode 100644 docs/source/conf.py create mode 100644 docs/source/index.rst create mode 100644 pymojo/__init__.py create mode 100644 pymojo/cli.py create mode 100644 pymojo/pymojo.py create mode 100644 setup.py create mode 100644 tests/__init__.py create mode 100644 tests/fixtures/vcr_cassettes/it2.yaml create mode 100644 tests/fixtures/vcr_cassettes/release-schedule-20223-1.yaml create mode 100644 tests/fixtures/vcr_cassettes/release-schedule-range-summer-2019.yaml create mode 100644 tests/fixtures/vcr_cassettes/rl1107461633.yaml create mode 100644 tests/fixtures/vcr_cassettes/rl3562898177.yaml create mode 100644 tests/fixtures/vcr_cassettes/summer-2018.yaml create mode 100644 tests/fixtures/vcr_cassettes/summer-2019.yaml create mode 100644 tests/fixtures/vcr_cassettes/summer-2022.yaml create mode 100644 tests/fixtures/vcr_cassettes/tt7349950.yaml create mode 100644 tests/fixtures/vcr_cassettes/xxxxx.yaml create mode 100644 tests/test_pymojo.py create mode 100644 tox.ini diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..4c915d1 --- /dev/null +++ b/.gitignore @@ -0,0 +1,106 @@ +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +env/ +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# dotenv +.env + +# virtualenv +.venv +venv/ +ENV/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# IDE settings +.vscode/ +.idea/ diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..f6a3c28 --- /dev/null +++ b/LICENSE @@ -0,0 +1,22 @@ +MIT License + +Copyright (c) 2022, Anthony Correa + +Permission is hereby granted, free of charge, to any person obtaining a copy +of this software and associated documentation files (the "Software"), to deal +in the Software without restriction, including without limitation the rights +to use, copy, modify, merge, publish, distribute, sublicense, and/or sell +copies of the Software, and to permit persons to whom the Software is +furnished to do so, subject to the following conditions: + +The above copyright notice and this permission notice shall be included in all +copies or substantial portions of the Software. + +THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR +IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, +FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE +AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER +LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, +OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE +SOFTWARE. + diff --git a/README.md b/README.md new file mode 100644 index 0000000..5af4472 --- /dev/null +++ b/README.md @@ -0,0 +1,6 @@ + +# pymojo + +An unoffical scraper for [Box Office Mojo](https://www.boxofficemojo.com). + +[Documentation]() \ No newline at end of file diff --git a/docs/Makefile b/docs/Makefile new file mode 100644 index 0000000..d0c3cbf --- /dev/null +++ b/docs/Makefile @@ -0,0 +1,20 @@ +# Minimal makefile for Sphinx documentation +# + +# You can set these variables from the command line, and also +# from the environment for the first two. +SPHINXOPTS ?= +SPHINXBUILD ?= sphinx-build +SOURCEDIR = source +BUILDDIR = build + +# Put it first so that "make" without argument is like "make help". +help: + @$(SPHINXBUILD) -M help "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) + +.PHONY: help Makefile + +# Catch-all target: route all unknown targets to Sphinx using the new +# "make mode" option. $(O) is meant as a shortcut for $(SPHINXOPTS). +%: Makefile + @$(SPHINXBUILD) -M $@ "$(SOURCEDIR)" "$(BUILDDIR)" $(SPHINXOPTS) $(O) diff --git a/docs/make.bat b/docs/make.bat new file mode 100644 index 0000000..dc1312a --- /dev/null +++ b/docs/make.bat @@ -0,0 +1,35 @@ +@ECHO OFF + +pushd %~dp0 + +REM Command file for Sphinx documentation + +if "%SPHINXBUILD%" == "" ( + set SPHINXBUILD=sphinx-build +) +set SOURCEDIR=source +set BUILDDIR=build + +%SPHINXBUILD% >NUL 2>NUL +if errorlevel 9009 ( + echo. + echo.The 'sphinx-build' command was not found. Make sure you have Sphinx + echo.installed, then set the SPHINXBUILD environment variable to point + echo.to the full path of the 'sphinx-build' executable. Alternatively you + echo.may add the Sphinx directory to PATH. + echo. + echo.If you don't have Sphinx installed, grab it from + echo.https://www.sphinx-doc.org/ + exit /b 1 +) + +if "%1" == "" goto help + +%SPHINXBUILD% -M %1 %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% +goto end + +:help +%SPHINXBUILD% -M help %SOURCEDIR% %BUILDDIR% %SPHINXOPTS% %O% + +:end +popd diff --git a/docs/source/conf.py b/docs/source/conf.py new file mode 100644 index 0000000..63c30f7 --- /dev/null +++ b/docs/source/conf.py @@ -0,0 +1,54 @@ +# Configuration file for the Sphinx documentation builder. +# +# This file only contains a selection of the most common options. For a full +# list see the documentation: +# https://www.sphinx-doc.org/en/master/usage/configuration.html + +# -- Path setup -------------------------------------------------------------- + +# If extensions (or modules to document with autodoc) are in another directory, +# add these directories to sys.path here. If the directory is relative to the +# documentation root, use os.path.abspath to make it absolute, like shown here. + +import os +import sys +sys.path.insert(0, os.path.abspath('../..')) +sys.setrecursionlimit(1500) + + +# -- Project information ----------------------------------------------------- + +project = 'pymojo' +copyright = '2022, Anthony Correa' +author = 'Anthony Correa' + + +# -- General configuration --------------------------------------------------- + +# Add any Sphinx extension module names here, as strings. They can be +# extensions coming with Sphinx (named 'sphinx.ext.*') or your custom +# ones. +extensions = [ + 'sphinx.ext.autodoc' +] + +# Add any paths that contain templates here, relative to this directory. +templates_path = ['_templates'] + +# List of patterns, relative to source directory, that match files and +# directories to ignore when looking for source files. +# This pattern also affects html_static_path and html_extra_path. +exclude_patterns = [] + + +# -- Options for HTML output ------------------------------------------------- + +# The theme to use for HTML and HTML Help pages. See the documentation for +# a list of builtin themes. +# +html_theme = 'alabaster' + +# Add any paths that contain custom static files (such as style sheets) here, +# relative to this directory. They are copied after the builtin static files, +# so a file named "default.css" will overwrite the builtin "default.css". +html_static_path = ['_static'] \ No newline at end of file diff --git a/docs/source/index.rst b/docs/source/index.rst new file mode 100644 index 0000000..47d6dd3 --- /dev/null +++ b/docs/source/index.rst @@ -0,0 +1,25 @@ +.. pymojo documentation master file, created by + sphinx-quickstart on Sun Oct 30 16:10:50 2022. + You can adapt this file completely to your liking, but it should at least + contain the root `toctree` directive. + +Welcome to pymojo's documentation! +================================== +An unoffical scraper for `Box Office Mojo `_. + +.. toctree:: + :maxdepth: 2 + :caption: Contents: + +pymojo module +===================== +.. automodule:: pymojo.pymojo + :members: + + +Indices and tables +================== + +* :ref:`genindex` +* :ref:`modindex` +* :ref:`search` diff --git a/pymojo/__init__.py b/pymojo/__init__.py new file mode 100644 index 0000000..86165f7 --- /dev/null +++ b/pymojo/__init__.py @@ -0,0 +1,5 @@ +"""Top-level package for pymojo.""" + +__author__ = """Anthony Correa""" +__email__ = 'a@correa.co' +__version__ = '0.1.0' diff --git a/pymojo/cli.py b/pymojo/cli.py new file mode 100644 index 0000000..53ceb68 --- /dev/null +++ b/pymojo/cli.py @@ -0,0 +1,16 @@ +"""Console script for pymojo.""" +import sys +import click + + +@click.command() +def main(args=None): + """Console script for pymojo.""" + click.echo("Replace this message by putting your code into " + "pymojo.cli.main") + click.echo("See click documentation at https://click.palletsprojects.com/") + return 0 + + +if __name__ == "__main__": + sys.exit(main()) # pragma: no cover diff --git a/pymojo/pymojo.py b/pymojo/pymojo.py new file mode 100644 index 0000000..6fc2d36 --- /dev/null +++ b/pymojo/pymojo.py @@ -0,0 +1,288 @@ +"""Main module.""" +from urllib import request, error +import datetime +import re +import bs4 +from typing import List + +def get_new_mojo_id(legacy_id: str) -> str | None: + """ Convert from the "mojo_id" used before redesign of Box Office Mojo (~2020) + From http://www.boxofficemojo.com/movies/?id={legacy_id}.htm + to the current format: https://www.boxofficemojo.com/release/{current_id}/ + + :param legacy_id: Legacy Mojo ID (ex. "it2", "theincredibles2") + :return: Release ID (ex. "rl1107461633", "rl2071758337"), None if none found + """ + url = f"http://www.boxofficemojo.com/movies/?id={legacy_id}.htm" + try: + resp = request.urlopen(url) + except error.URLError as e: + return None + match=re.search(pattern=r'https://www.boxofficemojo.com/release/(?P.*)/',string=resp.url) + if match: + return match.group('new_id') + else: + return None + +def get_imdb_id_from_mojo_id(mojo_id: str) -> str | None: + """ Get the IMDB ID from a Mojo Release ID. + + :param mojo_id: Mojo Release ID (ex. "rl1107461633") + :return: IMDB ID (ex. tt7349950), None if none found + """ + url = f"https://www.boxofficemojo.com/release/{mojo_id}" + try: + req = request.Request(url) + with request.urlopen(req) as response: + soup = bs4.BeautifulSoup(response.read(), features="html.parser") + pass + except error.URLError as e: + return None + + tag = soup.find("a", class_="mojo-title-link") + if tag: + href = soup.find("a", class_="mojo-title-link")['href'] + else: + return None + + match = re.search(pattern=r'/title/(?P.*?)/(?P.*?)', string=href) + if match: + return match.group('imdbid') + else: + return None + +def get_gross(mojo_id:str) -> dict: + """Get gross earnings for a movie by release ID. + + :param mojo_id: Mojo Release ID (ex. "rl1107461633") + :return: dict of {'domestic': int, 'international': int, 'worldwide':int} + """ + url = f"https://www.boxofficemojo.com/release/{mojo_id}" + + try: + req = request.Request(url) + with request.urlopen(req) as response: + soup = bs4.BeautifulSoup(response.read(), features="html.parser") + pass + except error.URLError as e: + raise e + + result = {} + performance_summary_table = soup.find("div", class_="mojo-performance-summary-table") + sections = performance_summary_table.find_all('div', class_="a-section") + for i, section_name in enumerate(['domestic', 'international', 'worldwide']): + if len(sections)>=i: + if sections[i].find('span', class_="money"): + money_string = sections[i].find('span', class_="money").text + else: + money_string = "0" + result[section_name] = int(re.sub(r'[^\d.]', '', money_string)) + pass + return result + +def get_domestic_gross(mojo_id: str) -> int: + """ Return only the domestic gross earnings as an integer + + :param mojo_id: Mojo Release ID (ex. "rl1107461633") + :return: int showing dollar value of domestic gross earnings. + """ + gross = get_gross(mojo_id).get('domestic') + return gross + +def get_mojo_id_from_imdb_id(imdb_id) -> str | None: + """ Get Mojo Release ID from an IMDB ID. + + :param imdb_id: IMDB ID (ex. tt7349950) + :return: Mojo Release ID (ex. "rl1107461633"), None if none found + """ + url = f"https://www.boxofficemojo.com/title/{imdb_id}" + try: + req = request.Request(url) + with request.urlopen(req) as response: + soup = bs4.BeautifulSoup(response.read(), features="html.parser") + div = soup.find('div', class_="mojo-summary-values") + pass + except error.URLError as e: + return None + + tag = div.find('a', href = re.compile(r"/release/rl\d{10}")) + if tag: + href = div.find('a', href = re.compile(r"/release/rl\d{10}"))['href'] + else: + return None + + match = re.search(pattern=r'/release/(?P.*?)/(?P.*?)', string=href) + if match: + return match.group('mojo_id') + else: + return None + + breakpoint() + match = re.search(pattern=r'https://www.boxofficemojo.com/release/(?P.*)/', string=resp.url) + +def get_domestic_box_office_for_season(season: str, year: int | str): + """ Parses the Box Office Mojo single page with a listing of films for a season. + + `Example page `_ + + :param season: Season key, (ex. "summer") + :param year: Year + :return: list of dict with the following keys {title str, release_id str, gross int, total_gross int, released : datetime} + """ + url=f"https://www.boxofficemojo.com/season/{season}/{year}" + try: + req = request.Request(url) + with request.urlopen(req) as response: + soup = bs4.BeautifulSoup(response.read(), features="html.parser") + table = soup.find('div', id="table").find('table') + rows = table.find_all('tr') + l=[] + for row in rows: + cells = row.find_all('td') + if cells and len(cells) > 5: + + try: + href = cells[1].find('a')['href'] + match = re.search(pattern=r'/release/(?P.*?)/(?P.*?)', string=href) + release_id = (match.group('mojo_id') if match else None) + except Exception as e: + raise Exception + + try: + released = datetime.datetime.strptime(f"{cells[8].text} {year}", "%b %d %Y").date() + except Exception as e: + raise Exception + + try: + total_gross = int(re.sub(r'[^\d.]', '', cells[7].text)) + except Exception as e: + raise Exception + + try: + gross = int(re.sub(r'[^\d.]', '', cells[5].text)) + except Exception as e: + raise Exception + + try: + title = cells[1].find('a').text + except Exception as e: + raise Exception + + d={ + 'title' : title, + 'release_id' : release_id, + 'gross' : gross, + 'total_gross' : total_gross, + 'released' : released + } + l.append(d) + except error.URLError as e: + return None + + return l + +def get_release_schedule(year: int|str, month: int|str, day: int|str = 1) -> List[dict] : + """ Parse information found on the domestic release schedule page on Box Office Mojo + + :param year: Year of starting date (ex. 2022) + :param month: Month of starting date (ex. 5) + :param day: Day of of starting date (ex. 6) + :return: list of ``dict`` of { + 'title': str, + 'release_id': str, + 'imdb_id': str, + 'release': datetime, + 'scale': str (ex. 'limit' or 'wide'), + 'distributor': str (ex. 'walt disney studios motion pictures' + 'poster':poster: str (url of poster image) + } + """ + url = f"https://www.boxofficemojo.com/calendar/{year}-{month}-{day}/" + try: + req = request.Request(url) + with request.urlopen(req) as response: + soup = bs4.BeautifulSoup(response.read(), features="html.parser") + table = soup.find('div', id="table").find('table') + rows = table.find_all('tr') + l = [] + for row in rows[1:]: + cells = row.find_all('td') + if 'mojo-group-label' in row.attrs.get('class',[]): + release = datetime.datetime.strptime(row.text, "%B %d, %Y").date() + pass + else: + # breakpoint() + try: + href = cells[0].find_all('a')[1]['href'] + match = re.search(pattern=r'/release/(?Prl.*?)/(?P.*?)', string=href) + release_id = (match.group('mojo_id') if match else None) + except Exception as e: + raise Exception + 'https://pro.imdb.com/title/tt10430844?ref_=mojo_rs_table_1&rf=mojo_rs_table_1' + try: + href = cells[0].find_all('a')[2]['href'] + match = re.search(pattern=r'/title/(?Ptt.*?)(?P\?.*?)', string=href) + imdb_id = (match.group('imdb_id') if match else None) + except Exception as e: + raise Exception + + try: + cells[0].find('img').attrs.get('src') + img = cells[0].find('img') + poster = img.attrs.get('src') + except Exception as e: + raise Exception + + try: + title = cells[0].find_all('a')[1].text + except Exception as e: + raise Exception + + try: + distributor = cells[1].text + except Exception as e: + raise Exception + + try: + scale = cells[2].text + except Exception as e: + raise Exception + + d = { + 'title': title, + 'release_id': release_id, + 'imdb_id':imdb_id, + 'release': release, + 'scale': scale.lower(), + 'distributor': distributor.lower().strip(), + 'poster':poster + } + l.append(d) + except error.URLError as e: + raise e + + return l + +def get_release_schedule_for_range(date_start:datetime.datetime, date_end:datetime.datetime) -> List[dict]: + """ Loops through enough release schedules to cover a given date range. + + :param date_start: datetime for start of period + :param date_end: datetime for end of period + :return: list of dict of { + 'title': str, + 'release_id': str, + 'imdb_id': str, + 'release': datetime, + 'scale': str (ex. 'limit' or 'wide'), + 'distributor': str (ex. 'walt disney studios motion pictures' + 'poster':poster: str (url of poster image) + } + """ + results = get_release_schedule(date_start.year, date_start.month, date_start.day) + while results[-1]['release'] < date_end: + results += get_release_schedule(results[-1]['release'].year, results[-1]['release'].month, results[-1]['release'].day) + pass + # remove duplicate rows + results = [dict(t) for t in {tuple(d.items()) for d in results if d.get('release')<= date_end}] + results.sort(key=lambda d: d['release']) + return results diff --git a/setup.py b/setup.py new file mode 100644 index 0000000..5165dfa --- /dev/null +++ b/setup.py @@ -0,0 +1,40 @@ +#!/usr/bin/env python + +"""The setup script.""" + +from setuptools import setup, find_packages + +with open('README.md') as readme_file: + readme = readme_file.read() + +requirements = ['Click==8.1.3', 'beautifulsoup4==4.11.1'] + +setup( + author="Anthony Correa", + author_email='a@correa.co', + python_requires='>=3.6', + classifiers=[ + 'Development Status :: 2 - Pre-Alpha', + 'Intended Audience :: Developers', + 'License :: OSI Approved :: MIT License', + 'Natural Language :: English', + 'Programming Language :: Python :: 3.10', + ], + description="An unoffical api for Box Office Mojo", + entry_points={ + 'console_scripts': [ + 'pymojo=pymojo.cli:main', + ], + }, + install_requires=requirements, + license="MIT license", + long_description=readme + '\n\n', + include_package_data=True, + keywords='boxofficemojo', + name='pymojo', + packages=find_packages(include=['pymojo', 'pymojo.*']), + test_suite='unittest', + url='https://github.com/anthonyscorrea/pymojo', + version='0.1.0', + zip_safe=False, +) diff --git a/tests/__init__.py b/tests/__init__.py new file mode 100644 index 0000000..58642c1 --- /dev/null +++ b/tests/__init__.py @@ -0,0 +1 @@ +"""Unit test package for pymojo.""" diff --git a/tests/fixtures/vcr_cassettes/it2.yaml b/tests/fixtures/vcr_cassettes/it2.yaml new file mode 100644 index 0000000..3bf3962 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/it2.yaml @@ -0,0 +1,2324 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: http://www.boxofficemojo.com/movies/?id=it2.htm + response: + body: + string: ' + + + + 301 Moved Permanently + + + +

Moved Permanently

+ +

The document has moved here.

+ + + + ' + headers: + Connection: + - Keep-Alive + Content-Length: + - '256' + Content-Type: + - text/html; charset=iso-8859-1 + Date: + - Mon, 11 Jul 2022 02:45:43 GMT + Keep-Alive: + - timeout=2, max=20 + Location: + - https://www.boxofficemojo.com/movies/?id=it2.htm + Server: + - Server + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/movies/?id=it2.htm + response: + body: + string: '' + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Length: + - '0' + Date: + - Mon, 11 Jul 2022 02:45:43 GMT + Location: + - /release/rl1107461633/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=139-3052374-4198439; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - RSEYPRT7KC102TZW75HC + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/release/rl1107461633/ + response: + body: + string: "\n\n\n\n\n\n \n It Chapter Two - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \
\"\"

It Chapter Two

Twenty-seven + years after their first encounter with the terrifying Pennywise, the Losers + Club have grown up and moved away, until a devastating phone call brings them + back.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n \n\n\n + \
\n Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\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 Grosses\n

\n + \ \n \n \n \n \n + \ \n
\n + \ \n \n + \ \n Domestic (44.7%)\n \n \n + \ \n \n
\n + \ \n \n + \ \n $211,593,228\n + \ \n \n \n + \ \n
\n \n \n + \ \n \n \n \n + \
\n \n \n \n + \ \n International (55.3%)\n + \ \n \n \n + \
\n \n \n \n \n + \ $261,500,000\n \n \n + \ \n
\n \n \n + \ \n \n
\n \n \n + \ \n \n Worldwide\n + \ \n \n \n + \
\n \n \n \n \n + \ $473,093,228\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 Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\n \n \n \n \n + \ \n
\n\n
\n + \ Summary Details\n
Opening$91,062,152
4,570\n theaters
Budget$79,000,000
Release DateSep 6, 2019\n -\n + \ Dec + 5, 2019
MPAAR
Running Time2 hr 49 + min
GenresDrama\n + \ \n Fantasy\n \n Horror
In Release119 days/17 weeks
Widest Release4,570 + theaters
\n
\n\n
DateDOW\n RankDaily\n %\xB1 YD\n %\xB1 LW\n TheatersAvgTo + DateDay\n
Sep + 6Friday1$37,043,656--4,570$8,105$37,043,6561false
Sep + 7Saturday1$33,627,227-9.2%-4,570$7,358$70,670,8832false
Sep + 8Sunday1$20,391,269-39.4%-4,570$4,461$91,062,1523false
Sep + 9Monday1$5,478,405-73.1%-4,570$1,198$96,540,5574false
Sep + 10Tuesday1$8,006,196+46.1%-4,570$1,751$104,546,7535false
Sep 11Wednesday1$4,521,469-43.5%-4,570$989$109,068,2226false
Sep + 12Thursday1$4,000,302-11.5%-4,570$875$113,068,5247false
Sep + 13Friday2$12,857,296+221.4%-65.3%4,570$2,813$125,925,8208false
Sep + 14Saturday1$17,300,571+34.6%-48.6%4,570$3,785$143,226,3919false
Sep + 15Sunday1$9,448,683-45.4%-53.7%4,570$2,067$152,675,07410false
Sep + 16Monday2$2,241,793-76.3%-59.1%4,570$490$154,916,86711false
Sep + 17Tuesday2$3,294,411+47%-58.9%4,570$720$158,211,27812false
Sep + 18Wednesday2$1,973,095-40.1%-56.4%4,570$431$160,184,37313false
Sep + 19Thursday2$1,736,190-12%-56.6%4,570$379$161,920,56314false
Sep + 20Friday5$4,840,361+178.8%-62.4%4,156$1,164$166,760,92415false
Sep + 21Saturday2$7,703,689+59.2%-55.5%4,156$1,853$174,464,61316false
Sep + 22Sunday4$4,462,428-42.1%-52.8%4,156$1,073$178,927,04117false
Sep + 23Monday5$1,123,714-74.8%-49.9%4,156$270$180,050,75518false
Sep + 24Tuesday5$1,549,473+37.9%-53%4,156$372$181,600,22819false
Sep + 25Wednesday5$972,271-37.3%-50.7%4,156$233$182,572,49920false
Sep + 26Thursday5$948,550-2.4%-45.4%4,156$228$183,521,04921false
Sep + 27Friday5$2,833,953+198.8%-41.5%3,611$784$186,355,00222false
Sep + 28Saturday4$4,679,034+65.1%-39.3%3,611$1,295$191,034,03623false
Sep + 29Sunday4$2,732,808-41.6%-38.8%3,611$756$193,766,84424false
Sep + 30Monday5$848,616-68.9%-24.5%3,611$235$194,615,46025false
Oct + 1Tuesday6$1,052,632+24%-32.1%3,611$291$195,668,09226false
Oct + 2Wednesday7$662,644-37%-31.8%3,611$183$196,330,73627false
Oct + 3Thursday5$519,421-21.6%-45.2%3,611$143$196,850,15728false
Oct + 4Friday5$1,452,708+179.7%-48.7%3,163$459$198,302,86529false
Oct + 5Saturday5$2,468,679+69.9%-47.2%3,163$780$200,771,54430false
Oct + 6Sunday5$1,396,142-43.4%-48.9%3,163$441$202,167,68631false
Oct + 7Monday6$393,326-71.8%-53.7%3,163$124$202,561,01232false
Oct + 8Tuesday7$589,193+49.8%-44%3,163$186$203,150,20533false
Oct + 9Wednesday7$419,214-28.8%-36.7%3,163$132$203,569,41934false
Oct + 10Thursday6$341,005-18.7%-34.3%3,163$107$203,910,42435false
Oct + 11Friday9$873,016+156%-39.9%2,303$379$204,783,44036false
Oct + 12Saturday7$1,364,778+56.3%-44.7%2,303$592$206,148,21837false
Oct + 13Sunday8$898,621-34.2%-35.6%2,303$390$207,046,83938false
Oct + 14
Indig. + Peoples' Day
Monday9$407,616-54.6%+3.6%2,303$176$207,454,45539false
Oct + 15Tuesday10$301,421-26.1%-48.8%2,302$130$207,755,87640false
Oct + 16Wednesday10$219,689-27.1%-47.6%2,302$95$207,975,56541false
Oct + 17Thursday10$178,953-18.5%-47.5%2,302$77$208,154,51842false
Oct + 18Friday11$400,917+124%-54.1%1,528$262$208,555,43543false
Oct + 19Saturday10$682,936+70.3%-50%1,528$446$209,238,37144false
Oct + 20Sunday10$369,889-45.8%-58.8%1,528$242$209,608,26045false
Oct + 21Monday11$114,491-69%-71.9%1,528$74$209,722,75146false
Oct + 22Tuesday11$155,657+36%-48.4%1,528$101$209,878,40847false
Oct + 23Wednesday12$105,373-32.3%-52%1,528$68$209,983,78148false
Oct + 24Thursday14$90,374-14.2%-49.5%1,528$59$210,074,15549false
Oct + 25Friday18$190,367+110.6%-52.5%1,528$124$210,264,52250false
Oct + 26Saturday17$324,511+70.5%-52.5%1,528$212$210,589,03351false
Oct + 27Sunday21$169,074-47.9%-54.3%1,528$110$210,758,10752false
Oct + 28Monday21$53,518-68.3%-53.3%1,528$35$210,811,62553false
Oct + 29Tuesday20$70,437+31.6%-54.7%1,528$46$210,882,06254false
Oct + 30Wednesday20$57,814-17.9%-45.1%1,528$37$210,939,87655false
Oct + 31
Halloween
Thursday14$111,186+92.3%+23%1,101$100$211,051,06256false
Nov + 1Friday21$63,109-43.2%-66.8%1,101$57$211,114,17157false
Nov + 2Saturday23$106,796+69.2%-67.1%1,101$96$211,220,96758false
Nov + 3Sunday22$57,382-46.3%-66.1%1,101$52$211,278,34959false
Nov + 4Monday24$17,782-69%-66.8%1,101$16$211,296,13160false
Nov + 5Tuesday23$23,902+34.4%-66.1%1,101$21$211,320,03361false
Nov + 6Wednesday25$16,003-33%-72.3%1,101$14$211,336,03662false
Nov + 7Thursday26$9,644-39.7%-91.3%1,101$8$211,345,68063false
Nov + 8Friday30$15,821+64.1%-74.9%126$125$211,361,50164false
Nov + 9Saturday28$27,434+73.4%-74.3%126$217$211,388,93565false
Nov + 10Sunday31$17,482-36.3%-69.5%126$138$211,406,41766false
Nov + 11Monday33$8,128-53.5%-54.3%126$64$211,414,54567false
Nov + 12Tuesday36$5,111-37.1%-78.6%126$40$211,419,65668false
Nov + 13Wednesday35$3,827-25.1%-76.1%126$30$211,423,48369false
Nov + 14Thursday36$3,402-11.1%-64.7%126$27$211,426,88570false
Nov + 15Friday30$14,127+315.3%-10.7%132$107$211,441,01271false
Nov + 16Saturday30$28,632+102.7%+4.4%132$216$211,469,64472false
Nov + 17Sunday33$16,602-42%-5%132$125$211,486,24673false
Nov + 18Monday35$4,357-73.8%-46.4%132$33$211,490,60374false
Nov + 19Tuesday34$5,129+17.7%+0.4%132$38$211,495,73275false
Nov + 20Wednesday33$4,702-8.3%+22.9%132$35$211,500,43476false
Nov + 21Thursday32$4,539-3.5%+33.4%132$34$211,504,97377false
Nov + 22Friday32$9,191+102.5%-34.9%105$87$211,514,16478false
Nov + 23Saturday31$17,560+91.1%-38.7%105$167$211,531,72479false
Nov + 24Sunday32$11,696-33.4%-29.6%105$111$211,543,42080false
Nov + 25Monday34$4,921-57.9%+12.9%105$46$211,548,34181false
Nov + 26Tuesday32$6,104+24%+19%105$58$211,554,44582false
Nov + 27Wednesday33$5,743-5.9%+22.1%93$61$211,560,18883false
Nov + 28
Thanksgiving
Thursday34$3,529-38.6%-22.3%93$37$211,563,71784false
Nov + 29Friday34$8,792+149.1%-4.3%72$122$211,572,50985false
Nov + 30Saturday34$10,235+16.4%-41.7%72$142$211,582,74486false
Dec + 1Sunday35$5,142-49.8%-56%72$71$211,587,88687false
Dec + 2Monday41$1,196-76.7%-75.7%72$16$211,589,08288false
Dec + 3Tuesday41$1,321+10.5%-78.4%72$18$211,590,40389false
Dec + 4Wednesday40$1,581+19.7%-72.5%72$21$211,591,98490false
Dec + 5Thursday41$1,244-21.3%-64.7%72$17$211,593,22891false
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 11 Jul 2022 02:45:43 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=130-9631094-3219134; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - ZBBN1CC1V0GWCK6QCDMR + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/release-schedule-20223-1.yaml b/tests/fixtures/vcr_cassettes/release-schedule-20223-1.yaml new file mode 100644 index 0000000..f6de967 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/release-schedule-20223-1.yaml @@ -0,0 +1,2188 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/calendar/2022-5-1/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic Release Schedule + - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Release Schedule

\n\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n\n
Release\n + \ Distributor\n Scale\n + \
May 5, 2022
\"\"

Honest to God

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Burke Sage, Polly Cassiday Doyle, Steve + Parks, Larry Thomas
1 hr 58 min
N/ALimited
May 6, 2022
\"\"

Doctor Strange in the + Multiverse of Madness

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Fantasy\n \n + \ Horror\n \n Sci-Fi\n \n\n
With: Benedict Cumberbatch, + Elizabeth Olsen, Chiwetel Ejiofor, Benedict Wong
2 hr 6 min
Walt + Disney Studios Motion Pictures\n \n + \ Wide
\"\"

Vortex

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Dario Argento, Fran\xE7oise Lebrun, Alex + Lutz, Kylian Dheret
2 hr 22 min
Utopia\n \n + \ Limited
\"\"

Remembering Heaven

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Purdie + Distribution\n \n + \ Limited
\"\"

Happening

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Anamaria Vartolomei, Kacey Mottet Klein, + Lu\xE0na Bajrami, Louise Orry-Diqu\xE9ro
1 + hr 40 min
IFC + Films\n \n + \ Limited
\"\"

In Front of Your Face

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Yunhee Cho, Lee Hye-yeong, Hae-hyo Kwon
1 hr 25 min
The + Cinema Guild\n \n + \ Limited
\"\"

Diva

2022 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Music\n \n Thriller\n \n\n
With: Wilhelmenia + Fernandez, Fr\xE9d\xE9ric Andr\xE9i, Richard Bohringer, Thuy An Luu
1 hr 57 min
Rialto + Pictures\n \n + \ Limited
\"\"

The Conversation

2022 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n Thriller\n \n\n
With: Gene + Hackman, John Cazale, Allen Garfield, Frederic Forrest
1 hr 53 min
Rialto + Pictures\n \n + \ Limited
\"\"

Lux \xC6terna

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Thriller\n \n\n
With: B\xE9atrice Dalle, + Charlotte Gainsbourg, Abbey Lee, Claude-Emmanuelle Gajan-Maull
51 min
Yellow + Veil Pictures\n \n + \ Limited
\"\"

Suicide for Beginners

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Horror\n \n\n
With: Wil Daniels, Sara + Tomko, Nate Panning, Julia Lehman
1 + hr 34 min
Vertical + Entertainment\n \n + \ Limited
\"\"

Little Sorcerer

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Family\n \n + \ Fantasy\n \n\n
With: Geri Courtney-Austein, Ashley Bornancin, + Tony Azzolino, R. Martin Klein
1 + hr 26 min
Vertical + Entertainment\n \n + \ Limited
\"\"

The Sanctity of Space

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Renan Ozturk, Zack + Smith, Freddie Wilkinson
1 hr + 41 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

Respect the Jux

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n\n
With: Tony Sirico, Robert + Costanzo, Tobias Truvillion, Ciera Payton
1 + hr 51 min
The + Samuel Goldwyn Company\n \n + \ Limited
May + 12, 2022
\"\"

Around the World in + 80 Days

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n\n
With: Damien Frette, Julien Crampon, Kaycie Chase, + C\xE9line Ront\xE9
1 hr 22 min
Viva + Pictures\n \n + \ Limited
May + 13, 2022
\"\"

Firestarter

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Sci-Fi\n \n Thriller\n + \ \n\n
With: + Zac Efron, Ryan Kiera Armstrong, Sydney Lemmon, Michael Greyeyes
1 hr 34 min
Universal + Pictures\n \n + \ Wide
\"\"

Family Camp

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Family\n \n\n
With: Tommy Woodard, Eddie + James, Leigh-Allyn Baker, Gigi Orsillo
1 + hr 51 min
Roadside + Attractions\n \n + \ Limited
\"\"

The Innocents

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Fantasy\n \n Horror\n \n Mystery\n + \ \n Thriller\n \n\n
With: Rakel Lenora Fl\xF8ttum, Alva Brynsmo Ramstad, + Sam Ashraf, Mina Yasmin Bremseth Asheim
1 + hr 57 min
IFC + Films\n \n + \ Limited
\"\"

On the Count of Three

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Jerrod Carmichael, + Christopher Abbott, Tiffany Haddish, Lavell Crawford
1 hr 26 min
United + Artists Releasing\n \n + \ Limited
\"\"

Jazz Fest: A New Orleans + Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Glen David Andrews, + Philip Bailey, Tarriona Ball, Tab Benoit
1 + hr 35 min
Sony + Pictures Entertainment (SPE)\n \n + \ Limited
\"\"

Montana Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Haley Lu Richardson, Owen Teague, Gilbert + Owuor, Kimberly Guerrero
1 hr + 54 min
Bleecker + Street Media\n \n + \ Limited
\"\"

Mau

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n\n
With: + Paola Antonelli, Bjarke Ingels, Rem Koolhaas, Bruce Mau
1 hr 17 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

Pleasure

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Sofia Kappel, Zelda Morrison, Evelyn Claire, + Chris Cock
1 hr 49 min
-Limited
\"\"

Kamikaze Hearts

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Tigr, Sharon Mitchell, Jon Martin, Sparky + Vasc
1 hr 27 min
N/ALimited
\"\"

The Last Victim

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n + \ Western\n \n\n
With: Ali Larter, Ron Perlman, Ralph Ineson, + Kyle Schmid
1 hr 43 min
-Limited
\"\"

Tankhouse

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Tara Holt, Stephen Friedrich, Richard Kind, + Christopher Lloyd
1 hr 34 min
Vertical + Entertainment\n \n + \ Limited
\"\"

Homebound

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Mystery\n \n\n
With: Aisling + Loftus, Tom Goodman-Hill, Raffiella Chapman, Hattie Gotobed
1 hr 11 min
Brainstorm + Media\n \n + \ Limited
\"\"

Jayeshbhai Jordaar

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Ranveer Singh, Shalini + Pandey, Boman Irani, Ratna Pathak Shah
2 + hr 1 min
Yash + Raj Films USA Inc.\n \n + \ Limited
\"\"

Shark Bait

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Thriller\n \n\n
With: Holly Earl, Jack Trueman, Catherine Hannay, + Malachi Pullar-Latchman
1 hr + 27 min
Vertical + Entertainment\n \n + \ Limited
May + 17, 2022
\"\"

Vendetta

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Bruce Willis, Thomas + Jane, Theo Rossi, Clive Standen
1 + hr 36 min
Vertical + Entertainment\n \n + \ Limited
May + 19, 2022
\"\"

The Roundup

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n\n
With: Ma Dong-seok, Sukku + Son, Gwi-hwa Choi, Ji-hwan Park
1 + hr 46 min
Capelight + Pictures\n \n + \ Limited
May + 20, 2022
\"\"

Downton Abbey: A New + Era

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Hugh Bonneville, + Jim Carter, Michelle Dockery, Elizabeth McGovern
2 hr 4 min
Focus + Features\n \n + \ Wide
\"\"

Men

\n\n\n\n\n\n\n\n\n\n\n\n \n Drama\n + \ \n Fantasy\n \n Horror\n \n\n
With: Jessie Buckley, + Rory Kinnear, Paapa Essiedu, Gayle Rankin
1 + hr 40 min
A24\n \n + \ Wide
\"\"

2000 Mules

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Dinesh D'Souza, Catherine Engelbrecht, + Gregg Phillips, Debbie D'Souza
1 + hr 29 min
D'Souza + Media\n \n + \ Limited
\"\"

Good Mourning

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Machine Gun Kelly, Mod Sun, Becky G, Dove + Cameron
1 hr 33 min
Briarcliff + Entertainment\n \n + \ Limited
\"\"

Hold Your Fire

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Shuaib Raheem
1 hr 33 min
IFC + Films\n \n + \ Limited
\"\"

Mondocane

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Sci-Fi\n \n\n
With: Dennis Protopapa, + Giuliano Soprano, Alessandro Borghi, Barbara Ronchi
1 hr 50 min
Kino + Lorber\n \n + \ Limited
\"\"

Fire in the Mountains

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Vinamrata Rai, Chandan Bisht, Harshita + Tiwari, Mayank Singh Jaira
1 + hr 24 min
Kino + Lorber\n \n + \ Limited
\"\"

Distant

2022 + \ Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Muzaffer \xD6zdemir, Mehmet Emin Toprak, + Zuhal Gencer, Nazan Kesal
1 hr + 50 min
Big + World Pictures\n \n + \ Limited
\"\"

A New Old Play

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n History\n \n\n
With: Tao Gu, Yi Sicheng
2 hr 59 min
Icarus + Films\n \n + \ Limited
\"\"

Digger

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Vangelis Mourikis, Argyris Pandazaras, + Sofia Kokkali, Theo Alexander
1 + hr 41 min
Strand + Releasing\n \n + \ Limited
May + 27, 2022
\"\"

Top Gun: Maverick

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Drama\n \n\nIMAX
With: Tom Cruise, Jennifer + Connelly, Miles Teller, Val Kilmer
2 + hr 10 min
Paramount + Pictures\n \n + \ Wide
\"\"

The Bob's Burgers + Movie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Musical\n \n\n
With: H. Jon Benjamin, Kristen Schaal, Dan Mintz, + John Roberts
1 hr 42 min
20th + Century Studios\n \n + \ Wide
\"\"

F3: Fun and Frustration

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Family\n \n Romance\n \n\n
With: Tamannaah + Bhatia, Pooja Hegde, Venkatesh Daggubati, Mehreen Pirzada
2 hr 28 min
-Limited
\"\"

Rite of the Shaman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Tyrell Oberle, Janice Spencer-Wise, Lauren + Holdt, Kim Stone
1 hr 9 min
Purdie + Distribution\n \n + \ Limited
\"\"

Fireheart

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n\n
With: Alice Pol, Vincent Cassel, Val\xE9rie Lemercier, + Claudia Tagbo
1 hr 32 min
-Limited
\"\"

A Chiara

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Swamy Rotolo, Pio Amato, Claudio Rotolo, + Leonardo Bevilacqua
2 hr 1 min
-Limited
\"\"

A Taste of Whale

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Lamya Essemlali, R\xFAni Nielsen, Jens + Mortan Rasmussen, T\xF3rik \xC1braham Rouah
1 + hr 25 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

Playlist

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Music\n \n\n
With: Sara + Forestier, Laetitia Dosch, Bertrand Belin, Pierre Lottin
1 hr 24 min
Strand + Releasing\n \n + \ Limited
\"\"

18\xBD

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Thriller\n \n\n
With: Willa Fitzgerald, + John Magaro, Gina Kreiezmar, Marija Juliette Abney
1 hr 28 min
Adventure + Entertainment\n \n + \ Limited
June + 1, 2022
\"\"

RRR

2022 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Drama\n \n\n
With: N.T. Rama Rao Jr., + Ram Charan, Ajay Devgn, Alia Bhatt
3 + hr 7 min
Variance + Films\n \n + \ Limited
June + 2, 2022
\"\"

Fortune Favors Lady + Nikuko

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Comedy\n \n Drama\n \n + \ Family\n \n\n
With: Shinobu \xD4take, Cocomi, Natsuki Hanae, + Ikuji Nakamura
1 hr 37 min
GKIDS\n \n + \ Limited
\"\"

Be Natural: The Untold + Story of Alice Guy-Blach\xE9

2022 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n \n Biography\n + \ \n Documentary\n \n History\n \n\n
With: Jodie Foster, Alice + Guy, Pamela B. Green, Catherine Hardwicke
1 + hr 43 min
-Limited
June 3, 2022
\"\"

Crimes of the Future

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Sci-Fi\n \n\n
With: Viggo + Mortensen, L\xE9a Seydoux, Kristen Stewart, Scott Speedman
1 hr 47 min
Neon\n \n + \ Limited
\"\"

Watcher

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Thriller\n \n\n
With: Maika + Monroe, Karl Glusman, Burn Gorman, Tudor Petrut
1 hr 31 min
IFC + Films\n \n + \ Wide
\"\"

Vikram

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Kamal Haasan, Vijay + Sethupathi, Fahadh Faasil, Narain
2 + hr 55 min
Prime + Media Pictures\n \n + \ Limited
\"\"

Benediction

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n War\n \n\n
With: Tom + Blyth, Kate Phillips, Simon Russell Beale, Jack Lowden
2 hr 17 min
Roadside + Attractions\n \n + \ Limited
\"\"
-Wide
\"\"

Maika

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Family\n \n\n
With: Tom + Dang, Dom Dinh, Elyse Dinh, Ivan Mok
1 + hr 45 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

The Phantom of the + Open

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Sport\n \n\n
With: Mark + Rylance, Ian Porter, Tommy Fallon, David Mara
1 hr 46 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

Neptune Frost

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Musical\n \n Sci-Fi\n \n\n
With: Cheryl Isheja, Bertrand + Ninteretse, Eliane Umuhire, Elvis Ngabo
1 + hr 45 min
Kino + Lorber\n \n + \ Limited
\"\"

Poser

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Sylvie Mix, Bobbi Kitten, Aujolie Baker, + Amber Falter
1 hr 27 min
Oscilloscope\n \n + \ Limited
\"\"

Frank and Penelope

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Thriller\n \n\n
With: Caylee Cowan, Billy Budinich, Kevin Dillon, + Sean Patrick Flanery
1 hr 52 + min
Redbud + Studios\n \n + \ Limited
\"\"

The Overnight

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\n
With: Zebedee Row, Rajeev Varma, Brittany Clark, + James Lorinz
1 hr 30 min
Vertical + Entertainment\n \n + \ Limited
\"\"

Samrat Prithviraj

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Drama\n \n History\n \n War\n + \ \n\n
With: + Akshay Kumar, Sanjay Dutt, Manushi Chhillar, Manav Vij
2 hr 15 min
Yash + Raj Films USA Inc.\n \n + \ Limited
\"\"

Dashcam

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\n
With: Annie Hardy, Amar Chadha-Patel, Angela + Enahoro, Seylan Baxter
1 hr 20 + min
Momentum + Pictures\n \n + \ Limited
June + 4, 2022
\"\"

Kill Devil Hills

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Thriller\n \n\n
With: Sarah Kate Allsup, + Ethan Marten, E.P. Macalma, Butch Maier
Sumbadhat + Productions\n \n + \ Limited
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 18 Jul 2022 16:47:28 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=133-2080524-5055901; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - E8MZ6SBDPJN96ZH0W4HB + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/release-schedule-range-summer-2019.yaml b/tests/fixtures/vcr_cassettes/release-schedule-range-summer-2019.yaml new file mode 100644 index 0000000..47f2693 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/release-schedule-range-summer-2019.yaml @@ -0,0 +1,11551 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/calendar/2019-5-3/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic Release Schedule - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Release Schedule

\n\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n\n
Release\n + \ Distributor\n Scale\n + \
May 3, 2019
\"\"

UglyDolls

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n Fantasy\n \n Musical\n \n\n
With: Kelly + Clarkson, Nick Jonas, Janelle Mon\xE1e, Blake Shelton
1 hr 27 min
STX + Entertainment\n \n + \ Wide
\"\"

Long Shot

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Romance\n \n\n
With: Charlize Theron, + Seth Rogen, June Diane Raphael, O'Shea Jackson Jr.
2 hr 5 min
Lionsgate\n \n + \ Wide
\"\"

The Intruder

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Thriller\n \n\n
With: Michael Ealy, Meagan Good, Dennis Quaid, + Joseph Sikora
1 hr 42 min
Screen + Gems\n \n + \ Wide
\"\"

El Chicano

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Drama\n \n Thriller\n + \ \n\n
With: + Logan Arevalo, Julian Bray, Adolfo Alvarez, Marco Rodr\xEDguez
2 hr 24 min
Briarcliff + Entertainment\n \n + \ Wide
\"\"

Ask Dr. Ruth

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Ruth Westheimer, + Pierre Lehu, Cliff Rubin, John Lollos
1 + hr 40 min
Magnolia + Pictures\n \n + \ Limited
\"\"

The River and the Wall

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Documentary\n \n\n
With: Ben Masters, Jay + Kleberg, Filipe DeAndrade, Heather Mackey
1 + hr 37 min
Gravitas + Ventures\n \n + \ Limited
\"\"

Savage

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Chang + Chen, Ni Ni, Fan Liao, Jue Huang
1 + hr 52 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Always Miss You

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Romance\n \n\n
With: Amber Kuo, Ryan Zheng, Dongxue Li, Yi-Lin + Sie
1 hr 38 min
China + Lion Film Distribution\n \n + \ Limited
\"\"

Shadow

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Drama\n \n + \ Fantasy\n \n War\n \n\n
With: Chao Deng, Li Sun, Ryan Zheng, Qianyuan + Wang
1 hr 56 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Meeting Gorbachev

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n History\n + \ \n\n
With: + Mikhail Gorbachev, Werner Herzog, Andr\xE9 Singer, Leonid Brezhnev
1 hr 30 min
1091 + Pictures\n \n + \ Limited
\"\"

Non-Fiction

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Guillaume + Canet, Juliette Binoche, Vincent Macaigne, Christa Th\xE9ret
1 hr 48 min
IFC + Films\n \n + \ Limited
\"\"

Quartet

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Isabelle Adjani, + Maggie Smith, Alan Bates, Anthony Higgins
1 + hr 41 min
Cohen + Media Group\n \n + \ Limited
\"\"

Bolden

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Gary Carr, Erik LaRay Harvey, Ian McShane, + Michael Rooker
1 hr 48 min
Abramorama\n \n + \ Limited
May + 4, 2019
\"\"

Batman

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n\n
With: Michael Keaton, + Jack Nicholson, Kim Basinger, Robert Wuhl
2 + hr 6 min
Fathom + Events\n \n + \ Limited
\"\"

Canelo Alvarez vs. + Daniel Jacobs

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Sport\n \n\n
With: Daniel Jacobs, Canelo \xC1lvarez
Fathom + Events\n \n + \ Limited
\"\"

Mother of a Day

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Family\n \n\n
With: Lamont Ferguson, + Shanadiah Nicole, Malachi DeWitt, Karen M. Bryson
1 hr 15 min
Sumbadhat + Productions\n \n + \ Limited
May + 5, 2019
\"\"

True Grit

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Western\n \n\n
With: John + Wayne, Kim Darby, Glen Campbell, Jeremy Slate
2 hr 8 min
Fathom + Events\n \n + \ Wide
\"\"

Code Geass: Lelouch + of the Re;Surrection

2019 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n \n Action\n + \ \n Adventure\n \n Animation\n \n Drama\n \n + \ Mystery\n \n Sci-Fi\n \n Thriller\n \n\n
With: Jun + Fukuyama, Yukana, Takahiro Sakurai, Ayumu Murase
1 hr 52 min
FUNimation + Entertainment\n \n + \ Limited
May + 6, 2019
\"\"

Batman Returns

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Fantasy\n \n\n
With: Michael + Keaton, Danny DeVito, Michelle Pfeiffer, Christopher Walken
2 hr 6 min
Fathom + Events\n \n + \ Limited
May + 7, 2019
\"\"

Chonda Pierce: Unashamed

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Paul Aldrich, Jeff Allen, David Benham, + Jason Benham
1 hr 30 min
Fathom + Events\n \n + \ Wide
May + 8, 2019
\"\"

The Silence of Others

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Mar\xEDa Mart\xEDn, Francisco Franco, Adolf + Hitler, Jos\xE9 Mar\xEDa Galante
1 + hr 36 min
Argot + Pictures\n \n + \ Limited
May + 10, 2019
\"\"

Pok\xE9mon: Detective + Pikachu

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Comedy\n \n + \ Family\n \n Mystery\n \n Sci-Fi\n \n\n3D
With: Ryan + Reynolds, Justice Smith, Kathryn Newton, Bill Nighy
1 hr 44 min
Warner + Bros.\n \n + \ Wide
\"\"

The Hustle

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Crime\n \n\n
With: Anne Hathaway, Rebel + Wilson, Alex Sharp, Tim Blake Nelson
1 + hr 33 min
United + Artists Releasing\n \n + \ Wide
\"\"

Poms

\n\n\n\n\n\n\n\n\n\n\n\n \n Comedy\n + \ \n Drama\n \n Sport\n \n\n
With: Diane Keaton, Jacki + Weaver, Celia Weston, Alisha Boe
1 + hr 30 min
STX + Entertainment\n \n + \ Wide
\"\"

Tolkien

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Romance\n \n + \ War\n \n\n
With: + Nicholas Hoult, Lily Collins, Colm Meaney, Derek Jacobi
1 hr 52 min
Fox + Searchlight Pictures\n \n + \ Wide
\"\"

Student of the Year + 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Drama\n \n Romance\n + \ \n Sport\n \n\n
With: Tiger Shroff, Ananya Panday, Tara Sutaria, + Aditya Seal
2 hr 26 min
FIP\n \n + \ Limited
\"\"

Charlie Says

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Crime\n \n Drama\n \n\n
With: Hannah + Murray, Matt Smith, Sosie Bacon, Marianne Rend\xF3n
1 hr 50 min
IFC + Films\n \n + \ Limited
\"\"

General Magic

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Tony Fadell, Andy Hertzfeld, Marc Porat, + John Sculley
1 hr 33 min
Gravitas + Ventures\n \n + \ Limited
\"\"

The Biggest Little + Farm

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: John Chester, Molly Chester, Todd, Alan + York
1 hr 31 min
Neon\n \n + \ Limited
\"\"

All Is True

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n History\n \n\n
With: Kenneth + Branagh, Judi Dench, Ian McKellen, Nonso Anozie
1 hr 41 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

My Son

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Thriller\n \n\n
With: Guillaume Canet, + M\xE9lanie Laurent, Olivier de Benoist, Antoine Hamel
1 hr 24 min
Cohen + Media Group\n \n + \ Limited
\"\"

Miss & Mrs. Cops

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n\n
With: Ra + Mi-ran, Lee Song-Kyoung, Yoon Sang-Hyun, Sooyoung Choi
1 hr 47 min
CJ + Entertainment\n \n + \ Limited
\"\"

Pasolini

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Willem Dafoe, Ninetto + Davoli, Riccardo Scamarcio, Valerio Mastandrea
1 hr 24 min
Kino + Lorber\n \n + \ Limited
\"\"

The Serengeti Rules

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Jim Estes, Jaime + Excell, Bob Paine, Mathieson McCrae
1 + hr 24 min
Abramorama\n \n + \ Limited
\"\"

The Professor and the + Madman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n History\n \n\n
With: Mel + Gibson, Sean Penn, Eddie Marsan, Natalie Dormer
2 hr 4 min
Vertical + Entertainment\n \n + \ Limited
May + 12, 2019
\"\"

Batman Forever

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n\n
With: Val Kilmer, Tommy + Lee Jones, Jim Carrey, Nicole Kidman
2 + hr 1 min
Fathom + Events\n \n + \ Limited
May + 13, 2019
\"\"

What We Left Behind: + Looking Back at Star Trek: Deep Space Nine

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n Sci-Fi\n \n\n
With: Max Grod\xE9nchik, Andrew Robinson, Armin + Shimerman, Nana Visitor
1 hr + 56 min
Fathom + Events\n \n + \ Limited
May + 14, 2019
\"\"

Batman & Robin

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Sci-Fi\n \n\n
With: Arnold Schwarzenegger, + George Clooney, Chris O'Donnell, Uma Thurman
2 + hr 5 min
Fathom + Events\n \n + \ Limited
May + 15, 2019
\"\"

The Third Wife

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Hong Chuong Nguyen, Long Le Vu, Nu Y\xEAn-Kh\xEA + Tran, Maya
1 hr 36 min
Film + Movement\n \n + \ Limited
May + 16, 2019
\"\"

Saga of Tanya the + Evil - The Movie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Animation\n \n + \ Fantasy\n \n War\n \n\n
With: Tessh\xF4 Genda, Daiki Hamano, Takaya Hashi, + Saori Hayami
1 hr 55 min
Fathom + Events\n \n + \ Limited
May + 17, 2019
\"\"

John Wick: Chapter + 3 - Parabellum

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\nIMAX +
With: + Keanu Reeves, Halle Berry, Ian McShane, Laurence Fishburne
2 hr 10 min
Lionsgate\n \n + \ Wide
\"\"

A Dog's Journey

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Drama\n \n + \ Family\n \n Fantasy\n \n\n
With: Josh Gad, Dennis + Quaid, Kathryn Prescott, Marg Helgenberger
1 + hr 49 min
Universal + Pictures\n \n + \ Wide
\"\"

The Sun Is Also a + Star

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Music\n \n Romance\n \n\n
With: Yara + Shahidi, Anais Lee, Charles Melton, John Leguizamo
1 hr 40 min
Warner + Bros.\n \n + \ Wide
\"\"

Trial by Fire

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Jack O'Connell, + Laura Dern, Emily Meade, Chris Coy
2 + hr 7 min
Roadside + Attractions\n \n + \ Limited
\"\"

De De Pyaar De

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Ajay + Devgn, Tabu, Rakul Preet Singh, Jimmy Shergill
2 hr 15 min
Yash + Raj Films\n \n + \ Limited
\"\"

Aniara

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Sci-Fi\n \n\n
With: Emelie Garbers, + Bianca Cruzeiro, Arvin Kananian, Anneli Martini
1 hr 46 min
Magnolia + Pictures\n \n + \ Limited
\"\"

Photograph

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Nawazuddin Siddiqui, + Sanya Malhotra, Sachin Khedekar, Denzil Smith
1 hr 50 min
Amazon + Studios\n \n + \ Limited
\"\"

Slaughterhouse Rulez

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Fantasy\n \n + \ Horror\n \n Thriller\n \n\n
With: Jassa Ahluwalia, + Asa Butterfield, Jamie Blackley, Finn Cole
1 + hr 44 min
Sony + Pictures Entertainment (SPE)\n \n + \ Limited
\"\"

Shed of the Dead

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Horror\n \n\n
With: Spencer Brown, Lauren + Socha, Ewen MacIntosh, Emily Booth
1 + hr 22 min
Indican + Pictures\n \n + \ Limited
\"\"

The Souvenir

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Neil Young, Tosin + Cole, Jack McMullen, Frankie Wilson
2 + hr
A24\n \n + \ Limited
\"\"

Zilla and Zoe

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Greg James, Aida Valentine, Sam Kamerman, + Kurt Conroyd
1 hr 44 min
Indican + Pictures\n \n + \ Limited
\"\"

The Meanest Man in + Texas

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n History\n \n\n
With: Mateus + Ward, Jamie McShane, Alexandra Bard, Casey Bond
1 hr 45 min
Ammo + Content\n \n + \ Limited
\"\"

Asako I & II

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Masahiro Higashide, + Erika Karata, Sairi It\xF4, K\xF4ji Nakamoto
1 + hr 59 min
Grasshopper + Film\n \n + \ Limited
\"\"

Walking on Water

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Documentary\n + \ \n History\n \n\n
With: Christo
1 + hr 45 min
Kino + Lorber\n \n + \ Limited
\"\"

Last Year at Marienbad

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n\n
With: Delphine Seyrig, + Giorgio Albertazzi, Sacha Pito\xEBff, Fran\xE7oise Bertin
1 hr 34 min
Janus + Films\n \n + \ Limited
\"\"

The Wandering Soap + Opera

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Fantasy\n \n\n
With: Luis + Alarc\xF3n, Patricia Rivadeneira, Francisco Reyes, Consuelo Castillo
1 hr 20 min
The + Cinema Guild\n \n + \ Limited
May + 19, 2019
\"\"

Steel Magnolias

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Shirley + MacLaine, Olympia Dukakis, Sally Field, Julia Roberts
1 hr 57 min
Fathom + Events\n \n + \ Wide
\"\"

Bolshoi Ballet: Carmen + Suite/Petrushka

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Music\n \n\n
Fathom + Events\n \n + \ Limited
May + 20, 2019
\"\"

Nausica\xE4 of the + Valley of the Wind

2019 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n \n Adventure\n \n + \ Animation\n \n Sci-Fi\n \n\n
With: Sumi Shimamoto, + Mahito Tsujimura, Hisako Ky\xF4da, Gor\xF4 Naya
1 hr 57 min
Fathom + Events\n \n + \ Wide
May + 22, 2019
\"\"

Asbury Park: Riot, + Redemption, Rock & Roll

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Bruce Springsteen, + Steven Van Zandt
1 hr 56 min
Trafalgar + Releasing\n \n + \ Limited
\"\"

The Tomorrow Man

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: John Lithgow, Blythe + Danner, Derek Cecil, Katie Aselton
1 + hr 34 min
Bleecker + Street Media\n \n + \ Limited
May + 23, 2019
\"\"

The Cold Blue

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n War\n \n\n
With: V.G. Alexander, + Paul Haedike, Mort Kimmel, William Toombs
1 + hr 41 min
Fathom + Events\n \n + \ Wide
May + 24, 2019
\"\"

Aladdin

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Family\n \n + \ Fantasy\n \n Musical\n \n Romance\n \n\n3D + IMAX
With: + Will Smith, Mena Massoud, Naomi Scott, Marwan Kenzari
2 hr 8 min
Walt + Disney Studios Motion Pictures\n \n + \ Wide
\"\"

Brightburn

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Mystery\n \n Sci-Fi\n + \ \n\n
With: + Elizabeth Banks, David Denman, Jackson A. Dunn, Abraham Clinkscales
1 hr 30 min
Screen + Gems\n \n + \ Wide
\"\"

Booksmart

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Kaitlyn Dever, Beanie Feldstein, Jessica + Williams, Jason Sudeikis
1 hr + 42 min
United + Artists Releasing\n \n + \ Wide
\"\"

The Church

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Thriller\n \n\n
With: Clint Howard, Bill + Moseley, Lisa Wilcox, Ashley C. Williams
1 + hr 21 min
Indican + Pictures\n \n + \ Limited
\"\"

India's Most Wanted

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Thriller\n \n\n
With: Arjun + Kapoor, Sudev Nair, Rajesh Sharma, Alexander Prasanth
2 hr 3 min
FIP\n \n + \ Limited
\"\"

The Lumber Baron

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n History\n \n Mystery\n \n\n
With: Joseph + Bezenek, Christina Baldwin, Anna Stranz, Scout Taylor-Compton
2 hr
Indican + Pictures\n \n + \ Limited
\"\"

Echo in the Canyon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Lou Adler, Fiona + Apple, The Beach Boys, Beck
1 + hr 22 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

Woodstock: Three Days + That Defined a Generation

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: John Roberts, Joel + Rosenman, Joel Makower, Bob Spitz
1 + hr 46 min
PBS + Distribution\n \n + \ Limited
\"\"

The Spy Behind Home + Plate

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Bruce Adams, Elden Auker, Brad Ausmus, + Irwin Berg
1 hr 41 min
Ciesla + Foundation\n \n + \ Limited
\"\"

Diamantino

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Fantasy\n \n Sci-Fi\n + \ \n Sport\n \n\n
With: Carloto Cotta, Cleo Tavares, Anabela Moreira, + Margarida Moreira
1 hr 36 min
Kino + Lorber\n \n + \ Limited
\"\"

Halston

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Halston, Tom Fallon, + Jacqueline Kennedy, Marisa Berenson
1 + hr 45 min
The + Orchard\n \n + \ Limited
\"\"

The Proposal

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Luis Barrag\xE1n, Jill Magid, Federica + Zanco
1 hr 26 min
Oscilloscope\n \n + \ Limited
\"\"

Funny Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Matthew Glave, Emily + Bett Rickards, Jana Winternitz, Nikki Limo
1 + hr 24 min
Blue + Fox Entertainment\n \n + \ Limited
May + 29, 2019
\"\"

The Garden

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Tilda Swinton, Johnny Mills, Philip MacDonald, + Pete Lee-Wilson
1 hr 32 min
Kino + Lorber\n \n + \ Limited
\"\"

Leaving Home, Coming + Home: A Portrait of Robert Frank

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n\n
With: + Robert Frank, June Leaf, Andrea Frank, Pablo Frank
1 hr 25 min
Greenwich + Entertainment\n \n + \ Limited
May + 31, 2019
\"\"

Godzilla: King of + the Monsters

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Fantasy\n \n + \ Sci-Fi\n \n\n3D IMAX
With: Kyle Chandler, Vera Farmiga, Millie Bobby + Brown, Ken Watanabe
2 hr 12 min
Warner + Bros.\n \n + \ Wide
\"\"

Rocketman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Musical\n \n\n
With: Taron + Egerton, Jamie Bell, Richard Madden, Bryce Dallas Howard
2 hr 1 min
Paramount + Pictures\n \n + \ Wide
\"\"

Ma

\n\n\n\n\n\n\n\n\n\n\n\n \n Horror\n + \ \n Mystery\n \n Thriller\n \n\n
With: Octavia Spencer, + Diana Silvers, Juliette Lewis, McKaley Miller
1 hr 39 min
Universal + Pictures\n \n + \ Wide
\"\"

Mayday Life

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Music\n \n\n
With: Mayday, Bo Huang, Tony Ka Fai Leung, Ashin
1 hr 52 min
China + Lion Film Distribution\n \n + \ Limited
\"\"

Yomeddine

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Drama\n \n\n
With: Rady + Gamal, Ahmed Abdelhafiz, Osama Abdallah, Adel Abdulsalam
1 hr 37 min
Strand + Releasing\n \n + \ Limited
\"\"

Free Trip to Egypt

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Documentary\n + \ \n Drama\n \n\n
With: Katie Appeldorn, Jenna Day, Ellen Decker, + Terry Decker
1 hr 38 min
-Limited
\"\"

Too Late to Die Young

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Demian Hern\xE1ndez, Antar Machado, Magdalena + T\xF3toro, Mat\xEDas Oviedo
1 + hr 50 min
-Limited
June 2, 2019
\"\"

Saving Private Ryan

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n War\n \n\n
With: Tom Hanks, Matt + Damon, Tom Sizemore, Edward Burns
2 + hr 49 min
Fathom + Events\n \n + \ Wide
June + 3, 2019
\"\"

That Part Feeling + - the Universe of Arvo Part

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n\n
With: + Arvo P\xE4rt, T\xF5nu Kaljuste, Alain Gomis, Candida Thompson
1 hr 15 min
Film + Movement\n \n + \ Limited
\"\"

The Audience

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Helen Mirren, Paul + Ritter, Edward Fox, Richard McCabe
2 + hr 53 min
Fathom + Events\n \n + \ Limited
June + 5, 2019
\"\"

Bharat

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Drama\n \n\n
With: Salman + Khan, Katrina Kaif, Sunil Grover, Tabu
2 + hr 30 min
Viva + Pictures\n \n + \ Limited
June + 6, 2019
\"\"

Star Raiders: The + Adventures of Saber Raine

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Sci-Fi\n \n\n
With: Casper Van Dien, + Cynthia Rothrock, James Lew, Sara N. Salazar
1 + hr 23 min
Fathom + Events\n \n + \ Limited
June + 7, 2019
\"\"

The Secret Life of + Pets 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n\n3D
With: Patton Oswalt, Kevin Hart, Harrison Ford, + Eric Stonestreet
1 hr 26 min
Universal + Pictures\n \n + \ Wide
\"\"

X-Men: Dark Phoenix

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Sci-Fi\n \n\n3D + IMAX
With: + James McAvoy, Michael Fassbender, Jennifer Lawrence, Nicholas Hoult
1 hr 53 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

Loopers: The Caddie's + Long Walk

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Bill Murray, Patrick + Arter, Ben Crenshaw, Jim Dent
1 + hr 20 min
Gravitas + Ventures\n \n + \ Limited
\"\"

The Gangster, the + Cop, the Devil

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Ma + Dong-seok, Jeon Bae-soo, Mu-Yeol Kim, Kim Sungkyu
1 hr 49 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Pavarotti

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Luciano Pavarotti, Andrea Griminelli, Nicoletta Mantovani, Pl\xE1cido + Domingo
1 hr 54 min
CBS + Films\n \n + \ Limited
\"\"

A Brother's Love

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Anne-\xC9lisabeth Boss\xE9, Patrick Hivon, + Evelyne Brochu, Sasson Gabay
1 + hr 57 min
Entertainment + One\n \n + \ Limited
\"\"

Chasing the Dragon + II: Wild Wild Bunch

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Biography\n \n Crime\n \n + \ Thriller\n \n\n
With: Tony Ka Fai Leung, Louis Koo, Ka-Tung Lam, + Simon Yam
1 hr 41 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

The Last Black Man + in San Francisco

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Jimmie Fails, Jonathan Majors, Rob Morgan, + Tichina Arnold
2 hr 1 min
A24\n \n + \ Limited
\"\"

Late Night

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Emma Thompson, Mindy + Kaling, John Lithgow, Hugh Dancy
1 + hr 42 min
Amazon + Studios\n \n + \ Limited
\"\"

Papi Chulo

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Matt Bomer, Alejandro + Pati\xF1o, Elena Campbell-Martinez, Wendi McLendon-Covey
1 hr 38 min
Blue + Fox Entertainment\n \n + \ Limited
\"\"

Funan

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Drama\n \n History\n \n + \ War\n \n\n
With: + B\xE9r\xE9nice Bejo, Louis Garrel, Colette Kieffer, Aude-Laurence Clermont + Biver
1 hr 24 min
GKIDS\n \n + \ Limited
\"\"

Framing John DeLorean

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Drama\n + \ \n\n
With: + Alec Baldwin, Josh Charles, Morena Baccarin, Dean Winters
1 hr 49 min
IFC + Films\n \n + \ Limited
\"\"

This One's for the + Ladies

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Lakia Hunter, Michele Moore, Poundcake, + Terrill Ross
1 hr 22 min
-Limited
\"\"

Ghost Fleet

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Tun Lin, Patima Tungpuchayakul
1 hr 30 min
Abramorama\n \n + \ Limited
\"\"

Vault

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Drama\n \n History\n + \ \n Thriller\n \n\n
With: Don Johnson, Vincent Pastore, Theo Rossi, + Clive Standen
1 hr 39 min
-Limited
\"\"

The Raft

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Daniel Gim\xE9nez Cacho, Fe Seymour, Maria + Bj\xF6rnstam, Servane Zanotti
1 + hr 37 min
Metrograph + Pictures\n \n + \ Limited
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 18 Jul 2022 20:10:32 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=144-1838284-7805166; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - XECSGFV55RZ3YGPA5YKJ + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/calendar/2019-6-7/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic + Release Schedule - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Release Schedule

\n\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n\n
Release\n + \ Distributor\n Scale\n + \
June 7, 2019
\"\"

The Secret Life of + Pets 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n\n3D
With: Patton Oswalt, Kevin Hart, Harrison Ford, + Eric Stonestreet
1 hr 26 min
Universal + Pictures\n \n + \ Wide
\"\"

X-Men: Dark Phoenix

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Sci-Fi\n \n\n3D + IMAX
With: + James McAvoy, Michael Fassbender, Jennifer Lawrence, Nicholas Hoult
1 hr 53 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

Loopers: The Caddie's + Long Walk

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Bill Murray, Patrick + Arter, Ben Crenshaw, Jim Dent
1 + hr 20 min
Gravitas + Ventures\n \n + \ Limited
\"\"

The Gangster, the Cop, + the Devil

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Ma + Dong-seok, Jeon Bae-soo, Mu-Yeol Kim, Kim Sungkyu
1 hr 49 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Pavarotti

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Luciano Pavarotti, Andrea Griminelli, Nicoletta Mantovani, Pl\xE1cido + Domingo
1 hr 54 min
CBS + Films\n \n + \ Limited
\"\"

Chasing the Dragon + II: Wild Wild Bunch

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Biography\n \n Crime\n \n + \ Thriller\n \n\n
With: Tony Ka Fai Leung, Louis Koo, Ka-Tung Lam, + Simon Yam
1 hr 41 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

A Brother's Love

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Anne-\xC9lisabeth Boss\xE9, Patrick Hivon, + Evelyne Brochu, Sasson Gabay
1 + hr 57 min
Entertainment + One\n \n + \ Limited
\"\"

The Last Black Man + in San Francisco

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Jimmie Fails, Jonathan Majors, Rob Morgan, + Tichina Arnold
2 hr 1 min
A24\n \n + \ Limited
\"\"

Late Night

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Emma Thompson, Mindy + Kaling, John Lithgow, Hugh Dancy
1 + hr 42 min
Amazon + Studios\n \n + \ Limited
\"\"

Papi Chulo

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Matt Bomer, Alejandro + Pati\xF1o, Elena Campbell-Martinez, Wendi McLendon-Covey
1 hr 38 min
Blue + Fox Entertainment\n \n + \ Limited
\"\"

Funan

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Drama\n \n History\n \n + \ War\n \n\n
With: + B\xE9r\xE9nice Bejo, Louis Garrel, Colette Kieffer, Aude-Laurence Clermont + Biver
1 hr 24 min
GKIDS\n \n + \ Limited
\"\"

Framing John DeLorean

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Drama\n + \ \n\n
With: + Alec Baldwin, Josh Charles, Morena Baccarin, Dean Winters
1 hr 49 min
IFC + Films\n \n + \ Limited
\"\"

This One's for the + Ladies

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Lakia Hunter, Michele Moore, Poundcake, + Terrill Ross
1 hr 22 min
-Limited
\"\"

The Raft

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Daniel Gim\xE9nez Cacho, Fe Seymour, Maria + Bj\xF6rnstam, Servane Zanotti
1 + hr 37 min
Metrograph + Pictures\n \n + \ Limited
\"\"

Ghost Fleet

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Tun Lin, Patima Tungpuchayakul
1 hr 30 min
Abramorama\n \n + \ Limited
\"\"

Vault

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Drama\n \n History\n + \ \n Thriller\n \n\n
With: Don Johnson, Vincent Pastore, Theo Rossi, + Clive Standen
1 hr 39 min
-Limited
June 12, 2019
\"\"

The Reports on Sarah + and Saleem

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n Mystery\n \n Romance\n + \ \n War\n \n\n
With: Adeeb Safadi, Sivane Kretchner, Ishai Golan, + Maisa Abd Elhadi
2 hr 7 min
Dada + Films\n \n + \ Limited
June + 13, 2019
\"\"

Heavy Water

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Jay Adams, Brian Bielmann, Woody Brown, + Woody Brown
1 hr 24 min
Fathom + Events\n \n + \ Limited
June + 14, 2019
\"\"

Men in Black: International

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Comedy\n \n + \ Sci-Fi\n \n\nIMAX
With: Chris Hemsworth, Tessa Thompson, Kumail + Nanjiani, Rebecca Ferguson
1 + hr 54 min
Sony + Pictures Entertainment (SPE)\n \n + \ Wide
\"\"

Shaft

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n Mystery\n + \ \n\n
With: + Samuel L. Jackson, Jessie T. Usher, Richard Roundtree, Regina Hall
1 hr 51 min
Warner + Bros.\n \n + \ Wide
\"\"

The Dead Don't Die

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Fantasy\n \n Horror\n \n + \ Sci-Fi\n \n\n
With: Bill Murray, Adam Driver, Tom Waits, Chlo\xEB + Sevigny
1 hr 44 min
Focus + Features\n \n + \ Wide
\"\"

5B

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n\n
With: + Alison Moed Paolercio, Cliff Morrison, David Denmark, Mary Magee
1 hr 34 min
-Limited
\"\"

American Woman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n\n
With: Sienna Miller, Sky + Ferreira, Kentucker Audley, Christina Hendricks
1 hr 51 min
Roadside + Attractions\n \n + \ Limited
\"\"

Hampstead

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Lesley + Manville, Diane Keaton, Brendan Gleeson, James Norton
1 hr 42 min
IFC + Films\n \n + \ Limited
\"\"

Clinton Road

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Mystery\n \n\n
With: Ace Young, Erin + O'Brien, Cody Calafiore, Katie Morrison
1 + hr 17 min
Nocturnal + Features\n \n + \ Limited
\"\"

Killer Unicorn

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\n
With: Dennis Budesheim, Alejandro La Rosa, Markus + Kelle, Monica Garcia Bradley
1 + hr 14 min
Indican + Pictures\n \n + \ Limited
\"\"

Late Night

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Emma Thompson, Mindy + Kaling, John Lithgow, Hugh Dancy
1 + hr 42 min
Amazon + Studios\n \n + \ Wide
\"\"

Being Frank

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Jim Gaffigan, Logan Miller, Anna Gunn, + Samantha Mathis
1 hr 49 min
The + Film Arcade\n \n + \ Limited
\"\"

Back to the Fatherland

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Gil Levanon, Katharina Maschek, Dan Peled, + Gidi Peled
1 hr 17 min
First + Run\n \n + \ Limited
\"\"

Paris Is Burning

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Brooke Xtravaganza, Andr\xE9 Christian, + Dorian Corey, Paris Dupr\xE9e
1 + hr 11 min
Janus + Films\n \n + \ Limited
\"\"

In the Aisles

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Andreas Leupold, + Franz Rogowski, Peter Kurth, Steffen Scheumann
2 hr 5 min
Music + Box Films\n \n + \ Limited
\"\"

Our Time

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Natalia L\xF3pez, Phil Burgers, Carlos + Reygadas, Yago Mart\xEDnez
2 + hr 57 min
Monument + Releasing\n \n + \ Limited
June + 17, 2019
\"\"

Emanuel

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: George Howard Adams, A.R. Bernard, Nadine + Collier, Brien Gregorie
1 hr + 20 min
Fathom + Events\n \n + \ Limited
June + 21, 2019
\"\"

Toy Story 4

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Family\n \n Fantasy\n \n\n3D IMAX
With: Tom Hanks, Tim Allen, + Annie Potts, Tony Hale
1 hr 40 + min
Walt + Disney Studios Motion Pictures\n \n + \ Wide
\"\"

Child's Play

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Sci-Fi\n \n\n
With: Tim + Matheson, Ben Daon, Zahra Anderson, Serge Jaswal
1 hr 30 min
United + Artists Releasing\n \n + \ Wide
\"\"

Anna

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Sasha Luss, Helen + Mirren, Luke Evans, Cillian Murphy
1 + hr 58 min
Lionsgate\n \n + \ Wide
\"\"

The Quiet One

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Bill Wyman, Suzanne + Accosta, Tony Chapman, Eric Clapton
1 + hr 38 min
IFC + Films\n \n + \ Limited
\"\"

Toni Morrison: The + Pieces I Am

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Toni Morrison, Hilton Als, Oprah Winfrey, + Russell Banks
2 hr
Magnolia + Pictures\n \n + \ Limited
\"\"

Round of Your Life

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Family\n \n Sport\n \n\n
With: Cole Allen, Ximena + Alvarez, Suhail Arastu, Marina Arellano
1 + hr 31 min
Ammo + Content\n \n + \ Limited
\"\"

Wild Rose

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Music\n \n\n
With: Jessie Buckley, + Matt Costello, Jane Patterson, Lesley Hart
1 + hr 41 min
Neon\n \n + \ Limited
\"\"

A Bigger Splash

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Drama\n + \ \n\n
With: + David Hockney, Peter Schlesinger, Celia Birtwell, Henry Geldzahler
1 hr 46 min
Metrograph + Pictures\n \n + \ Limited
\"\"

Before Stonewall

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: Rita Mae Brown, + Maua Adele Ajanaku, Red Jordan Arobateau, Ann Bannon
1 hr 27 min
First + Run\n \n + \ Limited
\"\"

Burn Your Maps

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Drama\n \n\n
With: Vera + Farmiga, Marton Csokas, Jacob Tremblay, Suraj Sharma
1 hr 42 min
Vertical + Entertainment\n \n + \ Limited
\"\"

Swinging Safari

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Guy Pearce, Kylie + Minogue, Jesse Denyer, Kotan Jacob
1 + hr 37 min
Blue + Fox Entertainment\n \n + \ Limited
June + 23, 2019
\"\"

Forrest Gump

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Tom Hanks, Robin + Wright, Gary Sinise, Sally Field
2 + hr 22 min
Fathom + Events\n \n + \ Limited
June + 25, 2019
\"\"

Kinky Boots: The Musical

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Musical\n \n\n
With: Matt Henry, Killian Donnelly, Natalie McQueen, + Sean Needham
2 hr 15 min
Fathom + Events\n \n + \ Limited
June + 26, 2019
\"\"

Annabelle Comes Home

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Mystery\n \n Thriller\n \n\nIMAX +
With: + Vera Farmiga, Patrick Wilson, Mckenna Grace, Madison Iseman
1 hr 46 min
Warner + Bros.\n \n + \ Wide
June + 28, 2019
\"\"

Yesterday

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Fantasy\n \n Music\n \n Romance\n + \ \n\n
With: + Himesh Patel, Lily James, Sophia Di Martino, Ellise Chappell
1 hr 56 min
Universal + Pictures\n \n + \ Wide
\"\"

The Other Side of Heaven + 2: Fire of Faith

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Biography\n \n Drama\n \n\n
With: Christopher + Gorham, Natalie Medlock, Ben Baker, Alex Tarrant
1 hr 57 min
ArtAffects + Entertainment\n \n + \ Limited
\"\"

Ophelia

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n Thriller\n \n\n
With: Daisy + Ridley, Mia Quiney, Calum O'Rourke, Nathaniel Parker
1 hr 54 min
IFC + Films\n \n + \ Limited
\"\"

Maiden

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Sport\n + \ \n\n
With: + Frank Bough, John Chittenden, Bruno Du Bois, Pat Edwards
1 hr 37 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

The Other Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Sasson Gabay, Joy Rieger, Yuval Segal, + Maya Dagan
1 hr 52 min
Strand + Releasing\n \n + \ Limited
\"\"

The Queen

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Bernard Giquel, Jack Doroshow, Jim Dine, + Rachel Harlow
1 hr 8 min
Kino + Lorber\n \n + \ Limited
\"\"

Chulas Fronteras

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Ramiro Cavazos, + Los Alegres De Teran, Los Pinguinos del Norte, Rumel Fuentes
58 min
Argot + Pictures\n \n + \ Limited
\"\"

Three Peaks

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Alexander Fehling, B\xE9r\xE9nice Bejo, + Arian Montgomery
1 hr 34 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

The Chambermaid

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Gabriela Cartol, Agustina Quinci, Teresa + S\xE1nchez, Al\xE1n Uribe
1 hr + 42 min
Kino + Lorber\n \n + \ Limited
\"\"

The Plagiarists

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: William Michael Payne, Emily Davis, Lucy + Kaminsky, Eamon Monaghan
1 hr + 16 min
-Limited
\"\"

The Last Whistle

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Sport\n \n\n
With: Brad Leland, Jim + O'Heir, Deanne Lauvin, Les Miles
1 + hr 27 min
Vertical + Entertainment\n \n + \ Limited
July + 1, 2019
\"\"

Whisper of the Heart

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Drama\n \n Family\n \n + \ Romance\n \n\n
With: Yoko Honna, Issey Takahashi, Takashi Tachibana, + Shigeru Muroi
1 hr 51 min
Fathom + Events\n \n + \ Limited
July + 2, 2019
\"\"

Spider-Man: Far from + Home

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Sci-Fi\n \n\n3D + IMAX
With: + Tom Holland, Samuel L. Jackson, Jake Gyllenhaal, Marisa Tomei
2 hr 9 min
Sony + Pictures Entertainment (SPE)\n \n + \ Wide
July + 3, 2019
\"\"

Midsommar

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Mystery\n \n Thriller\n + \ \n\n
With: + Florence Pugh, Jack Reynor, Vilhelm Blomgren, William Jackson Harper
2 hr 28 min
A24\n \n + \ Wide
July + 5, 2019
\"\"

Cold Blood

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Jean Reno, Sarah + Lind, Joe Anderson, David Gyasi
1 + hr 31 min
Screen + Media Films\n \n + \ Limited
\"\"

Marianne & Leonard: + Words of Love

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n Romance\n \n\n
With: Nick Broomfield, Leonard Cohen, Marianne + Ihlen, Axel Joachim Jensen
1 + hr 42 min
Roadside + Attractions\n \n + \ Limited
\"\"

I'll Take Your Dead

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\n
With: Aidan Devine, Ava Preston, Jess Salgueiro, + Brandon McKnight
1 hr 23 min
Breakthrough + Entertainment\n \n + \ Limited
\"\"

The Cat Rescuers

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Claire Corey, Tara Green, Stuart Siet, + Latonya 'Sassee' Walker
1 hr + 27 min
Balcony + Releasing\n \n + \ Limited
\"\"

The Return of Martin + Guerre

2019 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n \n Biography\n \n + \ Crime\n \n Drama\n \n History\n \n Mystery\n + \ \n Romance\n \n\n
With: G\xE9rard Depardieu, Nathalie Baye, Maurice + Barrier, Bernard-Pierre Donnadieu
1 + hr 52 min
Cohen + Media Group\n \n + \ Limited
July + 8, 2019
\"\"

Hamlet

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Benedict Cumberbatch, Ciar\xE1n Hinds, + Leo Bill, Sian Brooke
3 hr 37 + min
Fathom + Events\n \n + \ Limited
July + 11, 2019
\"\"

The Cure: Anniversary + 1978-2018 Live in Hyde Park

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n Music\n \n\n
With: Christine Brenner, Jason Cooper, Reeves + Gabrels, Simon Gallup
2 hr 17 + min
Trafalgar + Releasing\n \n + \ Limited
\"\"

Sound! Euphonium the + Movie - Our Promise: A Brand New Day

\n\n\n\n\n\n\n\n\n\n\n\n \n Animation\n \n + \ Drama\n \n Music\n \n\n
With: Tomoyo Kurosawa, Chika Anzai, Moe Toyota, + Ayaka Asai
1 hr 40 min
Fathom + Events\n \n + \ Limited
July + 12, 2019
\"\"

Crawl

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Horror\n \n + \ Thriller\n \n\n
With: Kaya Scodelario, Barry Pepper, Morfydd + Clark, Ross Anderson
1 hr 27 + min
Paramount + Pictures\n \n + \ Wide
\"\"

Stuber

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n Thriller\n + \ \n\n
With: + Dave Bautista, Kumail Nanjiani, Mira Sorvino, Natalie Morales
1 hr 33 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

Super 30

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Hrithik Roshan, + Mrunal Thakur, Nandish Singh Sandhu, Virendra Saxena
2 hr 34 min
Reliance + Big Pictures\n \n + \ Limited
\"\"

Bethany Hamilton: + Unstoppable

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Alana Blanchard, + Adam Dirks, Tobias Dirks, Madison Graber
1 + hr 40 min
Entertainment + Studios Motion Pictures\n \n + \ Limited
\"\"

Menteur

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Louis-Jos\xE9 Houde, Antoine Bertrand, + Catherine Chabot, Anne-\xC9lisabeth Boss\xE9
1 + hr 51 min
Entertainment + One\n \n + \ Limited
\"\"

The White Storm 2: + Drug Lords

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n\n
With: Andy Lau, Louis + Koo, Kiu Wai Miu, Karena Kar-Yan Lam
1 + hr 39 min
-Limited
\"\"

I Got the Hook Up + 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Johnny 'Koolout' Starks, Farrah Laurel + Abraham, Alexandru Achindinov, Rosa Acosta
1 + hr 47 min
-Limited
\"\"

Armstrong

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Harrison Ford, Neil + Armstrong, Mark Armstrong, Mike Bodie
1 + hr 40 min
Gravitas + Ventures\n \n + \ Limited
\"\"

The Art of Self-Defense

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n Drama\n + \ \n Mystery\n \n Thriller\n \n\n
With: Jesse Eisenberg, + Alessandro Nivola, Imogen Poots, Steve Terada
1 hr 44 min
Bleecker + Street Media\n \n + \ Limited
\"\"

The Farewell

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Shuzhen Zhao, Awkwafina, + X Mayo, Hong Lu
1 hr 40 min
A24\n \n + \ Limited
\"\"

Sword of Trust

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Marc Maron, Jon + Bass, Michaela Watkins, Jillian Bell
1 + hr 28 min
IFC + Films\n \n + \ Limited
\"\"

Rojo

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n Thriller\n \n\n
With: Dar\xEDo + Grandinetti, Andrea Frigerio, Alfredo Castro, Diego Cremonesi
1 hr 49 min
Distrib + Films\n \n + \ Limited
\"\"

Trespassers

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Horror\n \n Thriller\n + \ \n\n
With: + Angela Trimbur, Janel Parrish, Jonathan Howard, Zach Avery
1 hr 28 min
IFC + Films\n \n + \ Limited
\"\"

The Cranes Are Flying

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n War\n \n\n
With: Tatyana + Samoylova, Aleksey Batalov, Vasiliy Merkurev, Aleksandr Shvorin
1 hr 35 min
Janus + Films\n \n + \ Limited
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 18 Jul 2022 20:10:33 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=138-6594991-2328848; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 517YEKWRVVKK89830X2B + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/calendar/2019-7-12/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic + Release Schedule - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Release Schedule

\n\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n\n
Release\n + \ Distributor\n Scale\n + \
July 12, 2019
\"\"

Crawl

\n\n\n\n\n\n\n\n\n\n\n\n \n Action\n + \ \n Adventure\n \n Horror\n \n Thriller\n \n\n
With: Kaya + Scodelario, Barry Pepper, Morfydd Clark, Ross Anderson
1 hr 27 min
Paramount + Pictures\n \n + \ Wide
\"\"

Stuber

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n Thriller\n + \ \n\n
With: + Dave Bautista, Kumail Nanjiani, Mira Sorvino, Natalie Morales
1 hr 33 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

Super 30

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Hrithik Roshan, + Mrunal Thakur, Nandish Singh Sandhu, Virendra Saxena
2 hr 34 min
Reliance + Big Pictures\n \n + \ Limited
\"\"

Bethany Hamilton: Unstoppable

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Alana Blanchard, + Adam Dirks, Tobias Dirks, Madison Graber
1 + hr 40 min
Entertainment + Studios Motion Pictures\n \n + \ Limited
\"\"

Menteur

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Louis-Jos\xE9 Houde, Antoine Bertrand, + Catherine Chabot, Anne-\xC9lisabeth Boss\xE9
1 + hr 51 min
Entertainment + One\n \n + \ Limited
\"\"

The White Storm 2: + Drug Lords

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n\n
With: Andy Lau, Louis + Koo, Kiu Wai Miu, Karena Kar-Yan Lam
1 + hr 39 min
-Limited
\"\"

I Got the Hook Up 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Johnny 'Koolout' Starks, Farrah Laurel + Abraham, Alexandru Achindinov, Rosa Acosta
1 + hr 47 min
-Limited
\"\"

Armstrong

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Harrison Ford, Neil + Armstrong, Mark Armstrong, Mike Bodie
1 + hr 40 min
Gravitas + Ventures\n \n + \ Limited
\"\"

The Art of Self-Defense

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Crime\n \n Drama\n + \ \n Mystery\n \n Thriller\n \n\n
With: Jesse Eisenberg, + Alessandro Nivola, Imogen Poots, Steve Terada
1 hr 44 min
Bleecker + Street Media\n \n + \ Limited
\"\"

The Farewell

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Shuzhen Zhao, Awkwafina, + X Mayo, Hong Lu
1 hr 40 min
A24\n \n + \ Limited
\"\"

Rojo

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n Thriller\n \n\n
With: Dar\xEDo + Grandinetti, Andrea Frigerio, Alfredo Castro, Diego Cremonesi
1 hr 49 min
Distrib + Films\n \n + \ Limited
\"\"

Sword of Trust

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Marc Maron, Jon + Bass, Michaela Watkins, Jillian Bell
1 + hr 28 min
IFC + Films\n \n + \ Limited
\"\"

The Cranes Are Flying

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n War\n \n\n
With: Tatyana + Samoylova, Aleksey Batalov, Vasiliy Merkurev, Aleksandr Shvorin
1 hr 35 min
Janus + Films\n \n + \ Limited
\"\"

Trespassers

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Horror\n \n Thriller\n + \ \n\n
With: + Angela Trimbur, Janel Parrish, Jonathan Howard, Zach Avery
1 hr 28 min
IFC + Films\n \n + \ Limited
July + 14, 2019
\"\"

Easy Rider

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n\n
With: Peter Fonda, Dennis + Hopper, Jack Nicholson, Antonio Mendoza
1 + hr 35 min
Fathom + Events\n \n + \ Limited
July + 17, 2019
\"\"

Between Me and My + Mind

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Ernest Anastasio, Sue Anastasio, Trey Anastasio, + Jon Fishman
1 hr 40 min
Trafalgar + Releasing\n \n + \ Limited
July + 19, 2019
\"\"

The Lion King

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Drama\n \n + \ Family\n \n Musical\n \n\n3D IMAX
With: Donald Glover, Beyonc\xE9, + Seth Rogen, Chiwetel Ejiofor
1 + hr 58 min
Walt + Disney Studios Motion Pictures\n \n + \ Wide
\"\"

Looking Up

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Chao Deng, Yu Bai, Suxi Ren, Xi Wang
2 hr 27 min
China + Lion Film Distribution\n \n + \ Limited
\"\"

David Crosby: Remember + My Name

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: David Crosby, Stephen + Barncard, Jackson Browne, Ethan Crosby
1 + hr 35 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

Rosie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Sarah Greene, Molly McCann, Darragh Mckenzie, + Ruby Dunne
1 hr 26 min
Blue + Fox Entertainment\n \n + \ Limited
\"\"

At War

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Vincent Lindon, M\xE9lanie Rover, Jacques + Borderie, David Rey
1 hr 53 min
Cinema + Libre Studio\n \n + \ Limited
\"\"

I Do Not Care If We + Go Down in History as Barbarians

\n\n\n\n\n\n\n\n\n\n\n\n \n Comedy\n \n + \ Drama\n \n\n
With: Ioana Iacob, Alex Bogdan, Alexandru Dabija, + Ion Rizea
2 hr 20 min
Big + World Pictures\n \n + \ Limited
\"\"

Tiny: The Life of + Erin Blackwell

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Erin Blackwell, Mary Ellen Mark
1 hr 27 min
Janus + Films\n \n + \ Limited
\"\"

A Faithful Man

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Louis + Garrel, Laetitia Casta, Lily-Rose Depp, Joseph Engel
1 hr 15 min
Kino + Lorber\n \n + \ Limited
\"\"

Cassandro, The Exotico!

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Cassandro
1 + hr 13 min
Film + Movement\n \n + \ Limited
\"\"

Streetwise

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Drama\n \n\n
With: Annie, Eddie, Antoine, + Erica
1 hr 31 min
Janus + Films\n \n + \ Limited
\"\"

Luz

\n\n\n\n\n\n\n\n\n\n\n\n \n Horror\n + \ \n Mystery\n \n Thriller\n \n\n
With: Luana Velis, Johannes + Benecke, Jan Bluthardt, Lilli Lorenz
1 + hr 10 min
Screen + Media Films\n \n + \ Limited
July + 20, 2019
\"\"

PBC on FOX PPV: Pacquiao + vs. Thurman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Sport\n \n\n
With: Efe Ajagba, Kenny Albert, Heidi Androl, + David Benavidez
Fathom + Events\n \n + \ Limited
July + 21, 2019
\"\"

Glory

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n History\n \n + \ War\n \n\n
With: + Matthew Broderick, Denzel Washington, Cary Elwes, Morgan Freeman
2 hr 2 min
Fathom + Events\n \n + \ Limited
July + 22, 2019
\"\"

This Changes Everything

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Reese Witherspoon, Mira Nair, Shonda Rhimes, + Tracee Ellis Ross
1 hr 36 min
Fathom + Events\n \n + \ Limited
July + 23, 2019
\"\"

Is It Wrong to Try + to Pick Up Girls in a Dungeon - Arrow of the Orion

\n\n\n\n\n\n\n\n\n\n\n\n \n Action\n + \ \n Adventure\n \n Animation\n \n Comedy\n \n + \ Fantasy\n \n Romance\n \n\n
With: Yoshitsugu Matsuoka, + Inori Minase, Maaya Sakamoto, Maaya Uchida
1 + hr 22 min
Fathom + Events\n \n + \ Wide
July + 24, 2019
\"\"

The Fighting Preacher

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n History\n \n\n
With: David + McConnell, Charley Boon, Kenna Dawn, Steve Anderson
1 hr 40 min
Purdie + Distribution\n \n + \ Limited
July + 25, 2019
\"\"

The Muppet Movie

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Family\n \n + \ Musical\n \n\n
With: Jim Henson, Frank Oz, Jerry Nelson, Richard + Hunt
1 hr 35 min
Fathom + Events\n \n + \ Wide
July + 26, 2019
\"\"

Once Upon a Time... + In Hollywood

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Leonardo DiCaprio, + Brad Pitt, Margot Robbie, Emile Hirsch
2 + hr 41 min
Sony + Pictures Entertainment (SPE)\n \n + \ Wide
\"\"

For Sama

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n War\n \n\n
With: Waad Al-Kateab, + Sama Al-Khateab, Hamza Al-Khateab, Afra
1 + hr 40 min
PBS + Distribution\n \n + \ Limited
\"\"

Mike Wallace Is Here

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Mike Wallace, Spiro + Agnew, Jonathan Alter, Yasser Arafat
1 + hr 30 min
Magnolia + Pictures\n \n + \ Limited
\"\"

The Mountain

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Tye Sheridan, Udo Kier, Larry Fessenden, + Margot Klein
1 hr 46 min
Kino + Lorber\n \n + \ Limited
\"\"

Honeyland

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Drama\n \n\n
With: Hatidze Muratova, + Nazife Muratova, Hussein Sam, Ljutvie Sam
1 + hr 29 min
Neon\n \n + \ Limited
\"\"

The Ground Beneath + My Feet

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Valerie Pachner, Pia Hierzegger, Mavie + H\xF6rbiger, Michelle Barthel
1 + hr 48 min
Strand + Releasing\n \n + \ Limited
\"\"

In Safe Hands

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Sandrine Kiberlain, Gilles Lellouche, \xC9lodie + Bouchez, Olivia C\xF4te
1 hr + 50 min
Distrib + Films\n \n + \ Limited
\"\"

Angels Are Made Of + Light

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Fazula, Hasiba, Yaldash Mir-Habibullah, + Rostam Mir-Mohammed-Ullah
1 hr + 57 min
Grasshopper + Film\n \n + \ Limited
\"\"

Skin

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Crime\n \n Drama\n \n + \ Romance\n \n\n
With: Jamie Bell, Danielle Macdonald, Daniel + Henshall, Bill Camp
1 hr 58 min
A24\n \n + \ Limited
\"\"

See You Soon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Harvey Keitel, Jenia + Tanaeva, Poppy Drayton, Liam McIntyre
1 + hr 47 min
Vertical + Entertainment\n \n + \ Limited
July + 28, 2019
\"\"

Kiki's Delivery Service

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Family\n \n + \ Fantasy\n \n\n
With: Kirsten Dunst, Minami Takayama, Rei Sakuma, + Kappei Yamaguchi
1 hr 43 min
Fathom + Events\n \n + \ Wide
July + 31, 2019
\"\"

Jay Myself

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n\n
With: Jay Maisel
1 hr 19 min
Oscilloscope\n \n + \ Limited
\"\"

Kathy Griffin: A Hell + of a Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Documentary\n \n\n
With: Kathy Griffin, Randy + Bick, Ted Boutrous, Jim Carrey
1 + hr 46 min
Fathom + Events\n \n + \ Wide
August + 1, 2019
\"\"

Grateful Dead Meet-Up + 2019

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Mickey Hart, Bruce + Hornsby, Bill Kreutzmann, Phil Lesh
2 + hr
Trafalgar + Releasing\n \n + \ Limited
August + 2, 2019
\"\"

Fast & Furious Presents: + Hobbs & Shaw

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Thriller\n \n\nIMAX +
With: + Dwayne Johnson, Jason Statham, Idris Elba, Vanessa Kirby
2 hr 17 min
Universal + Pictures\n \n + \ Wide
\"\"

Leo Da Vinci: Mission + Mona Lisa

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Animation\n \n Family\n \n\n
With: Johnny + Yong Bosch, Cherami Leigh, Bryce Papenbrook, Faith Graham
1 hr 25 min
Ammo + Content\n \n + \ Limited
\"\"

Tel Aviv on Fire

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Kais + Nashif, Lubna Azabal, Yaniv Biton, Maisa Abd Elhadi
1 hr 40 min
Cohen + Media Group\n \n + \ Limited
\"\"

Luce

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n\n
With: Naomi Watts, Octavia + Spencer, Kelvin Harrison Jr., Tim Roth
1 + hr 49 min
Neon\n \n + \ Limited
\"\"

Union

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n History\n \n War\n \n\n
With: Cece + Kelly, Virginia Newcomb, Jay Galloway, Marcelle LeBlanc
2 hr 15 min
Indican + Pictures\n \n + \ Limited
\"\"

Them That Follow

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Thriller\n \n\n
With: Olivia Colman, Kaitlyn + Dever, Alice Englert, Jim Gaffigan
1 + hr 38 min
1091 + Pictures\n \n + \ Limited
\"\"

The Nightingale

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Thriller\n \n\n
With: Aisling + Franciosi, Maya Christie, Baykali Ganambarr, Addison Christie
2 hr 16 min
IFC + Films\n \n + \ Limited
\"\"

Exit

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n\n
With: Jo Jung-Suk, Im + Yoon-ah, Du-shim Ko, In-hwan Park
1 + hr 43 min
CJ + Entertainment\n \n + \ Limited
\"\"

Joan the Maid 1: The + Battles

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n History\n \n + \ War\n \n\n
With: + Tatiana Moukhine, Sandrine Bonnaire, Jean-Marie Richier, Baptiste Roussillon
2 hr 40 min
Cohen + Media Group\n \n + \ Limited
\"\"

Piranhas

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n\n
With: Francesco Di Napoli, + Viviana Aprea, Mattia Piano Del Balzo, Ciro Vecchione
1 hr 51 min
Music + Box Films\n \n + \ Limited
\"\"

Love, Antosha

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Anton Yelchin, J.J. Abrams, Sofia Boutella, Nicolas Cage
1 hr 32 min
-Limited
August 3, 2019
\"\"

It

2019 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\nIMAX
With: Bill Skarsg\xE5rd, Jaeden Martell, Finn + Wolfhard, Sophia Lillis
2 hr + 15 min
Warner + Bros.\n \n + \ Limited
August + 4, 2019
\"\"

Blood Widow

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Mystery\n \n Thriller\n \n\n
With: James + Craven, Dallas Thomas, Melissa Aguirre Fernandez, Hector Ayala
1 hr 34 min
Indican + Pictures\n \n + \ Limited
August + 5, 2019
\"\"

Love Live! Sunshine!! + The School Idol Movie: Over The Rainbow

\n\n\n\n\n\n\n\n\n\n\n\n \n Animation\n \n + \ Comedy\n \n Music\n \n\n
With: Anju Inami, Rikako + Aida, Nanaka Suwa, Arisa Komiya
1 + hr 40 min
FUNimation + Entertainment\n \n + \ Limited
August + 6, 2019
\"\"

I Love Lucy: A Colorized + Celebration

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Desi Arnaz, Lucille Ball, William Frawley, + Vivian Vance
2 hr 35 min
Fathom + Events\n \n + \ Limited
August + 7, 2019
\"\"

Bring the Soul: The + Movie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: RM, Jin, J-Hope, + Suga
1 hr 43 min
Trafalgar + Releasing\n \n + \ Wide
\"\"

The End of Time: Part + One

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Sci-Fi\n \n\n
With: David + Tennant, John Simm, Bernard Cribbins, Timothy Dalton
1 hr
Fathom + Events\n \n + \ Wide
August + 8, 2019
\"\"
Fathom + Events\n \n + \ Limited
August + 9, 2019
\"\"

Dora and the Lost + City of Gold

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Comedy\n \n + \ Family\n \n Fantasy\n \n Mystery\n \n\n
With: Isabela + Merced, Eugenio Derbez, Michael Pe\xF1a, Eva Longoria
1 hr 42 min
Paramount + Pictures\n \n + \ Wide
\"\"

Scary Stories to Tell + in the Dark

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Horror\n \n Mystery\n \n\n
With: Zoe + Margaret Colletti, Michael Garza, Gabriel Rush, Austin Abrams
1 hr 48 min
Lionsgate\n \n + \ Wide
\"\"

The Art of Racing + in the Rain

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n Sport\n + \ \n\n
With: + Kevin Costner, Milo Ventimiglia, Jackie Minns, Marcus Hondro
1 hr 49 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

The Kitchen

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Drama\n \n\n
With: Melissa + McCarthy, Tiffany Haddish, Elisabeth Moss, Domhnall Gleeson
1 hr 42 min
Warner + Bros.\n \n + \ Wide
\"\"

Brian Banks

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Sport\n \n\n
With: Aldis + Hodge, Greg Kinnear, Sherri Shepherd, Melanie Liburd
1 hr 39 min
Bleecker + Street Media\n \n + \ Wide
\"\"

ECCO

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n Thriller\n \n\n
With: Lathrop + Walker, Tabitha Bastien, Helena Grace Donald, Michael Winters
2 hr 3 min
Citadel + Film Group\n \n + \ Limited
\"\"

The Bravest

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Drama\n \n Family\n \n\n
With: Xiaoming + Huang, Jiang Du, Zhuo Tan, Zi Yang
1 + hr 58 min
Sony + Pictures Entertainment (SPE)\n \n + \ Limited
\"\"

Light of My Life

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Sci-Fi\n \n Thriller\n \n\n
With: Anna + Pniowsky, Casey Affleck, Tom Bower, Elisabeth Moss
1 hr 59 min
Saban + Films\n \n + \ Limited
\"\"

The Peanut Butter + Falcon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Drama\n \n\n
With: Zack + Gottsagen, Ann Pierce, Dakota Johnson, Bruce Dern
1 hr 37 min
Roadside + Attractions\n \n + \ Limited
\"\"

Wicked Witches

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n\n
With: Duncan Casey, Justin Marosa, Kitt Proudfoot, + Samantha Schnitzler
1 hr 19 min
Nocturnal + Features\n \n + \ Limited
\"\"

After the Wedding

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Julianne Moore, Michelle Williams, Billy + Crudup, Abby Quinn
1 hr 52 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

The Farewell

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Shuzhen Zhao, Awkwafina, + X Mayo, Hong Lu
1 hr 40 min
A24\n \n + \ Wide
\"\"

Ode to Joy

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Romance\n \n\n
With: Martin Freeman, + Morena Baccarin, Jake Lacy, Melissa Rauch
1 + hr 37 min
IFC + Films\n \n + \ Limited
\"\"

Dying to Survive

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Zheng Xu, Yiwei + Zhou, Chuan-jun Wang, Zhuo Tan
1 + hr 57 min
China + Lion Film Distribution\n \n + \ Limited
\"\"

One Child Nation

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: Nanfu Wang, Zaodi + Wang, Zhimei Wang, Tunde Wang
1 + hr 23 min
Amazon + Studios\n \n + \ Limited
\"\"

La Flor

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Fantasy\n \n Musical\n \n + \ Mystery\n \n Romance\n \n Thriller\n \n\n
With: Elisa + Carricajo, Valeria Correa, Pilar Gamboa, Laura Paredes
13 hr 28 min
Grasshopper + Film\n \n + \ Limited
\"\"

Vision Portraits

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: John Dugdale, Rodney Evans, Kayla Hamilton, + Ryan Knighton
1 hr 18 min
-Limited
August 11, 2019
\"\"

Hello, Dolly!

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Musical\n \n + \ Romance\n \n\n
With: Barbra Streisand, Walter Matthau, Michael + Crawford, Marianne McAndrew
2 + hr 26 min
Fathom + Events\n \n + \ Wide
August + 13, 2019
\"\"

The Angry Birds Movie + 2

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Animation\n \n + \ Comedy\n \n Family\n \n\n3D
With: Jason Sudeikis, + Josh Gad, Leslie Jones, Bill Hader
1 + hr 37 min
Sony + Pictures Entertainment (SPE)\n \n + \ Wide
\"\"

Millennium Actress

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Drama\n \n Fantasy\n \n + \ Romance\n \n\n
With: Miyoko Sh\xF4ji, Sh\xF4z\xF4 \xCEzuka, + Mami Koyama, Fumiko Orikasa
1 + hr 27 min
Fathom + Events\n \n + \ Limited
August + 15, 2019
\"\"

Mission Mangal

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n History\n \n Sci-Fi\n \n\n
With: Akshay + Kumar, Vidya Balan, Taapsee Pannu, Sonakshi Sinha
2 hr 10 min
FIP\n \n + \ Limited
\"\"

Batla House

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Drama\n \n History\n + \ \n Thriller\n \n\n
With: John Abraham, Mrunal Thakur, Nora Fatehi, + Kranti Prakash Jha
2 hr 26 min
Viva + Pictures\n \n + \ Limited
\"\"

The Giant Spider Invasion

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Horror\n \n Sci-Fi\n \n\n
With: Steve Brodie, Barbara + Hale, Robert Easton, Leslie Parrish
1 + hr 24 min
Fathom + Events\n \n + \ Wide
\"\"

Apocalypse Now

The + Final Cut
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n War\n \n\n
With: Martin + Sheen, Marlon Brando, Robert Duvall, Frederic Forrest
2 hr 27 min
Lionsgate\n \n + \ Limited
\"\"

Woodstock

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n Music\n \n\n
With: Joan + Baez, Richie Havens, Roger Daltrey, Joe Cocker
3 hr 4 min
Fathom + Events\n \n + \ Wide
August + 16, 2019
\"\"

Good Boys

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n\n
With: Jacob Tremblay, + Keith L. Williams, Brady Noon, Molly Gordon
1 + hr 30 min
Universal + Pictures\n \n + \ Wide
\"\"

47 Meters Down: Uncaged

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Horror\n \n + \ Thriller\n \n\n
With: Sophie N\xE9lisse, Corinne Foxx, Brianne + Tju, Sistine Rose Stallone
1 + hr 30 min
Entertainment + Studios Motion Pictures\n \n + \ Wide
\"\"

Where'd You Go, Bernadette

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Cate Blanchett, + Billy Crudup, Emma Nelson, Kristen Wiig
1 + hr 49 min
United + Artists Releasing\n \n + \ Wide
\"\"

Blinded by the Light

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Music\n \n\n
With: Billy + Barratt, Ronak Singh Chadha Berges, Viveik Kalra, Lee Barnett
1 hr 58 min
Warner + Bros.\n \n + \ Wide
\"\"

The Divine Fury

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Horror\n \n Thriller\n \n\n
With: Park + Seo-joon, Sung-Ki Ahn, Woo Do-Hwan, Eun-hyung Jo
2 hr 9 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Line Walker 2: Invisible + Spy

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Louis + Koo, Nick Cheung, Francis Ng, Peiyao Jiang
1 + hr 38 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Cold Case Hammarskj\xF6ld

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: Mads Br\xFCgger, + Clarinah Mfengu, Saphir Wenzi Mabanza, U Thant
2 hr 8 min
Magnolia + Pictures\n \n + \ Limited
\"\"

Aquarela

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Sony + Pictures Classics\n \n + \ Limited
\"\"

Olivia

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Edwige Feuill\xE8re, + Simone Simon, Marie-Claire Olivia, Yvonne de Bray
1 hr 35 min
Icarus + Films\n \n + \ Limited
\"\"

Bu\xF1uel in the Labyrinth + of the Turtles

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Biography\n \n Drama\n \n + \ History\n \n\n
With: Jorge Us\xF3n, Fernando Ramos, Luis Enrique + de Tom\xE1s, Cyril Corral
1 hr + 20 min
GKIDS\n \n + \ Limited
\"\"

Los Reyes

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Grasshopper + Film\n \n + \ Limited
\"\"

End of the Century

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Juan Barberini, Ramon Pujol, M\xEDa Maestro, + Mariano Lopez Seoane
1 hr 24 + min
The + Cinema Guild\n \n + \ Limited
\"\"

Driven

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Thriller\n \n\n
With: Jason + Sudeikis, Lee Pace, Judy Greer, Isabel Arraiza
1 hr 53 min
Variance + Films\n \n + \ Limited
\"\"

The Second Sun

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Eden Epstein, John Buffalo Mailer, Ciaran + Byrne, Claudia Maree Mailer
1 + hr 30 min
-Limited
\"\"

What You Gonna Do When + the World's on Fire?

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Judy Hill, Dorothy Hill, Michael Nelson, + Ronaldo King
2 hr 3 min
-Limited
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 18 Jul 2022 20:10:35 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=142-1464913-6157141; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - JPDCFBVTD2AEKQSSMV3X + status: + code: 200 + message: OK +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/calendar/2019-8-16/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic + Release Schedule - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Release Schedule

\n\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n\n
Release\n + \ Distributor\n Scale\n + \
August 16, 2019
\"\"

Good Boys

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n\n
With: Jacob Tremblay, + Keith L. Williams, Brady Noon, Molly Gordon
1 + hr 30 min
Universal + Pictures\n \n + \ Wide
\"\"

47 Meters Down: Uncaged

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Horror\n \n + \ Thriller\n \n\n
With: Sophie N\xE9lisse, Corinne Foxx, Brianne + Tju, Sistine Rose Stallone
1 + hr 30 min
Entertainment + Studios Motion Pictures\n \n + \ Wide
\"\"

Where'd You Go, Bernadette

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Cate Blanchett, + Billy Crudup, Emma Nelson, Kristen Wiig
1 + hr 49 min
United + Artists Releasing\n \n + \ Wide
\"\"

Blinded by the Light

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Music\n \n\n
With: Billy + Barratt, Ronak Singh Chadha Berges, Viveik Kalra, Lee Barnett
1 hr 58 min
Warner + Bros.\n \n + \ Wide
\"\"

The Divine Fury

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Horror\n \n Thriller\n \n\n
With: Park + Seo-joon, Sung-Ki Ahn, Woo Do-Hwan, Eun-hyung Jo
2 hr 9 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Line Walker 2: Invisible + Spy

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Louis + Koo, Nick Cheung, Francis Ng, Peiyao Jiang
1 + hr 38 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Cold Case Hammarskj\xF6ld

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: Mads Br\xFCgger, + Clarinah Mfengu, Saphir Wenzi Mabanza, U Thant
2 hr 8 min
Magnolia + Pictures\n \n + \ Limited
\"\"

Aquarela

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Sony + Pictures Classics\n \n + \ Limited
\"\"

Olivia

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Edwige Feuill\xE8re, + Simone Simon, Marie-Claire Olivia, Yvonne de Bray
1 hr 35 min
Icarus + Films\n \n + \ Limited
\"\"

Los Reyes

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Grasshopper + Film\n \n + \ Limited
\"\"

Bu\xF1uel in the Labyrinth + of the Turtles

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Biography\n \n Drama\n \n + \ History\n \n\n
With: Jorge Us\xF3n, Fernando Ramos, Luis Enrique + de Tom\xE1s, Cyril Corral
1 hr + 20 min
GKIDS\n \n + \ Limited
\"\"

End of the Century

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Juan Barberini, Ramon Pujol, M\xEDa Maestro, + Mariano Lopez Seoane
1 hr 24 + min
The + Cinema Guild\n \n + \ Limited
\"\"

What You Gonna Do When + the World's on Fire?

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Judy Hill, Dorothy Hill, Michael Nelson, + Ronaldo King
2 hr 3 min
-Limited
\"\"

The Second Sun

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Eden Epstein, John Buffalo Mailer, Ciaran + Byrne, Claudia Maree Mailer
1 + hr 30 min
-Limited
\"\"

Driven

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Thriller\n \n\n
With: Jason + Sudeikis, Lee Pace, Judy Greer, Isabel Arraiza
1 hr 53 min
Variance + Films\n \n + \ Limited
August + 19, 2019
\"\"

ZZ Top: That Little + Ol' Band from Texas

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Billy Gibbons, Dusty Hill, Frank Beard, ZZ Top
1 hr 31 min
Abramorama\n \n + \ Limited
August + 21, 2019
\"\"

Ready or Not

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Comedy\n \n Horror\n \n Mystery\n + \ \n Thriller\n \n\n
With: Samara Weaving, Adam Brody, Mark O'Brien, + Henry Czerny
1 hr 35 min
Fox + Searchlight Pictures\n \n + \ Wide
\"\"

Tigers Are Not Afraid

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Fantasy\n \n Horror\n \n Mystery\n \n\n
With: Paola + Lara, Juan Ram\xF3n L\xF3pez, Nery Arredondo, Hanssel Casillas
1 hr 23 min
Variance + Films\n \n + \ Limited
\"\"

Rush: Cinema Strangiato + 2019

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Music\n \n\n
With: Geddy Lee, Alex Lifeson, Neil Peart, Tom + Morello
2 hr
Trafalgar + Releasing\n \n + \ Limited
August + 23, 2019
\"\"

Angel Has Fallen

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Gerard Butler, Frederick + Schmidt, Danny Huston, Rocci Williams
2 + hr 1 min
Lionsgate\n \n + \ Wide
\"\"

Overcomer

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Family\n \n Sport\n \n\n
With: Alex + Kendrick, Priscilla C. Shirer, Cameron Arnett, Shari Rigby
1 hr 59 min
Affirm + Films\n \n + \ Wide
\"\"

The Death & Life of + John F. Donovan

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Kit Harington, Natalie Portman, Jacob Tremblay, + Susan Sarandon
2 hr 3 min
Entertainment + One\n \n + \ Limited
\"\"

The Peanut Butter + Falcon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Comedy\n \n Drama\n \n\n
With: Zack + Gottsagen, Ann Pierce, Dakota Johnson, Bruce Dern
1 hr 37 min
Roadside + Attractions\n \n + \ Wide
\"\"

Fiddler: A Miracle of + Miracles

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Marc Aronson, Michael Bernardi, Jerry Bock, + Danny Burstein
1 hr 37 min
Roadside + Attractions\n \n + \ Limited
\"\"

Brittany Runs a Marathon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Jillian Bell, Jennifer + Dundas, Patch Darragh, Alice Lee
1 + hr 44 min
Amazon + Studios\n \n + \ Limited
\"\"

Give Me Liberty

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Chris Galust, Lauren + 'Lolo' Spencer, Maxim Stoyanov, Steve Wolski
1 + hr 50 min
Music + Box Films\n \n + \ Limited
\"\"

Vita & Virginia

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n Romance\n \n\n
With: Gemma + Arterton, Elizabeth Debicki, Isabella Rossellini, Rupert Penry-Jones
1 hr 50 min
IFC + Films\n \n + \ Limited
\"\"

Miles Davis: Birth + of the Cool

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Carl Lumbly, Miles Davis, Reginald Petty, Quincy Troupe
1 hr 54 min
Abramorama\n \n + \ Limited
\"\"

Genesis

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: No\xE9e Abita, Th\xE9odore Pellerin, Pier-Luc + Funk, Jules Roy Sicotte
2 hr + 9 min
Film + Movement\n \n + \ Limited
\"\"

Becoming Burlesque

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Shiva Negar, Elise Bauman, Alli Chung, + Moe Jeudy-Lamour
1 hr 36 min
Ammo + Content\n \n + \ Limited
August + 25, 2019
\"\"

My Neighbor Totoro

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Comedy\n \n Family\n \n + \ Fantasy\n \n\n
With: Hitoshi Takagi, Noriko Hidaka, Chika Sakamoto, + Shigesato Itoi
1 hr 26 min
Fathom + Events\n \n + \ Wide
August + 28, 2019
\"\"

The Miracle of the + Little Prince

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
Film + Movement\n \n + \ Limited
August + 29, 2019
\"\"

Saaho

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Thriller\n \n\n
With: Prabhas, Shraddha + Kapoor, Jackie Shroff, Neil Nitin Mukesh
2 + hr 50 min
Yash + Raj Films\n \n + \ Wide
\"\"

Ne Zha

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Animation\n \n + \ Family\n \n Fantasy\n \n Thriller\n \n\n3D + IMAX
With: + Yanting L\xFC, Joseph, Mo Han, Hao Chen
1 hr 50 min
Well + Go USA Entertainment\n \n + \ Limited
August + 30, 2019
\"\"

Bennett's War

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Sport\n \n\n
With: Michael Roark, Ali Afshar, Allison Paige, + Brando Eaton
1 hr 34 min
-Wide
\"\"

Don't Let Go

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Mystery\n \n Sci-Fi\n + \ \n Thriller\n \n\n
With: David Oyelowo, Storm Reid, Mykelti Williamson, + Alfred Molina
1 hr 43 min
-Wide
\"\"

Tod@s Caen

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n\n
With: Martha Higareda, Omar Chaparro, Dunia Alexandra, + Ramon Alvarez
2 hr
Pantelion + Films\n \n + \ Limited
\"\"

Killerman

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Thriller\n \n\n
With: Liam Hemsworth, Emory Cohen, Diane Guerrero, + Zlatko Buric
1 hr 52 min
Blue + Fox Entertainment\n \n + \ Limited
\"\"

Raise Hell: The Life + & Times of Molly Ivins

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Ben Barnes, Paul Begala, Pat Buchanan, + George W. Bush
1 hr 33 min
Magnolia + Pictures\n \n + \ Limited
\"\"

Official Secrets

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Crime\n \n Drama\n \n + \ Thriller\n \n War\n \n\n
With: Keira Knightley, + Matt Smith, Matthew Goode, Rhys Ifans
1 + hr 52 min
IFC + Films\n \n + \ Limited
\"\"

Before You Know It

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Hannah Pearl Utt, + Ayden Mayeri, Oona Yaffe, Jen Tullock
1 + hr 38 min
1091 + Pictures\n \n + \ Limited
\"\"

One Child Nation

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n History\n \n\n
With: Nanfu Wang, Zaodi + Wang, Zhimei Wang, Tunde Wang
1 + hr 23 min
Amazon + Studios\n \n + \ Wide
\"\"

The Load

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Leon Lucev, Novak Bilbija, Branko Perisic, + Radoje Cupic
1 hr 38 min
Grasshopper + Film\n \n + \ Limited
September + 1, 2019
\"\"

Lawrence of Arabia

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Biography\n \n Drama\n \n + \ War\n \n\n
With: + Peter O'Toole, Alec Guinness, Anthony Quinn, Jack Hawkins
3 hr 38 min
Fathom + Events\n \n + \ Wide
\"\"

The Shining

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n\n
With: Jack Nicholson, + Shelley Duvall, Danny Lloyd, Scatman Crothers
2 hr 26 min
Warner + Bros.\n \n + \ Limited
September + 3, 2019
\"\"

Gags the Clown

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Horror\n \n\n
With: Lauren Ashley Carter, + Tracy Perez, Aaron Christensen, Evan Gamble
1 + hr 29 min
Doppelganger + Releasing\n \n + \ Limited
September + 4, 2019
\"\"

\xC1ga

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Mikhail Aprosimov, Feodosia Ivanova, Sergei + Egorov, Galina Tikhonova
1 hr + 36 min
Big + World Pictures\n \n + \ Limited
September + 5, 2019
\"\"

K-12

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Fantasy\n \n Horror\n \n Musical\n \n\n
With: Melanie + Martinez, Emma Harvey, Megan Gage, Maggie Budzyna
1 hr 36 min
Abramorama\n \n + \ Limited
September + 6, 2019
\"\"

It Chapter Two

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Fantasy\n \n Horror\n \n\nIMAX +
With: + Jessica Chastain, James McAvoy, Bill Hader, Isaiah Mustafa
2 hr 49 min
Warner + Bros.\n \n + \ Wide
\"\"

Chhichhore

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n\n
With: Sushant + Singh Rajput, Shraddha Kapoor, Varun Sharma, Prateik Babbar
2 hr 23 min
FIP\n \n + \ Limited
\"\"

Rapid Response

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Stephen Olvey, Terry + Trammell, Mario Andretti, Bobby Unser
1 + hr 39 min
Atlas + Distribution Company\n \n + \ Limited
\"\"

Edie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n\n
With: Sheila Hancock, + Kevin Guthrie, Paul Brannigan, Amy Manson
1 + hr 42 min
Music + Box Films\n \n + \ Limited
\"\"

Linda Ronstadt: The + Sound of My Voice

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Music\n + \ \n\n
With: + Linda Ronstadt, Bonnie Raitt, Dolly Parton, Emmylou Harris
1 hr 35 min
Greenwich + Entertainment\n \n + \ Limited
\"\"

I'm Leaving Now

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Felipe Hern\xE1ndez
1 hr 14 min
The + Cinema Guild\n \n + \ Limited
\"\"

Ms. Purple

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Courtney Bandeko, Octavio Pisano, Jake + Choi, Waymond Lee
1 hr 27 min
Oscilloscope\n \n + \ Limited
\"\"

Mr. Klein

Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n Mystery\n \n Thriller\n + \ \n War\n \n\n
With: Alain Delon, Jeanne Moreau, Francine Berg\xE9, + Juliet Berto
2 hr 3 min
Rialto + Pictures\n \n + \ Limited
\"\"

Balloon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n History\n \n Thriller\n \n\n
With: Friedrich + M\xFCcke, Karoline Schuch, David Kross, Alicia von Rittberg
2 hr 5 min
Distrib + Films\n \n + \ Limited
September + 7, 2019
\"\"

Pl\xE1cido Domingo + Gala

With: + Pl\xE1cido Domingo, Anna Picozzi
2 + hr
Fathom + Events\n \n + \ Limited
September + 10, 2019
\"\"
Fathom + Events\n \n + \ Limited
September + 11, 2019
\"\"

You Are Here: A Come + From Away Story

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Beverley Bass, Reg Batson, Beulah Cooper, + Diane Davis
1 hr 24 min
Fathom + Events\n \n + \ Wide
September + 12, 2019
\"\"

Blink of an Eye

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Sport\n \n\n
With: Michael Waltrip, + Darrell Waltrip, Richard Petty, Richard Childress
1 hr 28 min
Fathom + Events\n \n + \ Limited
September + 13, 2019
\"\"

Hustlers

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Crime\n \n Drama\n \n\n
With: Constance + Wu, Jennifer Lopez, Julia Stiles, Mette Narrative
1 hr 50 min
STX + Entertainment\n \n + \ Wide
\"\"

The Goldfinch

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Oakes Fegley, Ansel Elgort, Nicole Kidman, + Jeffrey Wright
2 hr 29 min
Warner + Bros.\n \n + \ Wide
\"\"

Freaks

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Mystery\n \n Sci-Fi\n \n Thriller\n + \ \n\n
With: + Emile Hirsch, Bruce Dern, Grace Park, Amanda Crew
1 hr 45 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Out of Liberty

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Western\n \n\n
With: Cate Allen, Corbin + Allred, Larry Bagby, Casey Elliott
1 + hr 51 min
Purdie + Distribution\n \n + \ Limited
\"\"

Fagara

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Kenny Bee, Sammi + Cheng, Lo Chun Yip, Richie Jen
1 + hr 58 min
China + Lion Film Distribution\n \n + \ Limited
\"\"

Monos

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Thriller\n \n\n
With: Sofia + Buenaventura, Juli\xE1n Giraldo, Karen Quintero, Laura Castrill\xF3n
1 hr 42 min
Neon\n \n + \ Limited
\"\"

Brittany Runs a Marathon

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n\n
With: Jillian Bell, Jennifer + Dundas, Patch Darragh, Alice Lee
1 + hr 44 min
Amazon + Studios\n \n + \ Wide
\"\"

Chasing Einstein

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Elena Aprile, Barry Barish, Laura Baudis, + James Beacham
1 hr 22 min
Atlas + Distribution Company\n \n + \ Limited
\"\"

Desolation Center

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Anthony Ausgang, Joe Baiza, Bob Bert, D. + Boon
1 hr 33 min
Matson + Films\n \n + \ Limited
\"\"

The Sound of Silence

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Peter Sarsgaard, Rashida Jones, Tony Revolori, + Austin Pendleton
1 hr 28 min
IFC + Films\n \n + \ Limited
\"\"

One Cut of the Dead

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Horror\n \n\n
With: Takayuki + Hamatsu, Yuzuki Akiyama, Harumi Shuhama, Kazuaki Nagaya
1 hr 36 min
Variance + Films\n \n + \ Limited
\"\"

Chained for Life

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Jess Weixler, Adam Pearson, Stephen Plunkett, + Charlie Korsmo
1 hr 31 min
Kino + International\n \n + \ Limited
\"\"

Another Day of Life

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Animation\n \n Biography\n \n\n
With: Artur Queiroz, Luis + Alberto Ferreira, Carlota Machado, Joaquim Ant\xF3nio Lopes Farrusco
1 hr 25 min
GKIDS\n \n + \ Limited
\"\"

Cracked Up

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Darrell Hammond, Larry Laskowski, Lorne + Michaels, Steve Higgins
1 hr + 35 min
Abramorama\n \n + \ Limited
\"\"

Imprisoned

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Thriller\n \n\n
With: Laurence Fishburne, + Edward James Olmos, John Heard, Esai Morales
1 + hr 44 min
Cinema + Libre Studio\n \n + \ Limited
\"\"

Moonlight Sonata: + Deafness in Three Movements

\n\n\n\n\n\n\n\n\n\n\n\n \n Documentary\n + \ \n\n
With: + Irene Taylor
1 hr 30 min
Abramorama\n \n + \ Limited
\"\"

Depraved

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Horror\n \n Thriller\n \n\n
With: David + Call, Joshua Leonard, Alex Breaux, Ana Cruz Kayne
1 hr 54 min
IFC + Films\n \n + \ Limited
\"\"

Liam Gallagher: As + It Was

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n Music\n \n\n
With: Liam Gallagher, + David Adcock, Paul Arthurs, Gene Gallagher
1 + hr 25 min
Screen + Media Films\n \n + \ Limited
\"\"

Section 375

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n Mystery\n \n Thriller\n + \ \n\n
With: + Akshaye Khanna, Richa Chadha, Rahul Bhatt, Meera Chopra
2 hr 4 min
Reliance + Big Pictures\n \n + \ Limited
September + 15, 2019
\"\"

Star Trek: The Motion + Picture

2019 Re-release
\n\n\n\n\n\n\n\n\n\n\n\n \n Adventure\n \n + \ Mystery\n \n Sci-Fi\n \n\n
With: William Shatner, + Leonard Nimoy, DeForest Kelley, James Doohan
2 + hr 12 min
Fathom + Events\n \n + \ Wide
\"\"

El Norte

2019 + Re-release
\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n\n
With: Zaide Silvia Guti\xE9rrez, + David Villalpando, Ernesto G\xF3mez Cruz, Alicia del Lago
2 hr 21 min
Fathom + Events\n \n + \ Limited
September + 16, 2019
\"\"

3 from Hell

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Horror\n \n\n
With: Sheri Moon Zombie, + Bill Moseley, Sid Haig, Jeff Daniel Phillips
1 + hr 55 min
Saban + Films\n \n + \ Wide
\"\"

The Game Changers

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: James Wilks, Arnold Schwarzenegger, Patrik + Baboumian, Dotsie Bausch
1 hr + 26 min
Fathom + Events\n \n + \ Wide
September + 17, 2019
\"\"

Promare

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Adventure\n \n Animation\n \n + \ Comedy\n \n Drama\n \n Fantasy\n \n Sci-Fi\n + \ \n Thriller\n \n\n
With: John Eric Bentley, Steve Blum, Johnny Yong + Bosch, Melissa Fahn
1 hr 51 min
GKIDS\n \n + \ Wide
September + 18, 2019
\"\"

Midnight Traveler

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n War\n \n\n
With: Hassan Fazili, Nargis + Fazili, Zahra Fazili, Fatima Hossaini
1 + hr 28 min
Oscilloscope\n \n + \ Limited
September + 20, 2019
\"\"

Rambo: Last Blood

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Sylvester + Stallone, Paz Vega, Sergio Peris-Mencheta, Adriana Barraza
1 hr 29 min
Lionsgate\n \n + \ Wide
\"\"

Ad Astra

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Adventure\n \n Drama\n \n Mystery\n \n + \ Sci-Fi\n \n Thriller\n \n\nIMAX
With: Brad Pitt, Tommy + Lee Jones, Ruth Negga, Donald Sutherland
2 + hr 3 min
Twentieth + Century Fox\n \n + \ Wide
\"\"

Downton Abbey

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n Romance\n \n\n
With: Stephen Campbell + Moore, Michael Fox, Lesley Nicol, Sophie McShera
2 hr 2 min
Focus + Features\n \n + \ Wide
\"\"

The Zoya Factor

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Romance\n \n Sport\n + \ \n\n
With: + Sonam Kapoor, Dulquer Salmaan, Sanjay Kapoor, Shoaib Ahmed
2 hr 14 min
FIP\n \n + \ Limited
\"\"

Prassthanam

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Drama\n \n\n
With: Sanjay Dutt, Jackie + Shroff, Ali Fazal, Manisha Koirala
2 + hr 21 min
-Limited
\"\"

Tazza: One-Eyed Jack

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Crime\n \n Drama\n \n Thriller\n \n\n
With: Jeong + Min Park, Seung-beom Ryu, Yu-hwa Choi, Woo Hyeon
2 hr 19 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

Midnight Diner

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Drama\n \n\n
With: Tony Ka Fai Leung, Tony Yo-ning Yang, Tao + Liu, Yibai Zhang
1 hr 43 min
Well + Go USA Entertainment\n \n + \ Limited
\"\"

The Bad Guys: The + Movie

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Action\n \n Crime\n \n Thriller\n \n\n
With: Ma + Dong-seok, Sang-Jung Kim, Kim Ah-jung, Jang Ki-Yong
1 hr 54 min
CJ + Entertainment\n \n + \ Limited
\"\"

Where's My Roy Cohn?

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Roy M. Cohn, Ken Auletta, Marie Brenner, + Robert Cohen
1 hr 37 min
Sony + Pictures Classics\n \n + \ Limited
\"\"

Britt-Marie Was Here

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Comedy\n \n Drama\n \n Sport\n \n\n
With: Pernilla + August, Peter Haber, Anders Mossling, Malin Levanon
1 hr 37 min
Cohen + Media Group\n \n + \ Limited
\"\"

Loro

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Drama\n \n\n
With: Toni Servillo, Elena + Sofia Ricci, Riccardo Scamarcio, Kasia Smutniak
2 hr 31 min
IFC + Films\n \n + \ Limited
\"\"

Fantastic Fungi

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Documentary\n \n\n
With: Brie Larson, Andrew Weil, Giuliana Furci, + Paul Stamets
1 hr 21 min
Area + 23a\n \n + \ Limited
\"\"

Diego Maradona

\n\n\n\n\n\n\n\n\n\n\n\n + \ \n Biography\n \n Documentary\n \n Sport\n + \ \n\n
With: + Diego Maradona, Dalma Maradona, Pel\xE9, Corrado Ferlaino
2 hr 10 min
Home + Box Office (HBO)\n \n + \ Limited
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 18 Jul 2022 20:10:36 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=130-1613423-4269563; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - NYRSS2AYVESEKS5F7TEF + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/rl1107461633.yaml b/tests/fixtures/vcr_cassettes/rl1107461633.yaml new file mode 100644 index 0000000..a092ded --- /dev/null +++ b/tests/fixtures/vcr_cassettes/rl1107461633.yaml @@ -0,0 +1,2276 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/release/rl1107461633 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Mon, 11 Jul 2022 02:45:44 GMT + Location: + - /release/rl1107461633/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=136-0682815-0112158; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 3YSSNFF4JA36H0PHKE0B + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/release/rl1107461633/ + response: + body: + string: "\n\n\n\n\n\n \n It + Chapter Two - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \
\"\"

It Chapter Two

Twenty-seven + years after their first encounter with the terrifying Pennywise, the Losers + Club have grown up and moved away, until a devastating phone call brings them + back.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n \n\n\n + \
\n Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\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 Grosses\n

\n + \ \n \n \n \n \n + \ \n
\n + \ \n \n + \ \n Domestic (44.7%)\n \n \n + \ \n \n
\n + \ \n \n + \ \n $211,593,228\n + \ \n \n \n + \ \n
\n \n \n + \ \n \n \n \n + \
\n \n \n \n + \ \n International (55.3%)\n + \ \n \n \n + \
\n \n \n \n \n + \ $261,500,000\n \n \n + \ \n
\n \n \n + \ \n \n
\n \n \n + \ \n \n Worldwide\n + \ \n \n \n + \
\n \n \n \n \n + \ $473,093,228\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 Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\n \n \n \n \n + \ \n
\n\n
\n + \ Summary Details\n
Opening$91,062,152
4,570\n theaters
Budget$79,000,000
Release DateSep 6, 2019\n -\n + \ Dec + 5, 2019
MPAAR
Running Time2 hr 49 + min
GenresDrama\n + \ \n Fantasy\n \n Horror
In Release119 days/17 weeks
Widest Release4,570 + theaters
\n
\n\n
DateDOW\n RankDaily\n %\xB1 YD\n %\xB1 LW\n TheatersAvgTo + DateDay\n
Sep + 6Friday1$37,043,656--4,570$8,105$37,043,6561false
Sep + 7Saturday1$33,627,227-9.2%-4,570$7,358$70,670,8832false
Sep + 8Sunday1$20,391,269-39.4%-4,570$4,461$91,062,1523false
Sep + 9Monday1$5,478,405-73.1%-4,570$1,198$96,540,5574false
Sep + 10Tuesday1$8,006,196+46.1%-4,570$1,751$104,546,7535false
Sep 11Wednesday1$4,521,469-43.5%-4,570$989$109,068,2226false
Sep + 12Thursday1$4,000,302-11.5%-4,570$875$113,068,5247false
Sep + 13Friday2$12,857,296+221.4%-65.3%4,570$2,813$125,925,8208false
Sep + 14Saturday1$17,300,571+34.6%-48.6%4,570$3,785$143,226,3919false
Sep + 15Sunday1$9,448,683-45.4%-53.7%4,570$2,067$152,675,07410false
Sep + 16Monday2$2,241,793-76.3%-59.1%4,570$490$154,916,86711false
Sep + 17Tuesday2$3,294,411+47%-58.9%4,570$720$158,211,27812false
Sep + 18Wednesday2$1,973,095-40.1%-56.4%4,570$431$160,184,37313false
Sep + 19Thursday2$1,736,190-12%-56.6%4,570$379$161,920,56314false
Sep + 20Friday5$4,840,361+178.8%-62.4%4,156$1,164$166,760,92415false
Sep + 21Saturday2$7,703,689+59.2%-55.5%4,156$1,853$174,464,61316false
Sep + 22Sunday4$4,462,428-42.1%-52.8%4,156$1,073$178,927,04117false
Sep + 23Monday5$1,123,714-74.8%-49.9%4,156$270$180,050,75518false
Sep + 24Tuesday5$1,549,473+37.9%-53%4,156$372$181,600,22819false
Sep + 25Wednesday5$972,271-37.3%-50.7%4,156$233$182,572,49920false
Sep + 26Thursday5$948,550-2.4%-45.4%4,156$228$183,521,04921false
Sep + 27Friday5$2,833,953+198.8%-41.5%3,611$784$186,355,00222false
Sep + 28Saturday4$4,679,034+65.1%-39.3%3,611$1,295$191,034,03623false
Sep + 29Sunday4$2,732,808-41.6%-38.8%3,611$756$193,766,84424false
Sep + 30Monday5$848,616-68.9%-24.5%3,611$235$194,615,46025false
Oct + 1Tuesday6$1,052,632+24%-32.1%3,611$291$195,668,09226false
Oct + 2Wednesday7$662,644-37%-31.8%3,611$183$196,330,73627false
Oct + 3Thursday5$519,421-21.6%-45.2%3,611$143$196,850,15728false
Oct + 4Friday5$1,452,708+179.7%-48.7%3,163$459$198,302,86529false
Oct + 5Saturday5$2,468,679+69.9%-47.2%3,163$780$200,771,54430false
Oct + 6Sunday5$1,396,142-43.4%-48.9%3,163$441$202,167,68631false
Oct + 7Monday6$393,326-71.8%-53.7%3,163$124$202,561,01232false
Oct + 8Tuesday7$589,193+49.8%-44%3,163$186$203,150,20533false
Oct + 9Wednesday7$419,214-28.8%-36.7%3,163$132$203,569,41934false
Oct + 10Thursday6$341,005-18.7%-34.3%3,163$107$203,910,42435false
Oct + 11Friday9$873,016+156%-39.9%2,303$379$204,783,44036false
Oct + 12Saturday7$1,364,778+56.3%-44.7%2,303$592$206,148,21837false
Oct + 13Sunday8$898,621-34.2%-35.6%2,303$390$207,046,83938false
Oct + 14
Indig. + Peoples' Day
Monday9$407,616-54.6%+3.6%2,303$176$207,454,45539false
Oct + 15Tuesday10$301,421-26.1%-48.8%2,302$130$207,755,87640false
Oct + 16Wednesday10$219,689-27.1%-47.6%2,302$95$207,975,56541false
Oct + 17Thursday10$178,953-18.5%-47.5%2,302$77$208,154,51842false
Oct + 18Friday11$400,917+124%-54.1%1,528$262$208,555,43543false
Oct + 19Saturday10$682,936+70.3%-50%1,528$446$209,238,37144false
Oct + 20Sunday10$369,889-45.8%-58.8%1,528$242$209,608,26045false
Oct + 21Monday11$114,491-69%-71.9%1,528$74$209,722,75146false
Oct + 22Tuesday11$155,657+36%-48.4%1,528$101$209,878,40847false
Oct + 23Wednesday12$105,373-32.3%-52%1,528$68$209,983,78148false
Oct + 24Thursday14$90,374-14.2%-49.5%1,528$59$210,074,15549false
Oct + 25Friday18$190,367+110.6%-52.5%1,528$124$210,264,52250false
Oct + 26Saturday17$324,511+70.5%-52.5%1,528$212$210,589,03351false
Oct + 27Sunday21$169,074-47.9%-54.3%1,528$110$210,758,10752false
Oct + 28Monday21$53,518-68.3%-53.3%1,528$35$210,811,62553false
Oct + 29Tuesday20$70,437+31.6%-54.7%1,528$46$210,882,06254false
Oct + 30Wednesday20$57,814-17.9%-45.1%1,528$37$210,939,87655false
Oct + 31
Halloween
Thursday14$111,186+92.3%+23%1,101$100$211,051,06256false
Nov + 1Friday21$63,109-43.2%-66.8%1,101$57$211,114,17157false
Nov + 2Saturday23$106,796+69.2%-67.1%1,101$96$211,220,96758false
Nov + 3Sunday22$57,382-46.3%-66.1%1,101$52$211,278,34959false
Nov + 4Monday24$17,782-69%-66.8%1,101$16$211,296,13160false
Nov + 5Tuesday23$23,902+34.4%-66.1%1,101$21$211,320,03361false
Nov + 6Wednesday25$16,003-33%-72.3%1,101$14$211,336,03662false
Nov + 7Thursday26$9,644-39.7%-91.3%1,101$8$211,345,68063false
Nov + 8Friday30$15,821+64.1%-74.9%126$125$211,361,50164false
Nov + 9Saturday28$27,434+73.4%-74.3%126$217$211,388,93565false
Nov + 10Sunday31$17,482-36.3%-69.5%126$138$211,406,41766false
Nov + 11Monday33$8,128-53.5%-54.3%126$64$211,414,54567false
Nov + 12Tuesday36$5,111-37.1%-78.6%126$40$211,419,65668false
Nov + 13Wednesday35$3,827-25.1%-76.1%126$30$211,423,48369false
Nov + 14Thursday36$3,402-11.1%-64.7%126$27$211,426,88570false
Nov + 15Friday30$14,127+315.3%-10.7%132$107$211,441,01271false
Nov + 16Saturday30$28,632+102.7%+4.4%132$216$211,469,64472false
Nov + 17Sunday33$16,602-42%-5%132$125$211,486,24673false
Nov + 18Monday35$4,357-73.8%-46.4%132$33$211,490,60374false
Nov + 19Tuesday34$5,129+17.7%+0.4%132$38$211,495,73275false
Nov + 20Wednesday33$4,702-8.3%+22.9%132$35$211,500,43476false
Nov + 21Thursday32$4,539-3.5%+33.4%132$34$211,504,97377false
Nov + 22Friday32$9,191+102.5%-34.9%105$87$211,514,16478false
Nov + 23Saturday31$17,560+91.1%-38.7%105$167$211,531,72479false
Nov + 24Sunday32$11,696-33.4%-29.6%105$111$211,543,42080false
Nov + 25Monday34$4,921-57.9%+12.9%105$46$211,548,34181false
Nov + 26Tuesday32$6,104+24%+19%105$58$211,554,44582false
Nov + 27Wednesday33$5,743-5.9%+22.1%93$61$211,560,18883false
Nov + 28
Thanksgiving
Thursday34$3,529-38.6%-22.3%93$37$211,563,71784false
Nov + 29Friday34$8,792+149.1%-4.3%72$122$211,572,50985false
Nov + 30Saturday34$10,235+16.4%-41.7%72$142$211,582,74486false
Dec + 1Sunday35$5,142-49.8%-56%72$71$211,587,88687false
Dec + 2Monday41$1,196-76.7%-75.7%72$16$211,589,08288false
Dec + 3Tuesday41$1,321+10.5%-78.4%72$18$211,590,40389false
Dec + 4Wednesday40$1,581+19.7%-72.5%72$21$211,591,98490false
Dec + 5Thursday41$1,244-21.3%-64.7%72$17$211,593,22891false
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 11 Jul 2022 02:45:44 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=136-4232416-7816155; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - RXVCGNRPF6KZR78G9M12 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/rl3562898177.yaml b/tests/fixtures/vcr_cassettes/rl3562898177.yaml new file mode 100644 index 0000000..728bc28 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/rl3562898177.yaml @@ -0,0 +1,939 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/release/rl3562898177 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Mon, 11 Jul 2022 02:49:25 GMT + Location: + - /release/rl3562898177/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=146-1925773-7334526; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 6T5WECVE1G25ETHQR7AC + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/release/rl3562898177/ + response: + body: + string: "\n\n\n\n\n\n \n Nope + - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \
\"\"

Nope

The residents + of a lonely gulch in inland California bear witness to an uncanny and chilling + discovery.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n
\n \n\n\n + \
\n Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\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 Grosses\n

\n + \ \n \n \n \n
\n \n + \ \n \n Domestic + \n \n \n \n + \ \n
\n \n \n \n + \ –\n \n \n + \ \n \n
\n + \ \n \n \n \n
\n \n + \ \n \n \n + \ International\n + \ \n \n \n + \
\n \n \n \n \n + \ \n + \ \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n \n + \ \n \n Worldwide\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 Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n \n \n \n \n + \ \n
\n\n
\n + \ Summary Details\n
DistributorUniversal Pictures
See + full company information\n \n + \
Release + DateJul + 22, 2022
MPAAR
Running Time2 hr 15 + min
GenresHorror\n + \ \n Mystery\n \n Sci-Fi\n \n Thriller
\n
\n There + is no data to display.\n
\n

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 11 Jul 2022 02:49:25 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=145-0523721-7936032; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - T1513SHVX0R2SKMSRA6D + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/summer-2018.yaml b/tests/fixtures/vcr_cassettes/summer-2018.yaml new file mode 100644 index 0000000..9e13b88 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/summer-2018.yaml @@ -0,0 +1,3721 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2018 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Wed, 13 Jul 2022 01:00:17 GMT + Location: + - /season/summer/2018/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=130-0623953-0020362; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - F8185X0AY1J361GBF7MN + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2018/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic Box Office For Summer 2018 - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Box Office For Summer + 2018

\n\n
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n

Summer 2018 is + May 4-September 1.

\n\n
RankRelease\n GrossTheatersTotal + GrossRelease + DateDistributor\n
1Incredibles 2---$603,113,5054,410$608,581,744Jun 15Walt + Disney Studios Motion Pictures\n \n + \ false
2Jurassic + World: Fallen Kingdom---$415,439,8554,485$417,719,760Jun 22Universal + Pictures\n \n + \ false
3Avengers: + Infinity War---$340,456,1634,474$678,815,482Apr 27Walt + Disney Studios Motion Pictures\n \n + \ false
4Deadpool + 2---$318,458,5624,349$318,491,426May 18Twentieth + Century Fox\n \n + \ false
5Ant-Man + and the Wasp---$214,203,2014,206$216,648,740Jul 6Walt + Disney Studios Motion Pictures\n \n + \ false
6Solo: + A Star Wars Story---$213,716,8694,381$213,767,512May 25Walt + Disney Studios Motion Pictures\n \n + \ false
7Mission: + Impossible - Fallout---$208,316,7674,395$220,159,104Jul 27Paramount + Pictures\n \n + \ false
8Hotel + Transylvania 3: Summer Vacation---$164,387,9974,267$167,510,016Jul 13Sony + Pictures Entertainment (SPE)\n \n + \ false
9Ocean's + Eight---$139,240,4614,145$140,218,711Jun 8Warner + Bros.\n \n + \ false
10The + Meg---$125,542,7744,118$145,443,742Aug 10Warner + Bros.\n \n + \ false
11Crazy + Rich Asians---$122,622,1653,865$174,532,921Aug 15Warner + Bros.\n \n + \ false
12Mamma + Mia! Here We Go Again---$118,469,3403,514$120,634,935Jul 20Universal + Pictures\n \n + \ false
13The + Equalizer 2---$101,086,7583,388$102,084,362Jul 20Sony + Pictures Entertainment (SPE)\n \n + \ false
14Christopher + Robin---$88,529,0903,602$99,215,042Aug 3Walt + Disney Studios Motion Pictures\n \n + \ false
15The + First Purge---$69,086,3253,038$69,488,745Jul 4Universal + Pictures\n \n + \ false
16Book + Club---$68,566,2963,169$68,566,296May 18Paramount + Pictures\n \n + \ false
17Skyscraper---$67,453,3703,822$68,420,120Jul 13Universal + Pictures\n \n + \ false
18Tag---$54,528,2513,382$54,730,625Jun 15Warner + Bros.\n \n + \ false
19Life + of the Party---$53,059,9113,656$53,059,911May 11Warner + Bros.\n \n + \ false
20Overboard---$50,316,1232,006$50,316,123May 4Pantelion + Films\n \n + \ false
21Sicario: + Day of the Soldado---$50,022,6633,055$50,072,235Jun 29Sony + Pictures Entertainment (SPE)\n \n + \ false
22Breaking + In---$46,840,5902,537$46,840,590May 11Universal + Pictures\n \n + \ false
23Hereditary---$44,069,4562,998$44,069,456Jun 8A24\n \n + \ false
24Uncle + Drew---$42,420,5892,742$42,469,946Jun 29Lionsgate\n \n + \ false
25BlacKkKlansman---$40,888,5301,914$49,275,340Aug 10Focus + Features\n \n + \ false
26A + Quiet Place---$35,729,9753,808$188,024,361Apr 6Paramount + Pictures\n \n + \ false
27Mile + 22---$33,905,1463,520$36,108,758Aug 17STX + Entertainment\n \n + \ false
28The + Spy Who Dumped Me---$33,219,7903,111$33,562,069Aug 3Lionsgate\n \n + \ false
29Adrift---$31,445,0123,015$31,445,012Jun 1STX + Entertainment\n \n + \ false
30Alpha---$29,942,5182,881$35,857,181Aug 17Studio + 8\n \n + \ false
31Teen + Titans GO! To the Movies---$28,889,0503,188$29,790,236Jul 27Warner + Bros.\n \n + \ false
32Slender + Man---$28,854,0822,358$30,569,484Aug 10Screen + Gems\n \n + \ false
33Won't + You Be My Neighbor?---$22,540,832893$22,835,787Jun 8Focus + Features\n \n + \ false
34Rampage---$20,863,9234,115$101,028,233Apr 13Warner + Bros.\n \n + \ false
35SuperFly---$20,545,1162,220$20,545,116Jun 13Sony + Pictures Entertainment (SPE)\n \n + \ false
36The + Happytime Murders---$18,945,4273,256$20,706,452Aug 24STX + Entertainment\n \n + \ false
37Show + Dogs---$17,841,6973,212$17,857,020May 18-false
38Sorry + to Bother You---$17,163,9841,050$17,493,096Jul 6Annapurna + Pictures\n \n + \ false
39I + Feel Pretty---$15,897,3183,440$48,795,601Apr 20STX + Entertainment\n \n + \ false
40RBG---$13,972,582432$14,017,361May 4Magnolia + Pictures\n \n + \ false
41Eighth + Grade---$13,099,6481,084$13,539,709Jul 13A24\n \n + \ false
42The + Darkest Minds---$12,584,8093,127$12,695,691Aug 3Twentieth + Century Fox\n \n + \ false
43Upgrade---$11,977,1301,458$11,977,130Jun 1BH + Tilt\n \n + \ false
44Three + Identical Strangers---$11,757,946433$12,320,845Jun 29Neon\n \n + \ false
45Operation + Finale---$11,064,4461,818$17,612,099Aug 29Metro-Goldwyn-Mayer + (MGM)\n \n + \ false
46Black + Panther---$10,078,9514,084$700,059,566Feb 16Walt + Disney Studios Motion Pictures\n \n + \ false
47Searching---$9,796,1302,009$26,020,957Aug 24Screen + Gems\n \n + \ false
48Tully---$9,369,7551,356$9,369,755May 4Focus + Features\n \n + \ false
49Unfriended: + Dark Web---$8,866,7451,547$8,866,745Jul 20BH + Tilt\n \n + \ false
50Sanju---$7,909,317359$7,909,317Jun 29FIP\n \n + \ false
51Super + Troopers 2---$6,986,6952,125$30,617,396Apr 20Twentieth + Century Fox\n \n + \ false
52Dog + Days---$6,731,8882,442$6,809,080Aug 8LD + Entertainment\n \n + \ false
53Hotel + Artemis---$6,708,1472,407$6,708,147Jun 8-false
54Ready + Player One---$5,945,6684,234$137,690,172Mar 29Warner + Bros.\n \n + \ false
55A-X-L---$5,938,7681,710$6,501,381Aug 24-false
56Leave + No Trace---$5,876,727361$6,046,104Jun 29Bleecker + Street Media\n \n + \ false
57Death + of a Nation---$5,843,4181,005$5,885,881Aug 3-false
58Blockers---$5,839,9953,418$60,311,495Apr 6Universal + Pictures\n \n + \ false
59A + Wrinkle in Time---$5,393,0273,980$100,478,608Mar 9Walt + Disney Studios Motion Pictures\n \n + \ false
60Truth + or Dare---$5,060,6553,068$41,411,015Apr 13Universal + Pictures\n \n + \ false
61Action + Point---$5,059,6082,032$5,059,608Jun 1Paramount + Pictures\n \n + \ false
62Pandas---$4,886,91935$7,574,012Apr 6Warner + Bros.\n \n + \ false
63Kin---$4,513,6112,141$5,718,096Aug 31Lionsgate\n \n + \ false
64Isle + of Dogs---$4,352,1851,947$32,015,231Mar 23Fox + Searchlight Pictures\n \n + \ false
65Gotti---$4,343,227503$4,343,227Jun 15Vertical + Entertainment\n \n + \ false
66Blindspotting---$4,276,425523$4,333,394Jul 20Lionsgate\n \n + \ false
67First + Reformed---$3,448,256334$3,448,256May 18A24\n \n + \ false
68Bad + Samaritan---$3,435,0472,007$3,435,047May 4Electric + Entertainment\n \n + \ false
692001: + A Space Odyssey
2018 Re-release
---$3,236,32113$3,236,321May 18Warner + Bros.\n \n + \ false
70Disobedience---$3,170,409247$3,498,782Apr 27Bleecker + Street Media\n \n + \ false
71Whitney---$3,021,098451$3,026,351Jul 6Roadside + Attractions\n \n + \ false
72American + Animals---$2,856,954339$2,856,954Jun 1The + Orchard\n \n + \ false
73Ya + veremos---$2,545,037369$4,165,949Aug 31Pantelion + Films\n \n + \ false
74Sherlock + Gnomes---$2,422,9833,662$43,242,871Mar 23Paramount + Pictures\n \n + \ false
75Hearts + Beat Loud---$2,386,251170$2,386,251Jun 8Gunpowder + & Sky\n \n + \ false
761991---$2,228,54383$2,342,264Jul 27Entertainment + One\n \n + \ false
77Papillon---$2,226,025544$2,335,896Aug 24Bleecker + Street Media\n \n + \ false
78The + Fall of the American Empire---$2,033,38373$2,178,460Jun 29Entertainment + One\n \n + \ false
79I + Can Only Imagine---$2,013,4852,894$83,482,352Mar 16Roadside + Attractions\n \n + \ false
80The + Rider---$1,957,091224$2,419,031Apr 13Sony + Pictures Classics\n \n + \ false
81Pope + Francis: A Man of His Word---$1,928,560385$2,008,385May 18Focus + Features\n \n + \ false
82Juliet, + Naked---$1,787,463467$3,444,895Aug 17Roadside + Attractions\n \n + \ false
83Traffik---$1,721,5961,046$9,186,156Apr 20Lionsgate\n \n + \ false
84Puzzle---$1,700,595265$2,032,018Jul 27Sony + Pictures Classics\n \n + \ false
85Race + 3---$1,690,861314$1,690,861Jun 15Yash + Raj Films\n \n + \ false
86Don't + Worry, He Won't Get Far on Foot---$1,435,714266$1,441,705Jul 13Amazon + Studios\n \n + \ false
87Princess + Mononoke
2018 Re-release
---$1,423,877754$1,423,877Jul 22Fathom + Events\n \n + \ false
88Made + for More---$1,409,884703$2,999,134Aug 2Fathom + Events\n \n + \ false
89102 + Not Out---$1,343,797102$1,343,797May 4Sony + Pictures Entertainment (SPE)\n \n + \ false
90The + Wife---$1,324,287541$9,601,092Aug 17Sony + Pictures Classics\n \n + \ false
91Tomb + Raider---$1,315,2923,854$58,250,803Mar 16Warner + Bros.\n \n + \ false
92The + Seagull---$1,252,960211$1,252,960May 11Sony + Pictures Classics\n \n + \ false
93Chappaquiddick---$1,228,1311,645$17,395,520Apr 6Entertainment + Studios Motion Pictures\n \n + \ false
94An + Interview with God---$1,201,434944$1,201,434Aug 20Fathom + Events\n \n + \ false
95McQueen---$1,188,01595$1,257,275Jul 20Bleecker + Street Media\n \n + \ false
96Along + With the Gods: The Last 49 Days---$1,179,42348$1,200,246Aug 1Well + Go USA Entertainment\n \n + \ false
97Beautifully + Broken---$1,149,974651$1,209,645Aug 24ArtAffects + Entertainment\n \n + \ false
98Sgt. + Stubby: An American Hero---$1,072,7711,633$4,015,935Apr 13-false
99Acrimony---$1,060,8052,006$43,549,096Mar 30Lionsgate\n \n + \ false
100A + Beautiful Planet---$1,024,948155$15,650,615Apr 29IMAX\n \n + \ false
101Nothing + to Lose---$1,016,18869$1,016,188May 11-false
102Elvis: + The Comeback Special---$1,010,657725$1,010,657Aug 16Fathom + Events\n \n + \ false
103Yellow + Submarine---$959,748188$992,305Jul 8Abramorama\n \n + \ false
104Pacific + Rim: Uprising---$889,7903,708$59,874,525Mar 23Universal + Pictures\n \n + \ false
105Little + Italy---$878,140133$990,230Aug 24Entertainment + One\n \n + \ false
106BANDSTAND: + The Broadway Musical on Screen---$839,554720$839,554Jun 25Fathom + Events\n \n + \ false
107Let + the Sunshine In---$835,40567$892,421Apr 27IFC + Films\n \n + \ false
108The + Miseducation of Cameron Post---$803,03385$904,703Aug 3FilmRise\n \n + \ false
109Beast---$800,36593$800,365May 11Roadside + Attractions\n \n + \ false
110The + Cakemaker---$795,61234$875,751Jun 29Strand + Releasing\n \n + \ false
111How + Long Will I Love U---$746,93332$746,933May 25Well + Go USA Entertainment\n \n + \ false
112On + Chesil Beach---$745,971203$745,971May 18Bleecker + Street Media\n \n + \ false
113The + Death of Stalin---$738,936548$8,047,856Mar 9IFC + Films\n \n + \ false
114The + Catcher Was a Spy---$725,22352$725,223Jun 22IFC + Films\n \n + \ false
115Boundaries---$703,438224$703,438Jun 22Sony + Pictures Classics\n \n + \ false
116Game + Night---$701,2893,502$69,179,066Feb 23Warner + Bros.\n \n + \ false
117The + Miracle Season---$678,9731,707$10,230,620Apr 6-false
118The + Island---$664,82940$670,883Aug 10Well + Go USA Entertainment\n \n + \ false
119Peter + Rabbit---$628,0813,725$115,253,424Feb 9Sony + Pictures Entertainment (SPE)\n \n + \ false
120The + Greatest Showman---$619,6603,342$174,340,174Dec 20Twentieth + Century Fox\n \n + \ false
121The + Little Stranger---$613,058477$713,143Aug 31Focus + Features\n \n + \ false
122DCI + 2019: Big, Loud & Live 16---$603,320639$603,320Aug 9Fathom + Events\n \n + \ false
123The + Big Lebowski
2018 Re-release
---$582,585658$582,585Aug 5Fathom + Events\n \n + \ false
124You + Were Never Really Here---$543,128233$2,528,078Apr 6Amazon + Studios\n \n + \ false
125Fireworks---$525,280510$525,280Jul 3GKIDS\n \n + \ false
126Grave + of the Fireflies---$516,962746$516,962Aug 12Fathom + Events\n \n + \ false
127The + Sandlot
2018 Re-release
---$516,130438$516,130Jul 22Fathom + Events\n \n + \ false
128The + Bookshop---$515,378136$1,588,150Aug 24Greenwich + Entertainment\n \n + \ false
129Puffs: + Filmed Live Off Broadway---$464,483687$464,483May 9Fathom + Events\n \n + \ false
130The + Spy Gone North---$462,96931$500,803Aug 10CJ + Entertainment\n \n + \ false
131South + Pacific
2018 Re-release
---$458,000718$458,000Aug 26Fathom + Events\n \n + \ false
132Porco + Rosso
2018 Re-release
---$443,059755$443,059May 20Fathom + Events\n \n + \ false
133DCI + 2018 Tour Premeire---$434,008479$434,008Jun 21Fathom + Events\n \n + \ false
134Scotty + and the Secret History of Hollywood---$427,06134$461,689Jul 27Greenwich + Entertainment\n \n + \ false
135The + Gospel According to Andr\xE9---$400,71336$400,713May 25Magnolia + Pictures\n \n + \ false
136West + Side Story
2018 Re-release
---$398,670616$398,670Jun 24Fathom + Events\n \n + \ false
137Space + Mutiny---$397,887725$397,887Jun 14Fathom + Events\n \n + \ false
138Krull
2018 + Re-release
---$397,157638$397,157Aug 23Fathom + Events\n \n + \ false
139Soorma---$390,07750$390,077Jul 13Sony + Pictures Entertainment (SPE)\n \n + \ false
140The + Night Is Short, Walk on Girl---$385,423415$406,490Aug 21GKIDS\n \n + \ false
141Lean + on Pete---$378,115187$1,163,056Apr 6A24\n \n + \ false
142Attack + on Titan: Smoke Signal---$377,334173$377,334Jul 10FUNimation + Entertainment\n \n + \ false
143Pom + Poko
2018 Re-release
---$372,405758$372,405Jun 17Fathom + Events\n \n + \ false
144Believer---$365,63932$365,639Jun 8Well + Go USA Entertainment\n \n + \ false
145Mountain---$365,41235$365,412May 11Greenwich + Entertainment\n \n + \ false
146Beirut---$348,519755$5,019,226Apr 11Bleecker + Street Media\n \n + \ false
147Sailor + Moon R: The Movie: The Promise of the Rose/Sailor Moon S: The Movie - Hearts + in Ice
Double Bill
---$335,697621$335,697Jul 28Fathom + Events\n \n + \ false
148Damsel---$305,13642$305,136Jun 22Magnolia + Pictures\n \n + \ false
149Sunset + Blvd.
2018 Re-release
---$299,645666$299,645May 13Fathom + Events\n \n + \ false
150Andy + Irons: Kissed by God---$285,933495$285,933May 25Fathom + Events\n \n + \ false
151Disney's + Newsies: The Broadway Musical!
2018 Re-release
---$282,429647$282,429Jul 26Fathom + Events\n \n + \ false
152Love, + Simon---$277,7252,434$40,826,341Mar 16Twentieth + Century Fox\n \n + \ false
153The + Leisure Seeker---$264,746353$3,226,443Dec 15Sony + Pictures Classics\n \n + \ false
1541945---$264,74319$1,006,193Nov 1Menemsha + Films\n \n + \ false
155Doctor + Who---$264,629780$264,629Jun 11Fathom + Events\n \n + \ false
156The + Grateful Dead Meet-Up 2018---$264,475504$600,554Apr 4Fathom + Events\n \n + \ false
157Detective + Dee: The Four Heavenly Kings---$262,96331$262,963Jul 27Well + Go USA Entertainment\n \n + \ false
158Across + the Universe
2018 Re-release
---$258,618439$258,618Jul 29Fathom + Events\n \n + \ false
159Big
2018 + Re-release
---$258,507722$258,507Jul 15Fathom + Events\n \n + \ false
160The + King---$254,93945$259,291Jun 22Oscilloscope\n \n + \ false
161Generation + Wealth---$234,93345$237,709Jul 20Magnolia + Pictures\n \n + \ false
162Bish\xF4jo + senshi Sailor Moon Super S Special---$231,434580$231,434Aug 4Fathom + Events\n \n + \ false
163We + the Animals---$230,34248$400,961Aug 17The + Orchard\n \n + \ false
164Jumanji: + Welcome to the Jungle---$229,6793,849$404,515,480Dec 20Sony + Pictures Entertainment (SPE)\n \n + \ false
165Perfect + Blue
2017 Re-release
---$222,139491$446,062Sep 7GKIDS\n \n + \ false
166Paul, + Apostle of Christ---$218,8061,473$17,560,475Mar 23Affirm + Films\n \n + \ false
167The + Producers
2018 Re-release
---$216,807664$216,807Jun 3Fathom + Events\n \n + \ false
168Skate + Kitchen---$213,03434$236,799Aug 10Magnolia + Pictures\n \n + \ false
169Itzhak---$204,10535$607,290Mar 9Greenwich + Entertainment\n \n + \ false
170A + Bag of Marbles---$203,38216$411,318Mar 23Gaumont + British Picture Corporation\n \n + \ false
171The + Strangers: Prey at Night---$202,4572,464$24,586,708Mar 9Aviron + Pictures\n \n + \ false
172The + Bolshoi Ballet: Live From Moscow - Copp\xE9lia---$202,217360$202,217Jun 10Fathom + Events\n \n + \ false
173Finding + Your Feet---$200,335277$1,418,682Mar 30Roadside + Attractions\n \n + \ false
174Gauguin: + Voyage to Tahiti---$200,14014$200,140Jul 11Cohen + Media Group\n \n + \ false
175Have + It All -The Movie---$197,142640$197,142Aug 7-false
176Fate/Stay + Night: Heaven's Feel - I. Presage Flower---$193,833245$193,833Jun 5Fathom + Events\n \n + \ false
177Blaze---$192,62288$704,955Aug 17IFC + Films\n \n + \ false
178Dark + Money---$189,61620$217,932Jul 13PBS + Distribution\n \n + \ false
179Summer + 1993---$183,57019$185,903May 25Oscilloscope\n \n + \ false
180Maquia: + When the Promised Flower Blooms---$183,008221$185,699Jul 20Eleven + Arts\n \n + \ false
181Karwaan---$182,00958$182,009Aug 3-false
182The + Accidental Detective 2: In Action---$179,04511$179,045Jun 22CJ + Entertainment\n \n + \ false
183BuyBust---$178,47125$178,471Aug 10Well + Go USA Entertainment\n \n + \ false
184The + Guardians---$174,32510$177,331May 4Music + Box Films\n \n + \ false
185Always + at The Carlyle---$174,25123$174,251May 11Good + Deed Entertainment\n \n + \ false
186The + Metropolitan Opera HD Live: Puccini: Turandot---$172,627356$172,627Jul 18Fathom + Events\n \n + \ false
187Boom + for Real: The Late Teenage Years of Jean-Michel Basquiat---$166,61614$166,616May 11Magnolia + Pictures\n \n + \ false
188Hubble---$166,374151$52,522,904Mar 19Warner + Bros.\n \n + \ false
189National + Theatre Live: The Curious Incident of the Dog in the Night-Time
2018 Re-release
---$160,381483$160,381Jun 12Fathom + Events\n \n + \ false
190Grace + Jones: Bloodlight and Bami---$157,88336$375,208Apr 13Kino + Lorber\n \n + \ false
191Under + the Sea 3D---$152,819108$36,262,926Feb 13Warner + Bros.\n \n + \ false
192Suicide + the Ripple Effect---$152,08725$347,468Feb 23GathrFilms\n \n + \ false
193Eating + Animals---$149,61425$149,614Jun 15IFC + Films\n \n + \ false
194Far + From the Tree---$147,50322$166,018Jul 20IFC + Films\n \n + \ false
195The + Little Mermaid---$147,17582$147,175Aug 17Conglomerate + Media\n \n + \ false
196Son + of Bigfoot---$145,45430$289,308Mar 30Viva + Pictures\n \n + \ false
197Best + F(r)iends Volume Two---$141,524544$141,524Jun 1Fathom + Events\n \n + \ false
198Red + Sparrow---$134,9983,064$46,874,505Mar 2Twentieth + Century Fox\n \n + \ false
199Madeline's + Madeline---$131,92633$185,576Aug 10Oscilloscope\n \n + \ false
200Rudy
2018 + Re-release
---$131,200656$131,200Aug 28Fathom + Events\n \n + \ false
\n

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Wed, 13 Jul 2022 01:00:18 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=133-7005556-8948629; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 6FM5AG1S2PJXS45H9QRE + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/summer-2019.yaml b/tests/fixtures/vcr_cassettes/summer-2019.yaml new file mode 100644 index 0000000..8802f1b --- /dev/null +++ b/tests/fixtures/vcr_cassettes/summer-2019.yaml @@ -0,0 +1,3721 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2019 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Wed, 13 Jul 2022 01:00:16 GMT + Location: + - /season/summer/2019/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=144-1700320-7130066; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - WHXR4SZKH1BYJ19FYW97 + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2019/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic + Box Office For Summer 2019 - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Box Office For Summer + 2019

\n\n
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n

Summer 2019 is + May 3-August 31.

\n\n
RankRelease\n GrossTheatersTotal + GrossRelease + DateDistributor\n
1The Lion King---$524,913,4394,802$543,638,043Jul 19Walt + Disney Studios Motion Pictures\n \n + \ false
2Toy + Story 4---$431,263,2694,575$434,038,008Jun 21Walt + Disney Studios Motion Pictures\n \n + \ false
3Spider-Man: + Far from Home---$386,882,8464,634$390,532,085Jul 2Sony + Pictures Entertainment (SPE)\n \n + \ false
4Avengers: + Endgame---$384,459,0474,662$858,373,000Apr 26Walt + Disney Studios Motion Pictures\n \n + \ false
5Aladdin---$354,540,9994,476$355,559,216May 24Walt + Disney Studios Motion Pictures\n \n + \ false
6John + Wick: Chapter 3 - Parabellum---$170,949,3783,850$171,015,687May 17Lionsgate\n \n + \ false
7Fast + & Furious Presents: Hobbs & Shaw---$160,532,1454,344$173,956,935Aug 2Universal + Pictures\n \n + \ false
8The + Secret Life of Pets 2---$157,058,0154,564$158,874,395Jun 7Universal + Pictures\n \n + \ false
9Pok\xE9mon: + Detective Pikachu---$144,105,3464,248$144,105,346May 10Warner + Bros.\n \n + \ false
10Once + Upon a Time... In Hollywood---$132,202,2823,659$142,502,728Jul 26Sony + Pictures Entertainment (SPE)\n \n + \ false
11Godzilla: + King of the Monsters---$110,500,1384,108$110,500,138May 31Warner + Bros.\n \n + \ false
12Rocketman---$96,368,1603,610$96,368,160May 31Paramount + Pictures\n \n + \ false
13Men + in Black: International---$79,759,3004,224$80,001,807Jun 14Sony + Pictures Entertainment (SPE)\n \n + \ false
14Yesterday---$73,286,6502,755$73,286,650Jun 28Universal + Pictures\n \n + \ false
15Annabelle + Comes Home---$72,800,9763,613$74,152,591Jun 26Warner + Bros.\n \n + \ false
16X-Men: + Dark Phoenix---$65,845,9743,721$65,845,974Jun 7Twentieth + Century Fox\n \n + \ false
17Good + Boys---$61,459,7003,458$83,140,306Aug 16Universal + Pictures\n \n + \ false
18Scary + Stories to Tell in the Dark---$59,825,7343,135$68,947,075Aug 9Lionsgate\n \n + \ false
19Dora + and the Lost City of Gold---$51,989,1503,735$60,477,943Aug 9Paramount + Pictures\n \n + \ false
20Angel + Has Fallen---$47,460,5013,336$69,030,436Aug 23Lionsgate\n \n + \ false
21Ma---$45,373,1202,816$45,896,028May 31Universal + Pictures\n \n + \ false
22Crawl---$39,014,1933,170$39,014,193Jul 12Paramount + Pictures\n \n + \ false
23The + Angry Birds Movie 2---$36,377,8943,869$41,667,116Aug 13Sony + Pictures Entertainment (SPE)\n \n + \ false
24The + Intruder---$35,419,1222,231$35,419,122May 3Screen + Gems\n \n + \ false
25The + Hustle---$35,417,0383,077$35,417,038May 10United + Artists Releasing\n \n + \ false
26Long + Shot---$30,316,2713,230$30,316,271May 3Lionsgate\n \n + \ false
27Child's + Play---$29,208,4033,007$29,208,403Jun 21United + Artists Releasing\n \n + \ false
28Midsommar---$27,096,6562,707$27,426,361Jul 3A24\n \n + \ false
29The + Art of Racing in the Rain---$24,750,0782,765$26,395,642Aug 9Twentieth + Century Fox\n \n + \ false
30Ready + or Not---$23,401,6882,998$28,714,231Aug 21Fox + Searchlight Pictures\n \n + \ false
31Booksmart---$22,680,9622,518$22,680,962May 24United + Artists Releasing\n \n + \ false
32A + Dog's Journey---$22,546,5903,279$22,782,371May 17Universal + Pictures\n \n + \ false
33Stuber---$22,370,4523,050$22,370,452Jul 12Twentieth + Century Fox\n \n + \ false
34Shaft---$21,360,2152,952$21,360,215Jun 14Warner + Bros.\n \n + \ false
35Overcomer---$20,956,1632,293$34,746,945Aug 23Affirm + Films\n \n + \ false
3647 + Meters Down: Uncaged---$20,161,7402,883$22,260,900Aug 16Entertainment + Studios Motion Pictures\n \n + \ false
37UglyDolls---$20,150,2413,652$20,150,241May 3STX + Entertainment\n \n + \ false
38Brightburn---$17,300,4392,607$17,300,439May 24Screen + Gems\n \n + \ false
39The + Farewell---$16,284,140891$17,695,781Jul 12A24\n \n + \ false
40Late + Night---$15,499,4542,220$15,499,454Jun 7Amazon + Studios\n \n + \ false
41Poms---$13,631,1242,750$13,631,124May 10STX + Entertainment\n \n + \ false
42The + Kitchen---$11,964,7412,745$12,180,032Aug 9Warner + Bros.\n \n + \ false
43Breakthrough---$11,436,5702,913$40,713,082Apr 17Twentieth + Century Fox\n \n + \ false
44Blinded + by the Light---$10,900,2142,307$11,901,145Aug 16Warner + Bros.\n \n + \ false
45Captain + Marvel---$10,337,8214,310$426,829,839Mar 8Walt + Disney Studios Motion Pictures\n \n + \ false
46The + Curse of La Llorona---$10,133,7363,372$54,733,739Apr 19Warner + Bros.\n \n + \ false
47The + Peanut Butter Falcon---$10,006,2591,490$20,457,151Aug 9Roadside + Attractions\n \n + \ false
48Where'd + You Go, Bernadette---$8,634,3652,404$9,198,356Aug 16United + Artists Releasing\n \n + \ false
49Anna---$7,743,7942,114$7,743,794Jun 21Lionsgate\n \n + \ false
50Shazam!---$7,627,8664,306$140,371,656Apr 5Warner + Bros.\n \n + \ false
51The + Dead Don't Die---$6,563,605690$6,563,605Jun 14Focus + Features\n \n + \ false
52Dumbo---$6,489,7154,259$114,766,307Mar 29Walt + Disney Studios Motion Pictures\n \n + \ false
53The + Sun Is Also a Star---$4,950,0292,073$4,950,029May 17Warner + Bros.\n \n + \ false
54Bring + the Soul: The Movie---$4,809,800873$4,809,800Aug 7Trafalgar + Releasing\n \n + \ false
55Pavarotti---$4,600,249288$4,600,249Jun 7CBS + Films\n \n + \ false
56Tolkien---$4,535,1541,501$4,535,154May 10Fox + Searchlight Pictures\n \n + \ false
57The + Last Black Man in San Francisco---$4,515,719207$4,515,719Jun 7A24\n \n + \ false
58The + Biggest Little Farm---$4,366,949285$4,366,949May 10Neon\n \n + \ false
59Brian + Banks---$4,300,3921,240$4,376,819Aug 9Bleecker + Street Media\n \n + \ false
60Menteur---$4,139,76489$4,697,364Jul 12Entertainment + One\n \n + \ false
61Little---$3,563,6352,667$40,860,481Apr 12Universal + Pictures\n \n + \ false
62Don't + Let Go---$3,500,680922$5,215,062Aug 30-false
63Mission + Mangal---$3,459,348263$3,659,413Aug 15FIP\n \n + \ false
64Echo + in the Canyon---$3,313,388147$3,355,324May 24Greenwich + Entertainment\n \n + \ false
65Bharat---$2,971,549311$2,971,549Jun 5Viva + Pictures\n \n + \ false
66Maiden---$2,875,361180$3,168,978Jun 28Sony + Pictures Classics\n \n + \ false
67Saaho---$2,872,057381$2,872,057Aug 29Yash + Raj Films\n \n + \ false
68The + Art of Self-Defense---$2,410,914550$2,410,914Jul 12Bleecker + Street Media\n \n + \ false
69Super + 30---$2,269,878317$2,269,878Jul 12Reliance + Big Pictures\n \n + \ false
70Amazing + Grace---$2,042,081263$4,450,456Dec 7Neon\n \n + \ false
71Ne + Zha---$1,781,842135$3,695,533Aug 29Well + Go USA Entertainment\n \n + \ false
72The + White Crow---$1,717,190365$1,828,784Apr 26Sony + Pictures Classics\n \n + \ false
73The + Other Side of Heaven 2: Fire of Faith---$1,712,168205$1,807,216Jun 28ArtAffects + Entertainment\n \n + \ false
74Wild + Rose---$1,635,117195$1,635,117Jun 21Neon\n \n + \ false
75Tod@s + Caen---$1,601,041371$2,670,925Aug 30Pantelion + Films\n \n + \ false
76Us---$1,581,2403,743$175,084,580Mar 22Universal + Pictures\n \n + \ false
77Luce---$1,509,951235$2,010,613Aug 2Neon\n \n + \ false
78Pet + Sematary---$1,467,4773,585$54,724,696Apr 5Paramount + Pictures\n \n + \ false
79Kinky + Boots: The Musical---$1,414,290492$900,451Jun 25Fathom + Events\n \n + \ false
80El + Chicano---$1,400,603605$1,400,603May 3Briarcliff + Entertainment\n \n + \ false
81Penguins---$1,318,6231,815$7,699,452Apr 17Walt + Disney Studios Motion Pictures\n \n + \ false
82Red + Joan---$1,305,761195$1,579,730Apr 19IFC + Films\n \n + \ false
83All + Is True---$1,200,481328$1,200,481May 10Sony + Pictures Classics\n \n + \ false
84Unplanned---$1,151,1011,516$19,005,109Mar 29Pure + Flix Entertainment\n \n + \ false
85After + the Wedding---$1,148,620428$1,574,258Aug 9Sony + Pictures Classics\n \n + \ false
86My + Neighbor Totoro
2019 Re-release
---$1,105,564767$1,105,564Aug 25Fathom + Events\n \n + \ false
87The + Souvenir---$1,036,737145$1,036,737May 17A24\n \n + \ false
88How + to Train Your Dragon: The Hidden World---$1,032,4454,286$160,799,505Feb 22Universal + Pictures\n \n + \ false
89Kiki's + Delivery Service
2019 Re-release
---$1,004,057753$1,004,057Jul 28Fathom + Events\n \n + \ false
90Marianne + & Leonard: Words of Love---$964,843101$1,012,034Jul 5Roadside + Attractions\n \n + \ false
91Rush: + Cinema Strangiato 2019---$959,235494$960,073Aug 21Trafalgar + Releasing\n \n + \ false
92Between + Me and My Mind---$875,191488$875,191Jul 17Trafalgar + Releasing\n \n + \ false
93Brittany + Runs a Marathon---$866,0321,033$7,189,808Aug 23Amazon + Studios\n \n + \ false
94Toni + Morrison: The Pieces I Am---$862,53878$903,018Jun 21Magnolia + Pictures\n \n + \ false
95Steel + Magnolias
2019 Re-release
---$855,421689$855,421May 19Fathom + Events\n \n + \ false
96Chonda + Pierce: Unashamed---$787,979783$787,979May 7Fathom + Events\n \n + \ false
97Missing + Link---$785,4663,437$16,649,539Apr 12United + Artists Releasing\n \n + \ false
98Student + of the Year 2---$778,566190$778,566May 10FIP\n \n + \ false
99The + Church---$772,000252$772,000May 24Indican + Pictures\n \n + \ false
100I + Love Lucy: A Colorized Celebration---$754,323634$754,323Aug 6Fathom + Events\n \n + \ false
101Non-Fiction---$704,91989$704,919May 3IFC + Films\n \n + \ false
102The + Fighting Preacher---$691,51837$954,641Jul 24Purdie + Distribution\n \n + \ false
103Bennett's + War---$685,815970$1,056,416Aug 30-false
104The + Muppet Movie
2019 Re-release
---$610,475727$610,475Jul 25Fathom + Events\n \n + \ false
105The + White Storm 2: Drug Lords---$609,46154$609,461Jul 12-false
106Bethany + Hamilton: Unstoppable---$588,097205$590,671Jul 12Entertainment + Studios Motion Pictures\n \n + \ false
107David + Crosby: Remember My Name---$575,44067$732,793Jul 19Sony + Pictures Classics\n \n + \ false
108DCI + 2019: Big, Loud & Live 16---$546,060513$546,060Aug 8Fathom + Events\n \n + \ false
109Grateful + Dead Meet-Up 2019---$537,153503$537,153Aug 1Trafalgar + Releasing\n \n + \ false
110Code + Geass: Lelouch of the Re;Surrection
2019 Re-release
---$522,805490$522,805May 5FUNimation + Entertainment\n \n + \ false
111Shadow---$521,39653$521,396May 3Well + Go USA Entertainment\n \n + \ false
112A + Brother's Love---$521,08230$539,524Jun 7Entertainment + One\n \n + \ false
113The + Spy Behind Home Plate---$514,97931$519,525May 24Ciesla + Foundation\n \n + \ false
114Saving + Private Ryan
2019 Re-release
---$508,694642$508,694Jun 2Fathom + Events\n \n + \ false
115Whisper + of the Heart
2019 Re-release
---$498,156745$498,156Jul 1Fathom + Events\n \n + \ false
116Nausica\xE4 + of the Valley of the Wind
2019 Re-release
---$495,770751$495,770May 20Fathom + Events\n \n + \ false
117Batla + House---$493,18081$493,180Aug 15Viva + Pictures\n \n + \ false
118Lawrence + of Arabia
2019 Re-release
---$482,281661$482,281Sep 1Fathom + Events\n \n + \ false
119Apollo + 11---$462,548588$9,039,891Mar 1Neon\n \n + \ false
120De + De Pyaar De---$425,934104$425,934May 17Yash + Raj Films\n \n + \ false
121Tel + Aviv on Fire---$420,67037$506,145Aug 2Cohen + Media Group\n \n + \ false
122The + Cold Blue---$420,177702$420,177May 23Fathom + Events\n \n + \ false
123Honeyland---$416,91056$815,082Jul 26Neon\n \n + \ false
124Hello, + Dolly!---$400,881669$400,881Aug 11Fathom + Events\n \n + \ false
125Exit---$400,75219$470,699Aug 2CJ + Entertainment\n \n + \ false
126What + We Left Behind: Looking Back at Star Trek: Deep Space Nine---$382,457795$382,457May 13Fathom + Events\n \n + \ false
127The + Cure: Anniversary 1978-2018 Live in Hyde Park---$378,405346$378,405Jul 11Trafalgar + Releasing\n \n + \ false
128The + Mustang---$365,950527$5,043,620Mar 15Focus + Features\n \n + \ false
129The + Nightingale---$359,94579$400,209Aug 2IFC + Films\n \n + \ false
130The + Tomorrow Man---$354,103207$354,103May 22Bleecker + Street Media\n \n + \ false
131Photograph---$344,534123$344,534May 17Amazon + Studios\n \n + \ false
132Sword + of Trust---$322,42178$322,421Jul 12IFC + Films\n \n + \ false
133Hail + Satan?---$316,18467$424,284Apr 17Magnolia + Pictures\n \n + \ false
134After---$308,6312,138$12,138,565Apr 12Aviron + Pictures\n \n + \ false
135K-12---$303,23081$303,230Sep 5Abramorama\n \n + \ false
136Millennium + Actress
2019 Re-release
---$302,361512$225,250Aug 13Fathom + Events\n \n + \ false
137Ask + Dr. Ruth---$297,195110$297,195May 3Magnolia + Pictures\n \n + \ false
138The + Giant Spider Invasion---$293,053685$293,053Aug 15Fathom + Events\n \n + \ false
139The + Bravest---$290,217150$290,217Aug 9Sony + Pictures Entertainment (SPE)\n \n + \ false
140Saga + of Tanya the Evil - The Movie---$288,460518$288,460May 16Fathom + Events\n \n + \ false
141Long + Day's Journey Into Night---$282,18324$521,365Apr 12Kino + Lorber\n \n + \ false
142Five + Feet Apart---$281,0852,866$45,729,221Mar 15Lionsgate\n \n + \ false
143True + Grit
2019 Re-release
---$276,418614$276,418May 5Fathom + Events\n \n + \ false
144Line + Walker 2: Invisible Spy---$275,61217$296,751Aug 16Well + Go USA Entertainment\n \n + \ false
145Is + It Wrong to Try to Pick Up Girls in a Dungeon - Arrow of the Orion---$271,489614$271,489Jul 23Fathom + Events\n \n + \ false
146Hotel + Mumbai---$268,338930$9,651,611Mar 22Bleecker + Street Media\n \n + \ false
147Killerman---$266,222322$291,477Aug 30Blue + Fox Entertainment\n \n + \ false
148Mike + Wallace Is Here---$260,66639$281,245Jul 26Magnolia + Pictures\n \n + \ false
149Star + Raiders: The Adventures of Saber Raine---$260,234665$260,234Jun 6Fathom + Events\n \n + \ false
150I + Got the Hook Up 2---$252,29340$252,293Jul 12-false
151Meeting + Gorbachev---$251,83742$251,837May 31091 + Pictures\n \n + \ false
152Wild + Nights with Emily---$250,42178$519,487Apr 12Greenwich + Entertainment\n \n + \ false
153Doctor + Who: The End of Time: Part One---$247,798745$247,798Aug 7Fathom + Events\n \n + \ false
154One + Child Nation---$239,51136$270,128Aug 9Amazon + Studios\n \n + \ false
155American + Woman---$236,637117$236,637Jun 14Roadside + Attractions\n \n + \ false
156The + Chaperone---$231,493128$600,654Mar 28PBS + Distribution\n \n + \ false
157DAZN + Boxing: Canelo Alvarez vs. Daniel Jacobs---$230,703426$230,703May 4Fathom + Events\n \n + \ false
158Premier + Boxing Champions: PBC on FOX PPV: Pacquiao vs. Thurman---$223,858194$223,858Jul 20Fathom + Events\n \n + \ false
159The + Gangster, the Cop, the Devil---$216,49421$216,494Jun 7Well + Go USA Entertainment\n \n + \ false
160Hamlet
2019 + Re-release
---$214,578572$214,578Jul 8Fathom + Events\n \n + \ false
161High + Life---$211,874146$1,225,852Apr 5A24\n \n + \ false
162Kathy + Griffin: A Hell of a Story---$208,907648$208,907Jul 31Fathom + Events\n \n + \ false
163Bolshoi + Ballet: Carmen Suite/Petrushka---$207,523362$207,523May 19Fathom + Events\n \n + \ false
164Forrest + Gump
2019 Re-release
---$203,088560$203,088Jun 23Fathom + Events\n \n + \ false
165Fiddler: + A Miracle of Miracles---$199,00377$549,386Aug 23Roadside + Attractions\n \n + \ false
166Chasing + the Dragon II: Wild Wild Bunch---$196,63416$196,634Jun 7Well + Go USA Entertainment\n \n + \ false
167The + River and the Wall---$185,50457$183,602May 3Gravitas + Ventures\n \n + \ false
168Hesburgh---$177,04936$204,709Apr 26Music + Box Films\n \n + \ false
169India's + Most Wanted---$176,858110$176,858May 24FIP\n \n + \ false
170Hellboy---$176,2543,303$21,903,748Apr 12Lionsgate\n \n + \ false
171Asbury + Park: Riot, Redemption, Rock & Roll---$167,684270$167,684May 22Trafalgar + Releasing\n \n + \ false
172A + Madea Family Funeral---$164,1172,442$73,257,045Mar 1Lionsgate\n \n + \ false
173Batman
2019 + Re-release
---$159,419489$159,419May 4Fathom + Events\n \n + \ false
174Them + That Follow---$159,218195$159,218Aug 21091 + Pictures\n \n + \ false
175Aquarela---$157,63469$307,346Aug 16Sony + Pictures Classics\n \n + \ false
176Glory
2019 + Re-release
---$150,801435$150,801Jul 21Fathom + Events\n \n + \ false
177Wonder + Park---$148,9523,838$45,216,793Mar 15Paramount + Pictures\n \n + \ false
178Trial + by Fire---$148,504109$148,504May 17Roadside + Attractions\n \n + \ false
179Halston---$146,51230$148,063May 24The + Orchard\n \n + \ false
180Framing + John DeLorean---$145,62528$145,625Jun 7IFC + Films\n \n + \ false
181Hampstead---$144,39618$144,396Jun 14IFC + Films\n \n + \ false
182Iyengar: + The Man, Yoga, and the Student's Journey---$141,44811$176,387Apr 12Kino + Lorber\n \n + \ false
183Raise + Hell: The Life & Times of Molly Ivins---$141,07242$694,410Aug 30Magnolia + Pictures\n \n + \ false
184Nureyev: + Lifting the Curtain---$132,61018$165,203Apr 19CineLife + Entertainment\n \n + \ false
185The + Other Story---$128,08611$135,191Jun 28Strand + Releasing\n \n + \ false
186The + Best of Enemies---$127,6421,705$10,205,616Apr 5STX + Entertainment\n \n + \ false
187Woodstock---$126,562781$126,562Aug 15Fathom + Events\n \n + \ false
188Paris + Is Burning
2019 Re-release
---$125,6776$125,677Jun 14Janus + Films\n \n + \ false
189Easy + Rider
2019 Re-release
---$123,276252$123,276Jul 14Fathom + Events\n \n + \ false
190The + Fall of the American Empire---$118,51573$2,178,460Jun 29Entertainment + One\n \n + \ false
191The + Reports on Sarah and Saleem---$117,47911$117,479Jun 12Dada + Films\n \n + \ false
192Jay + Myself---$116,48317$151,331Jul 31Oscilloscope\n \n + \ false
193Kalank---$114,252320$2,729,336Apr 17FIP\n \n + \ false
194Under + the Sea 3D---$110,009108$36,262,926Feb 13Warner + Bros.\n \n + \ false
195Woman + at War---$109,20866$847,495Mar 1Magnolia + Pictures\n \n + \ false
196The + Death & Life of John F. Donovan---$108,23325$152,713Aug 23Entertainment + One\n \n + \ false
197The + Audience
2019 Re-release
---$106,529529$106,529Jun 3Fathom + Events\n \n + \ false
198Give + Me Liberty---$105,10018$242,734Aug 23Music + Box Films\n \n + \ false
199Miss + & Mrs. Cops---$104,5789$104,578May 10CJ + Entertainment\n \n + \ false
200The + Divine Fury---$100,50823$102,982Aug 16Well + Go USA Entertainment\n \n + \ false
\n

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Wed, 13 Jul 2022 01:00:16 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=143-1550714-4234464; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - WT56PT2WB45586SWAE92 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/summer-2022.yaml b/tests/fixtures/vcr_cassettes/summer-2022.yaml new file mode 100644 index 0000000..3b4b4c8 --- /dev/null +++ b/tests/fixtures/vcr_cassettes/summer-2022.yaml @@ -0,0 +1,2727 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2022 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Wed, 13 Jul 2022 00:40:12 GMT + Location: + - /season/summer/2022/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=145-8777214-8121612; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - KN0591Q94H893KD0R3AS + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/season/summer/2022/ + response: + body: + string: "\n\n\n\n\n\n \n Domestic + Box Office For Summer 2022 - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \

Domestic Box Office For Summer + 2022

\n\n
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n \n
\n
\n + \
\n

Summer 2022 is + May 6-September 3.

\n\n
RankRelease\n GrossTheatersTotal + GrossRelease + DateDistributor\n
1Top Gun: Maverick---$599,453,8954,751$599,453,895May 27Paramount + Pictures\n \n + \ false
2Doctor + Strange in the Multiverse of Madness---$411,065,7274,534$411,065,727May 6Walt + Disney Studios Motion Pictures\n \n + \ false
3Jurassic + World Dominion---$351,528,2104,697$351,528,210Jun 10Universal + Pictures\n \n + \ false
4Minions: + The Rise of Gru---$216,948,6604,427$216,948,660Jul 1Universal + Pictures\n \n + \ false
5Thor: + Love and Thunder---$156,347,6134,375$156,347,613Jul 8Walt + Disney Studios Motion Pictures\n \n + \ false
6Lightyear---$112,882,0584,255$112,882,058Jun 17Walt + Disney Studios Motion Pictures\n \n + \ false
7Elvis---$93,005,0493,932$93,005,049Jun 24Warner + Bros.\n \n + \ false
8The + Black Phone---$63,565,1653,156$63,565,165Jun 24Universal + Pictures\n \n + \ false
9The + Bad Guys---$48,590,6104,042$96,393,095Apr 22Universal + Pictures\n \n + \ false
10Downton + Abbey: A New Era---$43,896,5503,830$43,896,550May 20Focus + Features\n \n + \ false
11The + Bob's Burgers Movie---$31,777,4573,425$31,777,457May 2720th + Century Studios\n \n + \ false
12Everything + Everywhere All at Once---$28,069,0812,220$67,670,309Mar 25A24\n \n + \ false
13Sonic + the Hedgehog 2---$27,171,4334,258$190,872,904Apr 8Paramount + Pictures\n \n + \ false
14Fantastic + Beasts: The Secrets of Dumbledore---$13,791,6734,245$95,850,844Apr 15Warner + Bros.\n \n + \ false
15The + Lost City---$13,454,7654,283$105,344,029Mar 25Paramount + Pictures\n \n + \ false
16Firestarter---$9,589,2503,413$9,589,250May 13Universal + Pictures\n \n + \ false
17The + Northman---$8,954,5253,284$34,233,110Apr 22Focus + Features\n \n + \ false
18Men---$7,018,9952,212$7,587,853May 20A24\n \n + \ false
19The + Unbearable Weight of Massive Talent---$5,436,7543,036$20,300,157Apr 22Lionsgate\n \n + \ false
20Family + Camp---$3,958,1221,057$3,958,122May 13Roadside + Attractions\n \n + \ false
21Memory---$3,056,3782,555$7,329,043Apr 29Open + Road Films (II)\n \n + \ false
22Crimes + of the Future---$2,452,882773$2,452,882Jun 3Neon\n \n + \ false
23Father + Stu---$2,449,0542,705$20,884,796Apr 13Sony + Pictures Entertainment (SPE)\n \n + \ false
24Uncharted---$2,124,5974,275$148,647,690Feb 18Sony + Pictures Entertainment (SPE)\n \n + \ false
25Watcher---$1,957,479764$1,956,731Jun 3IFC + Films\n \n + \ false
26Morbius---$1,932,7674,268$73,865,530Apr 1Columbia + Pictures\n \n + \ false
27Vikram---$1,770,000465$1,770,000Jun 3Prime + Media Pictures\n \n + \ false
28Mr. + Malcolm's List---$1,692,2261,384$1,692,226Jul 1Bleecker + Street Media\n \n + \ false
292000 + Mules---$1,465,513415$1,465,513May 20D'Souza + Media\n \n + \ false
30The + Duke---$1,304,536353$1,520,977Apr 22Sony + Pictures Classics\n \n + \ false
31F3: + Fun and Frustration---$1,195,000400$1,195,000May 27-false
32Jug + Jugg Jeeyo---$1,033,000318$1,033,000Jun 24-false
33Marcel + the Shell with Shoes On---$987,05048$987,050Jun 24A24\n \n + \ false
34Ambulance---$892,1953,412$22,309,115Apr 8Universal + Pictures\n \n + \ false
35The + Roundup---$801,28122$812,859May 19Capelight + Pictures\n \n + \ false
36Petite + Maman---$672,764224$829,065Apr 22Neon\n \n + \ false
37The + Phantom of the Open---$658,891501$627,231Jun 3Sony + Pictures Classics\n \n + \ false
38Ante + Sundharaniki---$621,000350$620,000Jun 10-false
39Deep + in the Heart: A Texas Wildlife Story---$462,58569$462,585Jun 3-false
40Official + Competition---$453,912173$453,912Jun 17IFC + Films\n \n + \ false
41Brian + and Charles---$430,635279$430,635Jun 17Focus + Features\n \n + \ false
42Eiffel---$344,041308$433,336Apr 29Blue + Fox Entertainment\n \n + \ false
43Y + c\xF3mo es \xE9l?---$312,079325$1,500,636Apr 22Lionsgate\n \n + \ false
44Montana + Story---$292,915290$292,915May 13Bleecker + Street Media\n \n + \ false
45The + Forgiven---$282,644139$282,644Jul 1Roadside + Attractions\n \n + \ false
46The + Batman---$272,5624,417$369,345,583Mar 4Warner + Bros.\n \n + \ false
47Mad + God---$213,01737$213,017Jun 10IFC + Films\n \n + \ false
48Benediction---$198,9021,241$198,902Jun 3Roadside + Attractions\n \n + \ false
49Happening---$180,100188$180,100May 6IFC + Films\n \n + \ false
50Spider-Man: + No Way Home---$175,7054,336$804,793,477Dec 17Sony + Pictures Entertainment (SPE)\n \n + \ false
51Jazz + Fest: A New Orleans Story---$174,878302$172,395May 13Sony + Pictures Entertainment (SPE)\n \n + \ false
52RRR
2022 + Re-release
---$156,502135$153,740Jun 1Variance + Films\n \n + \ false
53Neptune + Frost---$143,76442$160,050Jun 3Kino + Lorber\n \n + \ false
54The + Witch: Part 2. The Other One---$143,72312$139,947Jun 17Well + Go USA Entertainment\n \n + \ false
55Pleasure---$106,78944$106,789May 13-false
56Vivo---$103,313705$454,807Apr 25Fathom + Events\n \n + \ false
57Abandoned---$96,76154$96,761Jun 17Vertical + Entertainment\n \n + \ false
58Lost + Illusions---$96,64617$96,646Jun 10Music + Box Films\n \n + \ false
59Fortune + Favors Lady Nikuko---$87,363476$87,363Jun 2GKIDS\n \n + \ false
60Hit + the Road---$82,969432$147,309Apr 22Kino + Lorber\n \n + \ false
61Hallelujah: + Leonard Cohen, a Journey, a Song---$78,02415$78,034Jul 1Sony + Pictures Entertainment (SPE)\n \n + \ false
62Fourth + of July---$72,00439$291,004Jul 1Circus + King Productions\n \n + \ false
63Green + Ghost and the Masters of the Stone---$69,334135$113,685Apr 29Gravitas + Ventures\n \n + \ false
64Diva
2022 + Re-release
---$67,3112$67,311May 6Rialto + Pictures\n \n + \ false
65Vortex---$63,06239$145,708May 6Utopia\n \n + \ false
66Maika---$60,77123$69,257Jun 3Well + Go USA Entertainment\n \n + \ false
67Firebird---$58,88289$144,118Apr 29Roadside + Attractions\n \n + \ false
68Inland + Empire
2022 Re-release
---$58,78214$253,523Apr 8Janus + Films\n \n + \ false
69On + the Count of Three---$54,51519$54,515May 13United + Artists Releasing\n \n + \ false
70Lost + Highway
2022 Re-release
---$52,8148$51,591Jun 24Janus + Films\n \n + \ false
71CatVideoFest + 2022---$51,81019$51,810Jun 24Oscilloscope\n \n + \ false
72Lux + \xC6terna---$50,02725$50,027May 6Yellow + Veil Pictures\n \n + \ false
73The + Automat---$48,91520$247,915Feb 18A + Slice of Pie Productions\n \n + \ false
74A + Chiara---$41,92528$41,925May 27-false
75Around + the World in 80 Days---$41,26186$48,757May 12Viva + Pictures\n \n + \ false
76Remembering + Heaven---$40,90714$40,907May 6Purdie + Distribution\n \n + \ false
77Fire + of Love---$40,7743$40,774Jul 6Neon\n \n + \ false
78Fireheart---$36,77722$14,221May 27-false
79Poser---$35,5289$35,528Jun 3Oscilloscope\n \n + \ false
80The + Velvet Queen---$31,49251$151,006Dec 22Oscilloscope\n \n + \ false
81Nikamma---$31,181170$31,181Jun 17Sony + Pictures Releasing\n \n + \ false
82Take + Me to the River: New Orleans---$29,66833$43,563Apr 22-false
83Dog---$29,4843,827$61,778,069Feb 18United + Artists Releasing\n \n + \ false
84Bitterbrush---$25,84523$22,857Jun 17Magnolia + Pictures\n \n + \ false
85The + Innocents---$25,70532$25,705May 13IFC + Films\n \n + \ false
86The + Discreet Charm of the Bourgeoisie
4K Restoration
---$25,6732$25,673Jun 24Rialto + Pictures\n \n + \ false
87Good + Mourning---$21,34828$21,348May 20Briarcliff + Entertainment\n \n + \ false
88Fire---$19,1924$19,192Jul 8IFC + Films\n \n + \ false
89The + Rose Maker---$15,67126$115,533Apr 1Music + Box Films\n \n + \ false
90Flux + Gourmet---$14,53219$14,532Jun 24IFC + Films\n \n + \ false
911982---$14,4571$14,457Jun 10Tricycle + Logic\n \n + \ false
92Beba---$13,20920$15,011Jun 24-false
93Hatching---$13,208190$182,925Apr 29IFC + Films\n \n + \ false
94Rite + of the Shaman---$12,44512$12,445May 27Purdie + Distribution\n \n + \ false
95Back + to the Drive-in---$12,31817$12,318Jun 6-false
96Ana\xEFs + in Love---$12,05255$42,941Apr 29Magnolia + Pictures\n \n + \ false
97The + Conversation
2022 Re-release
---$11,1813$119,657May 6Rialto + Pictures\n \n + \ false
98Fire + in the Mountains---$10,3535$12,038May 20Kino + Lorber\n \n + \ false
99Distant
2022 + \ Re-release
---$10,3294$10,329May 20Big + World Pictures\n \n + \ false
100Relative---$9,8551$9,855Jun 8Newcity\n \n + \ false
101In + Front of Your Face---$9,1501$9,150May 6The + Cinema Guild\n \n + \ false
102A + New Old Play---$9,0261$9,027May 20Icarus + Films\n \n + \ false
103The + Tale of King Crab---$7,9139$26,919Apr 15Oscilloscope\n \n + \ false
104Mau---$7,5002$7,500May 13Greenwich + Entertainment\n \n + \ false
105Dreaming + Walls: Inside the Chelsea Hotel---$7,3709$7,370Jul 8Magnolia + Pictures\n \n + \ false
106Hold + Your Fire---$6,40014$7,502May 20IFC + Films\n \n + \ false
107Kamikaze + Hearts---$6,1393$6,139May 13-false
108Clara + Sola---$6,1211$6,121Jul 1Oscilloscope\n \n + \ false
109Murina---$6,0361$14,021Jul 8Kino + Lorber\n \n + \ false
110We're + All Going to the World's Fair---$5,2089$90,740Apr 15Utopia\n \n + \ false
111Mothering + Sunday---$4,752293$275,352Mar 25Sony + Pictures Classics\n \n + \ false
112Mississippi + Masala
2022 Re-release
---$4,0527$23,729Apr 15Janus + Films\n \n + \ false
113Stunt + Rock
2022 Re-release
---$3,88715$9,530Mar 25Kino + Lorber\n \n + \ false
114Paris, + 13th District---$3,72467$73,118Apr 15IFC + Films\n \n + \ false
115The + Sound of Violet---$3,51929$32,333Apr 29Atlas + Distribution Company\n \n + \ false
116Mondocane---$3,4285$4,927May 20Kino + Lorber\n \n + \ false
117A + Man of Integrity---$2,1892$4,499Jun 17Big + World Pictures\n \n + \ false
118Kill + Devil Hills---$2,0221$2,022Jun 4Sumbadhat + Productions\n \n + \ false
119Aline---$1,88572$667,815Nov 26Roadside + Attractions\n \n + \ false
120Rubikon---$1,84312$1,687Jul 1IFC + Films\n \n + \ false
121Olga---$1,4903$5,918Jun 24Kino + Lorber\n \n + \ false
122Waterman---$1,48844$316,848Apr 1Purdie + Distribution\n \n + \ false
123Strawberry + Mansion---$1,25128$96,756Feb 18Music + Box Films\n \n + \ false
124The + Wobblies
2022 Re-release
---$1,23313$11,474Apr 29Kino + Lorber\n \n + \ false
125Charlotte---$1,10120$18,520Apr 22Good + Deed Entertainment\n \n + \ false
126Sniper. + The White Raven---$8815$881Jul 1Well + Go USA Entertainment\n \n + \ false
127Be + Natural: The Untold Story of Alice Guy-Blach\xE9
2022 Re-release
---$780-$780Jun 2-false
128Cow---$61332$22,504Apr 8IFC + Films\n \n + \ false
129Ahed's + Knee---$51018$52,702Mar 18Kino + Lorber\n \n + \ false
130I've + Heard the Mermaids Singing
2022 Re-release
---$4124$6,903Mar 11Kino + Lorber\n \n + \ false
131Writing + with Fire---$1469$28,262Nov 26Music + Box Films\n \n + \ false
\n

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Wed, 13 Jul 2022 00:40:12 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=144-3384040-4834109; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 7J0929XZRDN2C6XY2ET3 + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/tt7349950.yaml b/tests/fixtures/vcr_cassettes/tt7349950.yaml new file mode 100644 index 0000000..682695d --- /dev/null +++ b/tests/fixtures/vcr_cassettes/tt7349950.yaml @@ -0,0 +1,1094 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/title/tt7349950 + response: + body: + string: '' + headers: + Cache-Control: + - public, max-age=2592000 + Connection: + - close + Content-Length: + - '0' + Date: + - Mon, 11 Jul 2022 03:18:06 GMT + Location: + - /title/tt7349950/ + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=143-8636413-4610466; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - 6YW1F4JQRZAX9FF768Z4 + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/title/tt7349950/ + response: + body: + string: "\n\n\n\n\n\n \n It + Chapter Two - Box Office Mojo\n \n \n \n \n \n \n\n\n\n
\n \"\"\n\n\n\n\n\n
\n + \
\"\"

It Chapter + Two (2019)

Twenty-seven years after their first encounter with + the terrifying Pennywise, the Losers Club have grown up and moved away, until + a devastating phone call brings them back.
\n\n\n\n\n\n\n\n\n\n\n\n\n\n + \
\n \n\n\n + \
\n Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\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 All Releases\n

\n + \ \n \n \n \n \n + \ \n
\n + \ \n \n + \ \n Domestic (44.7%)\n \n \n + \ \n \n
\n + \ \n \n + \ \n $211,622,525\n + \ \n \n \n + \ \n
\n \n \n + \ \n \n \n \n + \
\n \n \n \n + \ International (55.3%)\n + \ \n \n \n + \ \n
\n \n \n \n + \ $261,500,000\n + \ \n \n \n + \ \n
\n \n \n + \ \n \n
\n \n \n + \ \n Worldwide \n + \ \n \n \n + \ \n
\n \n \n \n + \ $473,122,525\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 Cast + information\n
\n Crew + information\n \n
\n Company + information\n \n
\n News\n + \
\n Box + office\n \n \n \n
\n \n + \ \n \n \n
\n \n + \ Vertigo + Entertainment\n \n
\n + \ \n \n Stephen + King\n \n \n
\n + \ \n + \ \n \n Brand + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n It\n + \ \n \n
\n \n + \ \n \n Franchise + rankings\n \n \n \n \n \n \n + \
\n \n \n \n + \ \n
\n + \ \n Supernatural\n + \ \n
\n \n + \ \n IMAX\n + \ \n \n
\n \n + \ \n \n Genre + keyword rankings\n \n \n \n \n + \ \n
\n\n
\n + \ Summary Details\n
Domestic DistributorWarner Bros.
See + full company information\n \n + \
Domestic + Opening$91,062,152
Budget$79,000,000
Earliest Release DateSeptember + 4, 2019\n (APAC)
MPAAR
Running Time2 hr 49 + min
GenresDrama\n + \ \n Fantasy\n \n Horror
\n

By Release

Release GroupRolloutMarketsDomesticInternationalWorldwide
Original + ReleaseSeptember 4-November 2, 201943 + markets$211,593,228$261,500,000$473,093,228
2021 Re-releaseDomestic$29,297\n –\n $29,297

By + Region

Domestic# ReleasesLifetime GrossRank
Domestic2$211,622,525200
EMEA# ReleasesLifetime + GrossRank
United + Kingdom1$23,100,000403
Germany1$21,000,000234
France1$12,600,000583
Italy1$10,600,000332
Spain1$9,800,000398
Netherlands1$4,200,000288
Poland1$2,727,337353
Norway1$2,158,796371
United Arab Emirates1$2,152,527255
Switzerland1$2,100,000253
Ukraine1$2,044,584123
Portugal1$1,302,813332
T\xFCrkiye1$1,300,000635
Hungary1$1,181,863186
Czech Republic1$1,027,404319
South + Africa1$805,457616
Romania1$786,123161
Slovakia1$602,052142
Croatia1$406,059138
Bulgaria1$343,533277
Lithuania1$289,497182
Serbia and Montenegro1$269,274121
Iceland1$222,226283
Slovenia1$206,877271
LATAM# ReleasesLifetime + GrossRank
Mexico1$21,500,000107
Brazil1$11,600,000231
Colombia1$4,300,000115
Argentina1$4,100,000171
Bolivia1$273,003272
Uruguay1$269,205178
Paraguay1$197,26256
APAC# ReleasesLifetime + GrossRank
Russia/CIS1$17,961,429174
Japan1$16,900,000574
Australia1$11,910,029385
Indonesia1$5,500,00078
South + Korea1$4,300,0001,058
Taiwan1$3,700,000219
Vietnam1$3,198,43440
India1$2,400,000548
Hong Kong1$2,200,000425
New + Zealand1$1,432,635445
\n + \

\n + \ Latest Updates:\n News + |\n Daily + |\n Weekend + |\n All + Time |\n International + |\n Showdowns

Glossary\n + \ |\n User + Guide\n |\n Help

\n + \ BoxOfficeMojo.com by IMDbPro - an\n IMDb\n + \ company.\n

\n © IMDb.com, Inc. or + its affiliates. All rights reserved.\n Box Office Mojo and IMDb + are trademarks or registered trademarks of IMDb.com, Inc. or its affiliates.\n + \ Conditions + of Use\n and\n Privacy + Policy\n under which this service is provided to you.\n

\n\n\n\n
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 11 Jul 2022 03:18:06 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=134-3386768-0808441; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Transfer-Encoding: + - chunked + Vary: + - accept-encoding,Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - EE76MFQQ8VFAJKZ9GD7X + status: + code: 200 + message: OK +version: 1 diff --git a/tests/fixtures/vcr_cassettes/xxxxx.yaml b/tests/fixtures/vcr_cassettes/xxxxx.yaml new file mode 100644 index 0000000..6ff0aad --- /dev/null +++ b/tests/fixtures/vcr_cassettes/xxxxx.yaml @@ -0,0 +1,105 @@ +interactions: +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: http://www.boxofficemojo.com/movies/?id=xxxxx.htm + response: + body: + string: ' + + + + 301 Moved Permanently + + + +

Moved Permanently

+ +

The document has moved here.

+ + + + ' + headers: + Connection: + - Keep-Alive + Content-Length: + - '258' + Content-Type: + - text/html; charset=iso-8859-1 + Date: + - Mon, 11 Jul 2022 02:45:44 GMT + Keep-Alive: + - timeout=2, max=20 + Location: + - https://www.boxofficemojo.com/movies/?id=xxxxx.htm + Server: + - Server + status: + code: 301 + message: Moved Permanently +- request: + body: null + headers: + Connection: + - close + Host: + - www.boxofficemojo.com + User-Agent: + - Python-urllib/3.9 + method: GET + uri: https://www.boxofficemojo.com/movies/?id=xxxxx.htm + response: + body: + string: "\n Error - Box Office Mojo

\n + \

The requested + page was not found.

\n + \
" + headers: + Cache-Control: + - no-cache, no-store, max-age=0 + Connection: + - close + Content-Language: + - en-US + Content-Length: + - '1261' + Content-Type: + - text/html;charset=UTF-8 + Date: + - Mon, 11 Jul 2022 02:45:44 GMT + Permissions-Policy: + - interest-cohort=() + Server: + - Server + Set-Cookie: + - session-id=134-8140151-8136511; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + - session-id-time=2082787201l; Domain=boxofficemojo.com; Expires=Tue, 01-Jan-2036 + 08:00:01 GMT; Path=/; Secure + Vary: + - Content-Type,Accept-Encoding,X-Amzn-CDN-Cache,X-Amzn-AX-Treatment,User-Agent + x-amz-rid: + - SCH3FQ6X9PVAQVJBZQGZ + status: + code: 404 + message: Not Found +version: 1 diff --git a/tests/test_pymojo.py b/tests/test_pymojo.py new file mode 100644 index 0000000..99f8d95 --- /dev/null +++ b/tests/test_pymojo.py @@ -0,0 +1,103 @@ +#!/usr/bin/env python + +"""Tests for `pymojo` package.""" +import datetime +import unittest +from click.testing import CliRunner + +from pymojo import pymojo +from pymojo import cli + +import vcr + +class TestPymojo(unittest.TestCase): + """Tests for `pymojo` package.""" + + def setUp(self): + """Set up test fixtures, if any.""" + + def tearDown(self): + """Tear down test fixtures, if any.""" + + def test_000_get_new_mojo_id(self): + legacy_id = "it2" + with vcr.use_cassette(f'fixtures/vcr_cassettes/{legacy_id}.yaml'): + new_id = pymojo.get_new_mojo_id(legacy_id) + self.assertEqual("rl1107461633", new_id) + + invalid_id = "xxxxx" + with vcr.use_cassette(f'fixtures/vcr_cassettes/{invalid_id}.yaml'): + new_id = pymojo.get_new_mojo_id(invalid_id) + self.assertIsNone(None, new_id) + + def test_001_get_imdbid_from_mojoid(self): + mojoid = "rl1107461633" + with vcr.use_cassette(f'fixtures/vcr_cassettes/{mojoid}.yaml'): + imdbid = pymojo.get_imdb_id_from_mojo_id(mojoid) + self.assertEqual("tt7349950", imdbid) + + def test_002_get_domestic_gross(self): + mojoid = "rl1107461633" + with vcr.use_cassette(f'fixtures/vcr_cassettes/{mojoid}.yaml'): + gross = pymojo.get_domestic_gross(mojoid) + self.assertEqual(211593228, gross) + + mojoid = "rl3562898177" # not released yet + with vcr.use_cassette(f'fixtures/vcr_cassettes/{mojoid}.yaml'): + gross = pymojo.get_domestic_gross(mojoid) + self.assertEqual(0, gross) + + def test_003_get_mojo_id_from_imdb_id(self): + imdb_id = "tt7349950" + with vcr.use_cassette(f'fixtures/vcr_cassettes/tt7349950.yaml'): + mojoid = pymojo.get_mojo_id_from_imdb_id(imdb_id) + self.assertEqual("rl1107461633", mojoid) + + mojoid = "rl3562898177" # not released yet + with vcr.use_cassette(f'fixtures/vcr_cassettes/{mojoid}.yaml'): + gross = pymojo.get_domestic_gross(mojoid) + self.assertEqual(0, gross) + + def test_004_get_domestic_box_office_for_season(self): + season = "summer" + year = "2022" + with vcr.use_cassette(f'fixtures/vcr_cassettes/summer-2022.yaml'): + season = "summer" + year = "2022" + l1 = pymojo.get_domestic_box_office_for_season(season, year) + with vcr.use_cassette(f'fixtures/vcr_cassettes/summer-2019.yaml'): + season = "summer" + year = "2019" + l2 = pymojo.get_domestic_box_office_for_season(season, year) + with vcr.use_cassette(f'fixtures/vcr_cassettes/summer-2018.yaml'): + season = "summer" + year = "2018" + l3 = pymojo.get_domestic_box_office_for_season(season, year) + pass + + def test_005_get_release_schedule(self): + season = "summer" + year = "2022" + month = '5' + with vcr.use_cassette(f'fixtures/vcr_cassettes/release-schedule-20223-1.yaml'): + l1 = pymojo.get_release_schedule(year, month) + + def test_005_get_release_schedule_for_range(self): + season = "summer" + year = "2022" + month = '5' + with vcr.use_cassette(f'fixtures/vcr_cassettes/release-schedule-range-summer-2019.yaml'): + l1 = pymojo.get_release_schedule_for_range( + datetime.date(2019, 5, 3), + datetime.date(2019, 8, 31)) + pass + + def test_command_line_interface(self): + """Test the CLI.""" + runner = CliRunner() + result = runner.invoke(cli.main) + assert result.exit_code == 0 + assert 'pymojo.cli.main' in result.output + help_result = runner.invoke(cli.main, ['--help']) + assert help_result.exit_code == 0 + assert '--help Show this message and exit.' in help_result.output diff --git a/tox.ini b/tox.ini new file mode 100644 index 0000000..84db8a2 --- /dev/null +++ b/tox.ini @@ -0,0 +1,5 @@ +[tox] +envlist = py310 + +[testenv] +commands = python -m unittest discover tests