Skip to main content

No project description provided

Project description


Flixpy

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

GitHub Workflow Status Version PyPI - Downloads MIT Buy Me A Coffee

Links

Features

  • Movies and TV shows
    • Get streaming providers and a direct link to watch
    • Get the direct link to watch each episode
    • View metadata such as title, overview, ratings, actors
  • Searching and browsing
    • Search filters (sort by rating, tag, genre)
  • Actors

Experimental

  • Integration with Popcorn API
  • Functions to download subtitles for movies and episodes

Usage

Installation

pip3 install flixpy

Basic examples

Get the a movie's Netflix link:

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

List all episodes in a show:

from flixpy import Show

show = Show("breaking-bad-2008")

for season in show:
  for episode in season:
    print(episode.title)

List genres of a show:

from flixpy import Show

show = Show('breaking-bad-2008')
show.genres
# => [<Genre.CRIME>, <Genre.THRILLER>]

Browse animated shows in Amazon Prime Video:

Coming soon

See more examples in the documentation.

Contributing

Flixpy uses poetry. To set up your environment, clone or download this repository then run the following commands:

poetry install
poetry shell

License

MIT

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

flixpy-0.0.3.post2.tar.gz (11.0 kB view hashes)

Uploaded Source

Built Distribution

flixpy-0.0.3.post2-py3-none-any.whl (13.3 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page