forked from linaspurinis/trakt.plex.scripts
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathconfig.py.example
More file actions
executable file
·36 lines (30 loc) · 962 Bytes
/
Copy pathconfig.py.example
File metadata and controls
executable file
·36 lines (30 loc) · 962 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
#!/usr/bin/env python
# coding=utf-8
# Name of the list you would like to add movies to. Gets created if such does
# not exist with given name
TRAKT_LIST_NAME = 'Top 10 Pirated Movies of The Week'
TRAKT_LIST_NAME_WATCHED = 'Top Watched Movies of The Week'
TRAKT_LIST_NAME_WATCHED_KIDS = 'Top Watched Movies of The Week for KiDS'
TRAKT_LIST_MOVIEMETER_NAME = 'IMDb Moviemeter (Top 100)'
TRAKT_LIST_MOVIEMETER_FILTERED = 'IMDb Moviemeter'
#OMDB API KEY
OMDB_APIKEY = ''
# List search tags > (more than)
VOTES = 200
YEAR = 2018
RATING = 6
#Radarr
RADARR_URL = 'http://servername:7878'
RADARR_SESSION = ''
TRAKT_BAD_RATING = 5
# To acquire the values for following two variables, go to:
#
# https://trakt.tv/oauth/applications/new
#
# and fill the form. For "Redirect URI" please enter
# "urn:ietf:wg:oauth:2.0:oob" (without quotes).
#
# After application is created, copy-paste the "Client ID" and "Client Secret"
# below.
CLIENT_ID = ''
CLIENT_SECRET = ''