#!/usr/bin/python3 """ This file is part of OpenWebRX, an open-source SDR receiver software with a web UI. Copyright (c) 2013-2015 by Andras Retzler Copyright (c) 2019-2020 by Jakob Ketterl This program is free software: you can redistribute it and/or modify it under the terms of the GNU Affero General Public License as published by the Free Software Foundation, either version 3 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 Affero General Public License for more details. You should have received a copy of the GNU Affero General Public License along with this program. If not, see . """ from owrx.listing import ListingUpdater from owrx.config import Config import logging logging.basicConfig(level=logging.DEBUG, format="%(asctime)s - %(name)s - %(levelname)s - %(message)s") logger = logging.getLogger(__name__) if __name__ == "__main__": pm = Config.get() if "public_listing" not in pm or not pm["public_listing"]: logger.error('Public listing on is not activated. Please check "public_listing" in your config.') exit(1) if "listing_key" not in pm or pm["listing_key"] is None or pm["listing_key"] == "": logger.error('Missing "listing_key" in your config. Aborting') exit(1) ListingUpdater().update()