Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread Remy LAVABRE
*with* : unzip -l AWEKAS.zip *we have* : (weewx-venv) remy@remy-virtual-machine:~/weewx-data$ unzip -l AWEKAS.zip Archive: AWEKAS.zip Length DateTimeName - -- - 0 2024-02-29 08:42 AWEKAS/ 565 2024-02-29 08:42 AWEKAS/install.py 351

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread Remy LAVABRE
*with :* *from weecfg.extension import ExtensionInstaller* def loader(): return awekaswxInstaller() class awekaswxInstaller(ExtensionInstaller): def __init__(self): super(awekaswxInstaller, self).__init__( version="1.3", name='awekaswx', descrip

Re: [weewx-user] Broken installation after upgrade to v5.0.2

2024-02-28 Thread fLsh
ok funny, after a reboot, v.5.0.2 is getting loaded. Error is now: -- Logs begin at Thu 2024-02-29 00:06:39 CET, end at Thu 2024-02-29 08:06:40 CET. -- Feb 29 00:06:53 loxberry systemd[1]: Started WeeWX. Feb 29 00:06:56 loxberry weewxd[932]: INFO __main__: Initializing weewxd version 5.0.2 Feb

Re: [weewx-user] Broken installation after upgrade to v5.0.2

2024-02-28 Thread fLsh
yeah basicaly driver is not running and therefore Data from weatherlink Live cannot be read. But question is, athough 5.0.2 is installed and driver v1.1.3, why are those not used and instead, 5.0.1 is being loaded? Tom Keffer schrieb am Donnerstag, 29. Februar 2024 um 01:31:38 UTC+1: > I hate t

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread gjr80
I thought we were trying to solve the OPs problem? The OPs problem has nothing to do with setuptools (or perhaps more correctly the python distutils package); setuptools/distutils is not used in the OPs installer and there is no error re distutils in the provided console output. If the absence

Re: [weewx-user] leap year and span

2024-02-28 Thread František Slimařík
Yes, right #for $i in $span($day_delta=365).days #set fDate = $i.dateTime.format("%-d. %B %Y") $fDate;$i.outTemp.avg.format(add_label=False) #end for čt 29. 2. 2024 v 1:49 odesílatel Tom Keffer napsal: > I don't know. How are you using the $span() tags? In a loop, I assume? > > On Wed, Feb 28,

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread vince
Dunno Gary but I had to install that for StackedWindRose to get v5 pip to install it successfully here. Details on the issue I opened on your github repo. On Wednesday, February 28, 2024 at 5:56:14 PM UTC-8 gjr80 wrote: > Not quite sure of the relevance of setuptools; if that was the problem

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread gjr80
Not quite sure of the relevance of setuptools; if that was the problem here it would be VERY evident. Gary On Thursday 29 February 2024 at 11:26:15 UTC+10 vince wrote: I found an old extension of Gary’s the other day that needed setuptools to be able to install it…it has the same old syntax…

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread gjr80
Not quite sure this is the problem, as far as I know the following gives backward compatibility with setup.ExtensionInstaller: # Very old extensions did: # from setup import ExtensionInstaller # Redirect references to 'setup' to me instead. sys.modules['setup'] = sys.modules[__name__] Plus I a

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread vince
I found an old extension of Gary’s the other day that needed setuptools to be able to install it…it has the same old syntax… On Wednesday, February 28, 2024 at 4:52:49 PM UTC-8 Tom Keffer wrote: > I haven't tried it, but I'm thinking the problem is that the awekas > extension uses > > *from set

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread Tom Keffer
I haven't tried it, but I'm thinking the problem is that the awekas extension uses *from setup import ExtensionInstaller* which has been deprecated for a long time and will no longer work with V5. It should be *from weecfg.extension import ExtensionInstaller* Try modifying the extension and s

Re: [weewx-user] leap year and span

2024-02-28 Thread Tom Keffer
I don't know. How are you using the $span() tags? In a loop, I assume? On Wed, Feb 28, 2024 at 3:25 PM František Slimařík wrote: > Hello, > > is it possible that leap year causes issue in span tag? I am using these: > > $span($day_delta=365).days > $span($year_delta=1).months > > Feb 29 00:10:43

Re: [weewx-user] Broken installation after upgrade to v5.0.2

2024-02-28 Thread Tom Keffer
I hate to "pass the buck," but this looks like an issue with the new WeatherLink Live driver. The log entry gets cut off with the phrase "Caus", which I suspect would give you the "cause." Take a look in your log. On Wed, Feb 28, 2024 at 3:03 PM fLsh wrote: > Hi folks, > > I was happily run

[weewx-user] leap year and span

2024-02-28 Thread František Slimařík
Hello, is it possible that leap year causes issue in span tag? I am using these: $span($day_delta=365).days $span($year_delta=1).months Feb 29 00:10:43 rocky-weather-machine weewxd[405028]: ERROR weewx.cheetahgenerator: Evaluation of template /etc/weewx/skins/neowx/year.html.tmpl failed with e

[weewx-user] Re: WeeWx Upgrade from v4 to v5

2024-02-28 Thread gjr80
The post with the log that shows the error was deleted ? This look suspiciously like this problem . Did you some time in the past remove seemingly unused settings from [DisplayOptions] in the Seasons skin.conf? It seems that v

[weewx-user] Broken installation after upgrade to v5.0.2

2024-02-28 Thread fLsh
Hi folks, I was happily running 4.10.2 on my Raspberry Pi 4 with many changes to skins, drivers and templates. Today I did an upgrade to 5.0.1 which was running too. Then I so in apt update that there is a public key missing which I resolved with the documentation. After that, 5.0.2 was availab

[weewx-user] Re: WeeWx Upgrade from v4 to v5

2024-02-28 Thread vince
Did you modify the Seasons skin at all ? ...and your log has your PWS password in it :-( You might try enabling the Standard skin as a test and see if that works. It's less automagical. That would be a good data point. Move it above Seasons in weewx.conf so it runs and hopefully succeeds be

[weewx-user] Re: WeeWx Upgrade from v4 to v5

2024-02-28 Thread Pete AndDebbie
More Detailed Log (this from below log - might have something to do with it...) ( Feb 28 16:05:20 46141 weewxd[646]: ERROR weewx.cheetahgenerator: Evaluation of template /etc/weewx/skins/Seasons/index.html.tmpl failed with exception '' ) Feb 28 16:01:08 46141 weewxd[646]: DEBUG weeutil.ftpu

[weewx-user] Re: WeeWx Upgrade from v4 to v5

2024-02-28 Thread Pete AndDebbie
Here is the Log... Did - systemctl weewx stopthen systemclt weewx startand got below... It was working 100% as version 4 - then upgrade to v5...no joy... -pete [image: WeeWx-Log.JPG] On Wednesday, February 28, 2024 at 3:35:14 PM UTC-6 gjr80 wrote: > Impossible to say without a log

[weewx-user] Re: WeeWx Upgrade from v4 to v5

2024-02-28 Thread gjr80
Impossible to say without a log extract . Gary On Thursday 29 February 2024 at 07:00:21 UTC+10 debbiep...@gmail.com wrote: > Have a strange problem after upgrading working WeeWx from v4 to v5 > > See attached .JPG

Re: [weewx-user] I'm desperate to fix my NOAA reports. Can I please pay someone to help fix my database and recover this data?

2024-02-28 Thread vince
I don't know why, but my reply was deleted by Google. I did a test and your commands look ok and worked for me here, so you might want to check your wpm.conf file for errors. You need a wpm_binding stanza defined under DataBindings and that database defined under Databases. Post your [DataBi

[weewx-user] Re: Apt update source for weewx.

2024-02-28 Thread didier....@gmail.com
Hi again Problem solved We need to re-import keys by this command: curl -sSf 'https://weewx.com/keys.html' | sudo gpg --dearmor -o /etc/apt/trusted.gpg.d/weewx.gpg --yes Le mercredi 28 février 2024 à 17:16:43 UTC+1, didier@gmail.com a écrit : > Hi > > I have upgrade debian 10 to debian 11

Re: [weewx-user] I'm desperate to fix my NOAA reports. Can I please pay someone to help fix my database and recover this data?

2024-02-28 Thread loeriver
I tried to follow the proposal of an extension of the DB schema, but as I am using a quite different setup (similar to / derived from the Brultech monitor) I failed in the step of updating. My attempt was to add the until now calculated value "heating_COP" to the database. Adding the column wo

[weewx-user] Re: Apt update source for weewx.

2024-02-28 Thread didier....@gmail.com
Hi I have upgrade debian 10 to debian 11 bullseye, and I have changed /etc/apt/sources.list.d/weewx.list with: deb [arch=all] http://weewx.com/apt/python3 *buster InRelease* instead of deb [arch=all] http://weewx.com/apt/python3 *bullseye main* But after apt update I have a warning/error about

[weewx-user] Re: WeeWX 5.0.2 voltages with 6 digits after the decimal point

2024-02-28 Thread Mike G.
Yes, that was it. Thank you grj80, I was also able to assign the signal quality of other unknown devices. Have a nice day and stay healthy. gjr80 schrieb am Dienstag, 27. Februar 2024 um 20:29:12 UTC: > The problem is WeeWX does not know whether your sensor battery fields are > temperatures,

Re: [weewx-user] Problem with WeeWX5 "driver" directory

2024-02-28 Thread gjr80
What does unzip -l AWEKAS.zip show? Does bin/user/awekaswx.py actually exist in the zip file? Gary On Wednesday 28 February 2024 at 17:54:49 UTC+10 remy.l...@gmail.com wrote: > Hello Tom, > First problem : when trying to install a driver in virtual environnement : > > (weewx-venv) remy@remy-virt