Guest Sessions
Bases: TMDB
Guest Sessions functionality.
See: https://developers.themoviedb.org/3/guest-sessions
Source code in src/tmdb_client_py/account.py
390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | |
rated_movies(**kwargs)
Get the rated movies for a guest session.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required | |
sort_by
|
(optional) Allowed Values: created_at.asc, created_at.desc |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/account.py
411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 | |
rated_tv(**kwargs)
Get the rated TV shows for a guest session.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required | |
sort_by
|
(optional) Allowed Values: created_at.asc, created_at.desc |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/account.py
428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 | |
rated_tv_episodes(**kwargs)
Get the rated TV episodes for a guest session.
Parameters:
| Name | Type | Description | Default |
|---|---|---|---|
language
|
(optional) ISO 639-1 code. |
required | |
sort_by
|
(optional) Allowed Values: created_at.asc, created_at.desc |
required |
Returns:
| Type | Description |
|---|---|
|
A dict representation of the JSON returned from the API. |
Source code in src/tmdb_client_py/account.py
445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 | |