From 00c98fe455a7c25f78a49a41d7b659d55fd1a9b4 Mon Sep 17 00:00:00 2001 From: f4exb Date: Wed, 17 Aug 2022 11:41:28 +0200 Subject: [PATCH] scriptsapi: removed obsolete config.py -I option --- scriptsapi/config.py | 11 ----------- 1 file changed, 11 deletions(-) diff --git a/scriptsapi/config.py b/scriptsapi/config.py index fc04478fb..1aa53d110 100755 --- a/scriptsapi/config.py +++ b/scriptsapi/config.py @@ -16,7 +16,6 @@ import requests, traceback, sys, json, time from optparse import OptionParser base_url = "http://127.0.0.1:8091/sdrangel" -app_gui = False nb_devicesets = 0 requests_methods = { @@ -34,7 +33,6 @@ def getInputOptions(): parser.add_option("-a", "--address", dest="address", help="Address and port. Default: 127.0.0.1:8091", metavar="ADDRESS", type="string") parser.add_option("-j", "--json-file", dest="json_file", help="JSON file containing commands. Mandatory", metavar="FILE", type="string") parser.add_option("-i", "--init", dest="initialize", help="Initialize instance before running script", action="store_true") - parser.add_option("-1", "--ignore-first-posts", dest="ignore_first_posts", help="Ignore first deviceset post in sequence", action="store_true") parser.add_option("-d", "--delay", dest="delay_ms", help="force delay after each command (ms)", metavar="TIME", type="int") (options, args) = parser.parse_args() @@ -46,11 +44,9 @@ def getInputOptions(): # ====================================================================== def get_instance_details(): - global app_gui global nb_devicesets r = requests_methods["GET"](url=base_url) if r.status_code // 100 == 2: - app_gui = r.json()["appname"] == "SDRangel" nb_devicesets = r.json()["devicesetlist"]["devicesetcount"] # ====================================================================== @@ -79,8 +75,6 @@ def main(): if options.initialize: initialize() - nb_deviceset_posts = 0 - with open(options.json_file) as json_file: commands = json.load(json_file) for command in commands: @@ -89,11 +83,6 @@ def main(): continue url = base_url + endpoint http_method = command.get('method', None) - if endpoint == "/deviceset" and http_method == "POST": - nb_deviceset_posts += 1 - if nb_deviceset_posts == 1 and options.ignore_first_posts: - print("First deviceset creation ignored") - continue method = requests_methods.get(http_method, None) if http_method is not None else None if method is not None: request_params = command.get('params', None)