It's alive, and it works reliably with the Vantage driver! But it's untested for any other drivers.
I would greatly appreciate it if others took it for a spin with other drivers! To install, it's probably best to just run out of a git repository, with the python3 branch, but using your existing weewx.conf file. Don't try to install it, because it will overwrite your existing, presumably stable, Python 2 installation. Here's a super easy way to set things up using a virtual environment. # Install pipenv *sudo pip install pipenv* # Get a copy of the WeeWX repository (if you don't already have one) *cd ~* *mkdir git* *cd git* *git clone https://github.com/weewx/weewx.git <https://github.com/weewx/weewx.git>* *cd weewx* # Check out the python3 branch: *git checkout python3* # Build a virtual environment, suitable for Python 3: *cd util/pipenv* *pipenv install* *pipenv run ../../bin/weewxd /home/weewx/weewx.conf*
