Collections
Bases: TMDB
Collections functionality.
See: https://developers.themoviedb.org/3/collections
Source code in src/tmdb_client_py/movies.py
532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | |
images(**kwargs)
Get the images for a collection by id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/movies.py
566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 | |
info(**kwargs)
Get collection details by id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/movies.py
550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 | |
translations(**kwargs)
Get a list of the translations for a collection by id.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/movies.py
582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 | |