Search, pick a quality, hit play — it streams straight to your browser, no VLC, no MPV, no membership card required.
Install · Quickstart · Python API · Full Docs · Disclaimer
Every video store on the planet closed. Somehow this one just relocated
into a terminal — no rewind fee, no "be a member to rent that," no guy at
the counter judging your choices. movie-box is a CLI and async Python
API that searches, downloads, and streams movies and TV with subtitles,
multiple dubs, and resumable transfers, built for people who'd rather type
a title than click through five ad-walled redirects to find one.
pip install "movie-box-dl[cli]" # the full terminal experience
pip install movie-box-dl # just the Python API, no extrasmovie-box doctor # make sure your setup is good to go
movie-box "Avatar" # search, pick, and download — or stream right there
movie-box shell # the slash-command shell, for when you live in the terminalThat's the whole onboarding. Pick a result, pick a quality, pick stream instead of download if you just want it playing — it opens in your browser, no extra software to install. Everything else — TV series, dubs, config defaults, the full-screen dashboard, Python API reference — lives in the docs so this page doesn't have to.
A few more commands worth knowing
movie-box search "Avatar" --select # search without committing to a download
movie-box movie "Avatar" --dub Hindi # pick a specific audio dub
movie-box series "Merlin" -s 1 -e 1 # grab a TV episode
movie-box config set quality 1080P # stop typing the same flags every time
movie-box app # the full-screen Textual dashboardfrom movie_box.v1 import MovieAuto
import asyncio
async def main():
auto = MovieAuto()
movie_file, subtitle_file = await auto.run("Avatar")
print(f"Movie: {movie_file.saved_to}")
print(f"Subtitle: {subtitle_file.saved_to}")
asyncio.run(main())More API examples (progress tracking, manual confirmation, TV series, custom config) are in the docs.
Because the browser is where the ads, the fake "Download" buttons, and the
six redirect pages live. movie-box does the part you actually wanted —
search, pick, watch — in the time it takes those pages to load their first
pop-up.
movie-box is for educational purposes only. Use it only where you have
the legal right to access or download content. The project does not host
media files, does not bypass access controls, and is not affiliated with
or endorsed by MovieBox or any related provider. See DISCLAIMER.md.
Built and maintained by Saksham Pathak (parthmax).

