Keywords
Bases: TMDB
Keywords functionality.
See: https://developers.themoviedb.org/3/keywords
Source code in src/tmdb_client_py/movies.py
692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 | |
info(**kwargs)
Get the details of a keyword.
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/movies.py
709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 | |
movies(**kwargs)
Get the movies that belong to a keyword.
We highly recommend using movie discover instead of this method as it is much more flexible.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required | |
include_adult
|
Choose whether to include adult (pornography) content in the results. |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/movies.py
725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 | |