Plex-Meta-Manager/docs/config/tmdb.md

24 lines
1.8 KiB
Markdown
Raw Normal View History

2022-03-08 08:06:22 +00:00
# TMDb Attributes
Configuring [TheMovieDb](https://www.themoviedb.org/) is required in order to run the script.
A `tmdb` mapping is in the root of the config file.
Below is a `tmdb` mapping example and the full set of attributes:
```yaml
tmdb:
apikey: ################################
language: en
2022-11-10 18:44:38 +00:00
region: US
cache_expiration: 60
2022-03-08 08:06:22 +00:00
```
2022-11-10 18:44:38 +00:00
| Attribute | Allowed Values | Default | Required |
2022-11-16 14:30:04 +00:00
|:-------------------|:----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|:--------|:--------:|
| `apikey` | User TMDb V3 API Key | N/A | ✅ |
| `language` | [ISO 639-1 Code](https://en.wikipedia.org/wiki/List_of_ISO_639-1_codes) of the User Language | en | ❌ |
| `region` | [ISO 3166-1 Code](https://en.wikipedia.org/wiki/ISO_3166-1#Current_codes) of the User Region for use with [Other TMDb Builders](../metadata/builders/tmdb.md#other-tmdb-builders) | None | ❌ |
| `cache_expiration` | Number of days before each cache mapping expires and has to be re-cached. | 60 | ❌ |
2022-03-08 08:06:22 +00:00
If you do not have a TMDb V3 API key please refer to this [guide](https://developers.themoviedb.org/3/getting-started/introduction).