New XBMC 13.2 and Weather Underground Add-on showing BROKEN - 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: Weather Add-ons (https://forum.kodi.tv/forumdisplay.php?fid=155) +---- Thread: New XBMC 13.2 and Weather Underground Add-on showing BROKEN (/showthread.php?tid=206544) |
RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-19 (2014-10-19, 16:49)elviejo Wrote: Works perfectly, my only question is the 500 hits to get the key, how that works? You are limited to 500 weather updates per day. I think the addon updates every 10 minutes so you'll be well under 500. Can I ask, did you have to install a new version of the addon to get this to work? RE: Fix for Weather Underground add-on. - elviejo - 2014-10-19 I downloaded the zip file in the database of XBMC and follow the instructions in this post. RE: New XBMC 13.2 and Weather Underground Add-on showing BROKEN - jueby - 2014-10-19 Indeed. I got V4.01 my first download. I tried again and got V4.03. That's the latest version with Personal API input. Thanks. Fix for Weather Underground add-on. - R0ss0 - 2014-10-20 (2014-10-19, 03:09)wgstarks Wrote: I couldn't get this to work. Got the api no problem. Reversed it. Encoded to base64 (utf-8). Added that to wunderground.py. All I get is a constant Fetching forecast info. Honestly I had the same problem. I had transcribed the base 64 encoded API incorrectly. If you aren't doing a copy paste, make sure you copy exactly including the double equal sign at the end. Mine had a combination of upper and lower case letters and numbers followed by the double equal signs. I did mix up the letter O and a 0 as well as a 2 and a Z. once I realized that it worked perfectly. Ross RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-20 Thanks. Actually it has started working now. I watched a movie last night and noticed that current temp was being displayed so I checked the weather and everything had started working sometime in the past 48 hours. I don't really have a clue why. I had completely given up on the fix and figured I would investigate some new addons this week. Maybe weather underground takes a while to activate new api's. Just a guess. Edit: Is there any file I can edit to get the addon to not display as BROKEN? RE: Fix for Weather Underground add-on. - Turok777 - 2014-10-20 Yes ............plugin : (weather.wunderground-personal_api) ...... only in the settings you need to enter your API key https://github.com/uNiversaI/weather.wunderground/tree/personal_api registration : http://www.wunderground.com/weather/api/ RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-20 (2014-10-20, 20:20)Turok777 Wrote: Yes ............plugin : (weather.wunderground-personal_api) ...... only in the settings you need to enter your API key Are you saying I need to install a different Weather Underground addon? RE: Fix for Weather Underground add-on. - Wanilton - 2014-10-20 Yes, one weather underground update version, only need register in addon setting your API KEY. I think the better way for you sane broken, is delete addonxx database file in userdata. When start Kodi will recreate, and it´s ok for use again. RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-20 (2014-10-20, 21:09)Wanilton Wrote: Yes, one weather underground update version, only need register in addon setting your API KEY. That didn't work. When I restarted Kodi I just got a popup that the weather underground add-on was marked as broken and would I like to disable. Edit: If someone could just post a link to the new add-on I could just download and install it. RE: Fix for Weather Underground add-on. - Kirky99 - 2014-10-21 Quick and dirty, you can do this: Edit the wunderground.py file and replace these two lines. Still need an API key. Line 6: WAIK = '[PASTE YOUR API KEY HERE]' and Line 10: url = WUNDERGROUND_URL % (WAIK, features, settings, query, fmt) Removed the base64 Decode and Invert. I think you'll still get nagged that the add-on is broken when/if it checks. RE: Fix for Weather Underground add-on. - teeedubb - 2014-10-21 Thanks, this worked for me. RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-21 (2014-10-21, 03:12)Kirky99 Wrote: Quick and dirty, you can do this: I get a Error: Script Failed Code: # -*- coding: utf-8 -*- RE: Fix for Weather Underground add-on. - teeedubb - 2014-10-21 @wgstarks, what does the log say when you get the script error? RE: Fix for Weather Underground add-on. - wgstarks - 2014-10-21 (2014-10-21, 04:57)teeedubb Wrote: @wgstarks, what does the log say when you get the script error? This is the only thing I see in a rather quick search- Code: 22:07:52 T:4534136832 ERROR: EXCEPTION Thrown (PythonToCppException) : -->Python callback/script returned the following error<-- RE: Fix for Weather Underground add-on. - teeedubb - 2014-10-21 Looks like your edits from above are causing the errors. |