Artwork Downloader - Printable Version +- Kodi Community Forum (https://forum.kodi.tv) +-- Forum: Support (https://forum.kodi.tv/forumdisplay.php?fid=33) +--- Forum: Add-on Support (https://forum.kodi.tv/forumdisplay.php?fid=27) +---- Forum: Program Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=151) +---- Thread: Artwork Downloader (/showthread.php?tid=114633) Pages:
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
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
|
Artwork Downloader - iMak - 2017-07-17 (2017-07-16, 23:55)shedrock Wrote: I have fixed it. You just need to register your own API keys on fanart.tv and themoviedb.org. Once you've done that you just need to edit the following files:For themoviedb.org do we have to apply for developer or professional API key? RE: Artwork Downloader - shedrock - 2017-07-17 @iMak - I applied for the Developer Key. RE: Artwork Downloader - Gracus - 2017-07-17 Maybe the addon dev could add an option allowing to enter personal keys Would be simpler for users RE: Artwork Downloader - shedrock - 2017-07-17 (2017-07-17, 11:06)iMak Wrote: @shedrock I actually know nothing about all this. I just assumed it was an API thing and applied for my own keys. Once I applied them, it worked. I would also think this would be a permanent fix because you now have your own API keys. Then again, I could be wrong. RE: Artwork Downloader - shedrock - 2017-07-17 (2017-07-17, 18:15)Gracus Wrote: Maybe the addon dev could add an option allowing to enter personal keys I agree 100%, but I am sure he must be very busy with other Kodi matters. I am sure he will eventually get to it. Cheers! RE: Artwork Downloader - shedrock - 2017-07-17 (2017-07-17, 15:27)Simkin84 Wrote:(2017-07-17, 00:06)famitsu1 Wrote: Brill work shedrock. But to total newb dunces like myself could you provide a step by step guide, as at the mo API keys and editing files (from what to what) may as well be a foreign language.Would also like to know. Edit what to what. The 2 files I am pointing to in my post tells you what you do. You just have to change the API key in each of those files. You actually can't miss it once you see inside the files. RE: Artwork Downloader - Hitcher - 2017-07-17 I'm just guessing but I think it's related to the recent API changes that caused our scrapes to also stop working. RE: Artwork Downloader - Gracus - 2017-07-17 (2017-07-17, 18:50)Hitcher Wrote: I'm just guessing but I think it's related to the recent API changes that caused our scrapes to also stop working. If that was the case, it would not work after entering personal API keys Or maybe I misunderstand something RE: Artwork Downloader - iMak - 2017-07-17 (2017-07-17, 18:15)shedrock Wrote:Thanks. But if the addon got updated by the developer, won't this personal API be changed?(2017-07-17, 11:06)iMak Wrote: @shedrock Artwork Downloader - iMak - 2017-07-17 After changing the API's, Poster and Fanart are back to the listing of Artwork Downloader. Thank you @shedrock RE: Artwork Downloader - shedrock - 2017-07-17 (2017-07-17, 21:35)iMak Wrote:(2017-07-17, 18:15)shedrock Wrote:Thanks. But if the addon got updated by the developer, won't this personal API be changed?(2017-07-17, 11:06)iMak Wrote: @shedrock (2017-07-17, 22:25)iMak Wrote: After changing the API's, Poster and Fanart are back to the listing of Artwork Downloader. It really shouldn't matter because you're now using your own API instead of everyone using the same, which I would imagine is better in terms of bogging the sites down. I am not 100% sure TBH. RE: Artwork Downloader - famitsu1 - 2017-07-18 Huge thanks once again shedrock for taking the time to explain the whole process. Just tried it now and hey presto everything is back working again as it should. Brill job sir. RE: Artwork Downloader - Simkin84 - 2017-07-18 Working again here also, great work and thank you Shedrock! RE: Artwork Downloader - Code101 - 2017-07-18 Sorry to be a total noob but once I have the API for tmdb do I just add it to the tmdb.py file? I did this but just get an error in the addon. Or do I have to "create application" on the site too? RE: Artwork Downloader - shedrock - 2017-07-18 (2017-07-18, 14:34)Code101 Wrote: Sorry to be a total noob but once I have the API for tmdb do I just add it to the tmdb.py file? I did this but just get an error in the addon. Or do I have to "create application" on the site too? If you are getting an error, it probably means you're entering it incorrectly. Make sure to use the Notepad++ editor. Changing the API key is all that is required, and yes, just the tmdb.py file is necessary to change. Example: Code: API_KEY = 'enter-your-api-key-here' |