Source code for pywws.service.windy

# pywws - Python software for USB Wireless Weather Stations
# http://github.com/jim-easterbrook/pywws
# Copyright (C) 2019-20  pywws contributors

# This program is free software; you can redistribute it and/or
# modify it under the terms of the GNU General Public License
# as published by the Free Software Foundation; either version 2
# of the License, or (at your option) any later version.

# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
# GNU General Public License for more details.

# You should have received a copy of the GNU General Public License
# along with this program; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1301, USA.

"""Upload data to Windy.

Windy_  is a Czech company providing interactive weather forecasting
services worldwide.

* Create account: https://stations.windy.com/
* API: https://community.windy.com/topic/8168/report-your-weather-station-data-to-windy
* Forum discussion: https://community.windy.com/topic/11014/pywws-great-python-software-app-to-send-data-to-windy
* Additional dependency: http://docs.python-requests.org/
* Example ``weather.ini`` configuration::

    [windy]
    api_key = very.long.string.indeed
    station_id =

    [logged]
    services = ['windy', 'underground']

    [live]
    services = ['windy', 'underground']

Note that you only need to specify your station ID if you have more than
one station defined for your API. Windy allows other data, such as the
latitude and longitude, to be included in the upload but it's better to
set these by editing your station at
https://stations.windy.com/stations.

.. _Windy: http://www.windy.com

"""

from contextlib import contextmanager
from datetime import timedelta
import logging
import os
import sys

import requests

import pywws.service

__docformat__ = "restructuredtext en"
service_name = os.path.splitext(os.path.basename(__file__))[0]
logger = logging.getLogger(__name__)


[docs]class ToService(pywws.service.CatchupDataService): config = { 'api_key' : ('', True, None), 'station_id' : ('', False, 'station'), } interval = timedelta(seconds=290) logger = logger service_name = service_name template = """ #live# #idx "'dateutc' : '%Y-%m-%d %H:%M:%S',"# #wind_ave "'wind' : '%.1f',"# #wind_dir "'winddir' : '%.0f'," "" "winddir_degrees(x)"# #wind_gust "'gust' : '%.2f',"# #hum_out "'humidity' : '%.d',"# #temp_out "'temp' : '%.1f',"# #rel_pressure "'mbar' : '%.1f',"# #calc "dew_point(data['temp_out'], data['hum_out'])" "'dewpoint': '%.1f',"# #calc "rain_hour(data)" "'precip': '%.2f',"# """ def __init__(self, context, check_params=True): super(ToService, self).__init__(context, check_params) # extend template if context.params.get('config', 'ws type') == '3080': self.template += """ #uv "'uv' : '%d',"# """
[docs] @contextmanager def session(self): with requests.Session() as session: yield session
[docs] def upload_data(self, session, prepared_data={}): url = 'https://stations.windy.com/pws/update/' + self.params['api_key'] try: rsp = session.get(url, params=prepared_data, timeout=60) except Exception as ex: return False, repr(ex) if rsp.status_code != 200: return False, 'http status: {:d}'.format(rsp.status_code) text = rsp.text.strip() return 'SUCCESS' in text, 'server response "{:s}"'.format(text)
if __name__ == "__main__": sys.exit(pywws.service.main(ToService))