Phylm
Project description
Phylm
Film data aggregation with async support.
Motivation
When deciding which film to watch next, it can be helpful to have some key datapoints at your fingertips, for example, the genre, the cast, the Metacritic score and, perhaps most importantly, the runtime. This package provides a Phylm class to gather information from various sources for a given film.
Installation
pip install phylm
Usage
>>> from phylm import Phylm
>>> p = Phylm("The Matrix")
>>> await p.load_sources(["imdb", "mtc"])
>>> p.imdb.year
1999
>>> p.imdb.rating
8.7
>>> p.mtc.rating
73
phylm also provides some tools around movie search results and more:
>>> from phylm.tools import search_movies, get_streaming_providers
>>> search_movies("the matrix")
[{
'title': 'The Matrix',
'kind': 'movie',
'year': 1999,
'cover_photo': 'https://some-url.com',
'imdb_id': '0133093',
}, {
'title': 'The Matrix Reloaded',
'kind': 'movie',
'year': 2003,
'cover_photo': 'https://some-url.com',
'imdb_id': '0234215',
}, {
...
>>> get_streaming_providers("0234215", regions=["gb"])
{
'gb': {
'rent': [{
'display_priority': 8,
'logo_path': '/pZgeSWpfvD59x6sY6stT5c6uc2h.jpg',
'provider_id': 130,
'provider_name': 'Sky Store',
}],
'flatrate': [{
'display_priority': 8,
'logo_path': '/ik9djlxNlex6sY6Kjsundc2h.jpg',
'provider_id': 87,
'provider_name': 'Netflix',
}]
}, {
...
}
Help
See the documentation for more details.
Licence
MIT
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file phylm-6.1.4.tar.gz.
File metadata
- Download URL: phylm-6.1.4.tar.gz
- Upload date:
- Size: 12.2 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
769603193aee3ff6670bd5346e5872825b727592e1b94f3de0dcc875ee81fc96
|
|
| MD5 |
fb2233b321f291be5bb757872b88dc63
|
|
| BLAKE2b-256 |
dfdd849b1f1d24d75f76cc07394cd3153d93dee464e0cb5a319ef9330da6a357
|
File details
Details for the file phylm-6.1.4-py3-none-any.whl.
File metadata
- Download URL: phylm-6.1.4-py3-none-any.whl
- Upload date:
- Size: 15.6 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: twine/4.0.2 CPython/3.9.18
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
a80f7151903a280321a7b76dfece2348a0439a7f471b56374308475511bc2493
|
|
| MD5 |
11c0ca0b05bcc502e2e3b33d4d7990d3
|
|
| BLAKE2b-256 |
df7863fedf2e372b720285e9134fd17fa676716f3382415bb491ffb02294f354
|