Flixpy

Information on movies, shows, streaming platforms, people, and more

Features

📺

Get links to popular streaming services such as Netflix and Disney Plus

⌨️

Autocompletion and type checking in VSCode

🔎

Search or browse movies and TV shows

Getting started

Installation

pip install flixpy
# on Mac or Linux
pip3 install flixpy

Basic usage

from flixpy import Movie, StreamingProvider
movie = Movie("extraction-2020")
if movie.is_on(StreamingProvider.NETFLIX):
netflix_link = movie.link_for(StreamingProvider.NETFLIX)
# => https://www.netflix.com/watch/80230399
💡

This library is still in development. Expect changes!