X-Git-Url: https://wylark.com/src/infoex-autowx.git/blobdiff_plain/cfda323d245b20f761c821e22cb19edaf98974c0..05ff6eb0591fa21c639721197f6f7c50720e6d33:/infoex-autowx.py diff --git a/infoex-autowx.py b/infoex-autowx.py index c2d20f7..af1ae31 100755 --- a/infoex-autowx.py +++ b/infoex-autowx.py @@ -29,6 +29,7 @@ import logging import os import sys import time +import urllib3 import importlib.util from ftplib import FTP @@ -42,11 +43,13 @@ import zeep import zeep.cache import zeep.transports -__version__ = '3.1.0' +__version__ = '3.1.1' LOG = logging.getLogger(__name__) LOG.setLevel(logging.NOTSET) +urllib3.disable_warnings() + def get_parser(): """Return OptionParser for this program""" parser = ArgumentParser() @@ -417,6 +420,7 @@ def setup_infoex_counterparts_mapping(provider): def get_nrcs_data(begin, end, station): """get the data we're after from the NRCS WSDL""" transport = zeep.transports.Transport(cache=zeep.cache.SqliteCache()) + transport.session.verify = False client = zeep.Client(wsdl=station['source'], transport=transport) remote_data = {}