removed ujson dependency

This commit is contained in:
DJ2LS 2024-02-28 20:01:26 +01:00
parent 05a274edeb
commit c8e6e11d84
6 changed files with 4 additions and 6 deletions

View file

@ -3,7 +3,7 @@ modemport = 5000
[STATION] [STATION]
mycall = AA1AAA mycall = AA1AAA
mygrid = AA12aa mygrid = JN48ea
myssid = 1 myssid = 1
ssid_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9] ssid_list = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9]
enable_explorer = True enable_explorer = True

View file

@ -9,7 +9,7 @@ Created on 05.11.23
import requests import requests
import threading import threading
import ujson as json import json
import structlog import structlog
import sched import sched
import time import time

View file

@ -9,7 +9,7 @@ import audio
import queue import queue
import service_manager import service_manager
import state_manager import state_manager
import ujson as json import json
import websocket_manager as wsm import websocket_manager as wsm
import api_validations as validations import api_validations as validations
import command_cq import command_cq

View file

@ -1,5 +1,4 @@
import time import time
import ujson as json
import threading import threading
import numpy as np import numpy as np
class StateManager: class StateManager:

View file

@ -8,7 +8,7 @@ Created on 05.11.23
# pylint: disable=import-outside-toplevel, attribute-defined-outside-init # pylint: disable=import-outside-toplevel, attribute-defined-outside-init
import requests import requests
import ujson as json import json
import structlog import structlog
log = structlog.get_logger("stats") log = structlog.get_logger("stats")

View file

@ -5,7 +5,6 @@ PyAudio
pyserial pyserial
sounddevice sounddevice
structlog structlog
ujson
requests requests
chardet chardet
colorama colorama