Re: [weewx-user] Weewx and twitter

2022-04-04 Thread Andrey Mihaylov
I have made some progress, but now Ascii encoding issue appears. how this could be fixed? thanks, Apr 4 12:35:41 neo-rp1 weewx[7933] ERROR weewx.restx: Twitter: Unexpected exception of type Apr 4 12:35:42 neo-rp1 weewx[7933] DEBUG weewx.cheetahgenerator: Using search list ['weewx.cheetahge

Re: [weewx-user] Weewx and twitter

2022-04-04 Thread Tom Keffer
Hello, A couple questions: What version of the twitter uploader are you using? You want v0.15. What version of Python are you using? On Mon, Apr 4, 2022 at 2:47 AM Andrey Mihaylov wrote: > I have made some progress, but now Ascii encoding issue appears. > > how this could be fixed? > > tha

[weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread DR
I have been looking for some way to open a command line or browser driven version of SQLite to snoop around inside the WeeWx database just to become more familiar with the layout.  I'm not trying to correct any errors (I am not that worried about the way I use WeeWx mainly to capture the day an

Re: [weewx-user] Weewx and twitter

2022-04-04 Thread Andrey Mihaylov
Hello, Twitter uploader is twython==3.7.0 on Python 2.7. На пн, 4.04.2022 г. в 15:28 ч. Tom Keffer написа: > Hello, > > A couple questions: > > What version of the twitter uploader are you using? You want v0.15. > > What version of Python are you using? > > > On Mon, Apr 4, 2022 at 2:47 AM

Re: [weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread 'John Kline' via weewx-user
You can browse without shutting down weewx. Just pass sqlite3 the location of your weewx database (for me, that’s in /home/weewx/archive). $ sqlite3 /home/weewx/archive/weewx.sdb SQLite version 3.34.1 2021-01-20 14:10:07 Enter ".help" for usage hints. sqlite> select dateTime, outTemp from archi

Re: [weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread Greg Troxel
And, in addition to the advice you just got: Make a backup of the database before you start. If you just want to look, instead of running sqlite3 on the database, copy the file to a different place and look at the copy. If you aren't skilled in SQL, you might damage the database by typi

Re: [weewx-user] Weewx and twitter

2022-04-04 Thread Tom Keffer
Sorry. What we need is the version of the twitter uploader. Look in file bin/user/twitter.py for a line that looks something like VERSION = "0.15" If it's a lesser version, the first thing I'd try is upgrading to V0.15 -tk On Mon, Apr 4, 2022 at 6:11 AM Andrey Mihaylov wrote: > Hello, > > Tw

Re: [weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread Chuck Rhode
-BEGIN PGP SIGNED MESSAGE- Hash: SHA1 On Mon, 4 Apr 2022 08:04:06 -0500 DR wrote: > I have been looking for some way to open a command line or browser > driven version of SQLite to snoop around inside the WeeWx database > just to become more familiar with the layout. The thing you want

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread vince
The result from ~$ PYTHONPATH=/usr/share/weewx python3 /usr/share/weewx/user/interceptor.py --device=observer --port=80: Traceback (most recent call last): File "/usr/share/weewx/user/interceptor.py", line 2661, in device = InterceptorDriver.DEVICE_TYPES.get(options.device_type)( File "/

Re: [weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread DR
Thank you for the replies.  I will try the various alternatives to see which works best for me right now. Learning is sometimes difficult when your brain is stuck in windows land!  When things are put in paths when loaded, and where things are  stored in Debian is still a learning curve for me

Re: [weewx-user] Weewx and twitter

2022-04-04 Thread Andrey Mihaylov
yes, the version is 0.15 На пн, 4.04.2022 г. в 17:00 ч. Tom Keffer написа: > Sorry. What we need is the version of the twitter uploader. Look in file > bin/user/twitter.py for a line that looks something like > > VERSION = "0.15" > > If it's a lesser version, the first thing I'd try is upgradi

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread I L
With sudo the last line is changed to: OSError: [Errno 98] Address already in use This is what happens also on the working server. Virusfritt. www.avast.com

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread Francesco
Yeah, you should try with sudo, but first you have to stop the weewx service. If it's stopped and you have the "Address already in use" exception, then there is something else running on port 80 Il giorno lunedì 4 aprile 2022 alle 19:30:15 UTC+2 IL ha scritto: > With sudo the last line is chan

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread I L
I missed that. Now I get: mapped packet: {'dateTime': 1649098956, 'usUnits': 16} from the new server (when it is enabled in the weather console). On the working server it looks like this: mapped packet: {'usUnits': 1, 'inTemp': 68.7, 'pressure': 28.651, 'windGust': 1.1, 'inHumidity': 32.0, 'dat

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread Francesco
Well, it seems that the interceptor on the new installation is not mapping/decoding correctly the packets received from the weather console. It's the interceptor.py (it should be located in /usr/share/weewx/user/) you're using on the new installation the same of the old one (or are you using s

Re: [weewx-user] Re: Problem with moving to a new server

2022-04-04 Thread Francesco
Well, it seems that the interceptor on the new installation is not mapping/decoding correctly the packets received from the weather console. Is the interceptor.py (it should be located in /usr/share/weewx/user/) you're using on the new installation the same of the old one (or are you using so

Re: [weewx-user] Opening a SQLite session on my Rasp Pi 4 to look around in the WeeWx database

2022-04-04 Thread Chuck Rhode
On Mon, 4 Apr 2022 08:04:06 -0500 DR wrote: > I have been looking for some way to open a command line or browser > driven version of SQLite to snoop around inside the WeeWx database > just to become more familiar with the layout. The thing you want is *sqlitebrowser*. Install it. Then, just

[weewx-user] GW1000 driver not reading data from a GW1100/GW2000 console/hub with an Ecowitt WS90 connected

2022-04-04 Thread 'Rainer Lang' via weewx-user
Hi Gary, I have weewx 4.5.1 with a GW1000 driver 0.4.2 connected to a GW2000 with a WS90 and a WH40 rain gauge attached. The GW2000 and the GW1100 consoles support since firmware 2.1.2 two rain gauges being connected in parallel and they show the data of both rain gauges (if both connected to

[weewx-user] Re: GW1000 driver not reading data from a GW1100/GW2000 console/hub with an Ecowitt WS90 connected

2022-04-04 Thread gjr80
Rainer, Yes I have been following the wxforum posts re the GW2000 and rain gauges. The current driver release (v0.4.2) does not support any WS90 specific rain fields, in fact the current Ecowitt API release, v1.6.3, whilst containing reference to the WS90 (also referred to as the WH90) provides