Port Changes

This commit is contained in:
Alex Orid 2021-05-06 00:07:53 -04:00
parent 8c7bc3e56b
commit c30decd0ef
23 changed files with 42 additions and 42 deletions

View File

@ -56,7 +56,7 @@ class ChannelReward_Hydration(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -72,7 +72,7 @@ class ChannelReward_Hydration(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -47,7 +47,7 @@ class ChannelReward_RubiksCube(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -63,7 +63,7 @@ class ChannelReward_RubiksCube(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_Suggest_Poll(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_Suggest_Poll(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_TTS_Message(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_TTS_Message(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_Workout_Pushups(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_Workout_Pushups(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_Workout_Situps(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_Workout_Situps(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_Workout_Squats(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_Workout_Squats(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -45,7 +45,7 @@ class ChannelReward_TwitchBits(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -61,7 +61,7 @@ class ChannelReward_TwitchBits(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -46,7 +46,7 @@ class ChannelReward_TwitchSubs(AbstractChannelRewards, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -62,7 +62,7 @@ class ChannelReward_TwitchSubs(AbstractChannelRewards, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -57,7 +57,7 @@ class Command_chyron_v2(AbstractCommand, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -47,7 +47,7 @@ class Command_lights_v2(AbstractCommand, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -107,7 +107,7 @@ class Command_Text_v2(AbstractCommand, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -67,7 +67,7 @@ class Command_tts_v2(AbstractCommand, metaclass=ABCMeta):
# todo need to url-escape command and rest # todo need to url-escape command and rest
params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest}) params = urlencode({'user_name': username, 'light_group': light_group, 'command': command, 'rest':rest})
#standalone_lights #standalone_lights
url = "http://standalone_lights:42069/api/v1/exec_lights?%s" % params url = "http://standalone_lights:42042/api/v1/exec_lights?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -83,7 +83,7 @@ class Command_tts_v2(AbstractCommand, metaclass=ABCMeta):
def send_TTS(self, username, message): def send_TTS(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -5,7 +5,7 @@ services:
volumes: volumes:
- "./:/Praxis/" - "./:/Praxis/"
ports: ports:
- 6009:6009 - 42010:42010
environment: environment:
- ISDOCKER=cat - ISDOCKER=cat
standalone_channelrewards: standalone_channelrewards:
@ -13,7 +13,7 @@ services:
volumes: volumes:
- "./:/Praxis/" - "./:/Praxis/"
ports: ports:
- 6969:6969 - 42069:42069
environment: environment:
- ISDOCKER=cat - ISDOCKER=cat
standalone_lights: standalone_lights:
@ -21,7 +21,7 @@ services:
volumes: volumes:
- "./:/Praxis/" - "./:/Praxis/"
ports: ports:
- 42069:42069 - 42042:42042
environment: environment:
- ISDOCKER=cat - ISDOCKER=cat
standalone_tts_core: standalone_tts_core:
@ -29,7 +29,7 @@ services:
volumes: volumes:
- "./:/Praxis/" - "./:/Praxis/"
ports: ports:
- 60809:60809 - 42064:42064
environment: environment:
- ISDOCKER=cat - ISDOCKER=cat
standalone_websource: standalone_websource:
@ -37,7 +37,7 @@ services:
volumes: volumes:
- "./:/Praxis/" - "./:/Praxis/"
ports: ports:
- 5500:5500 - 42088:42088
environment: environment:
- ISDOCKER=cat - ISDOCKER=cat
standalone_twitchscript: standalone_twitchscript:

View File

@ -110,4 +110,4 @@ def exec_reward():
if __name__ == '__main__': if __name__ == '__main__':
init() init()
api.run(host='0.0.0.0', port=6969) api.run(host='0.0.0.0', port=42069)

View File

@ -83,4 +83,4 @@ def exec_command():
if __name__ == '__main__': if __name__ == '__main__':
init() init()
api.run(host='0.0.0.0', port=6009) api.run(host='0.0.0.0', port=42010)

View File

@ -105,7 +105,7 @@ class Discord_Module(discord.Client):
async def is_command(self, word: str) -> bool: async def is_command(self, word: str) -> bool:
# todo need to url-escape word # todo need to url-escape word
clean_param = urlencode({'name': word}) clean_param = urlencode({'name': word})
url = "http://standalone_command:6009/api/v1/command?%s" % clean_param url = "http://standalone_command:42010/api/v1/command?%s" % clean_param
resp = requests.get(url) resp = requests.get(url)
return resp.status_code == 200 return resp.status_code == 200
@ -118,7 +118,7 @@ class Discord_Module(discord.Client):
'rest': rest, 'rest': rest,
'bonus_data': realMessage}) 'bonus_data': realMessage})
url = "http://standalone_command:6009/api/v1/exec_command?%s" % params url = "http://standalone_command:42010/api/v1/exec_command?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -180,7 +180,7 @@ class Discord_Module(discord.Client):
async def exec_tts_sender(self, username, message): async def exec_tts_sender(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -302,5 +302,5 @@ def exec_lights():
if __name__ == "__main__": if __name__ == "__main__":
init() init()
api.run(host='0.0.0.0', port=42069) api.run(host='0.0.0.0', port=42042)
#testModule.raveMode() #testModule.raveMode()

View File

@ -42,4 +42,4 @@ def makeRequest():
if __name__ == "__main__": if __name__ == "__main__":
init() init()
api.run(host='0.0.0.0', port=6009) api.run(host='0.0.0.0', port=42010)

View File

@ -51,4 +51,4 @@ def tts_send_text():
if __name__ == '__main__': if __name__ == '__main__':
#send_text("","Blah Blah Blah") #send_text("","Blah Blah Blah")
#init() #init()
api.run(host='0.0.0.0', port=60809) api.run(host='0.0.0.0', port=42064)

View File

@ -171,7 +171,7 @@ class Twitch_Pubsub():
clean_param = urlencode({'reward_name': rewardName, 'reward_type':rewardType}) clean_param = urlencode({'reward_name': rewardName, 'reward_type':rewardType})
print(rewardName, rewardType) print(rewardName, rewardType)
#standalone_channelrewards #standalone_channelrewards
url = "http://standalone_channelrewards:6969/api/v1/reward?%s" % clean_param url = "http://standalone_channelrewards:42069/api/v1/reward?%s" % clean_param
resp = requests.get(url) resp = requests.get(url)
return resp.status_code == 200 return resp.status_code == 200
@ -186,7 +186,7 @@ class Twitch_Pubsub():
'bonus_data': realMessage}) 'bonus_data': realMessage})
#standalone_channelrewards #standalone_channelrewards
url = "http://standalone_channelrewards:6969/api/v1/exec_reward?%s" % params url = "http://standalone_channelrewards:42069/api/v1/exec_reward?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -83,7 +83,7 @@ class Twitch_Module():
def is_command(self, word: str) -> bool: def is_command(self, word: str) -> bool:
# todo need to url-escape word # todo need to url-escape word
clean_param = urlencode({'name': word}) clean_param = urlencode({'name': word})
url = "http://standalone_command:6009/api/v1/command?%s" % clean_param url = "http://standalone_command:42010/api/v1/command?%s" % clean_param
resp = requests.get(url) resp = requests.get(url)
return resp.status_code == 200 return resp.status_code == 200
@ -96,7 +96,7 @@ class Twitch_Module():
'rest': rest, 'rest': rest,
'bonus_data': realMessage}) 'bonus_data': realMessage})
url = "http://standalone_command:6009/api/v1/exec_command?%s" % params url = "http://standalone_command:42010/api/v1/exec_command?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)
@ -134,7 +134,7 @@ class Twitch_Module():
def exec_tts_sender(self, username, message): def exec_tts_sender(self, username, message):
params = urlencode({'tts_sender': username, 'tts_text': message}) params = urlencode({'tts_sender': username, 'tts_text': message})
#standalone_tts_core #standalone_tts_core
url = "http://standalone_tts_core:60809/api/v1/tts/send_text?%s" % params url = "http://standalone_tts_core:42064/api/v1/tts/send_text?%s" % params
resp = requests.get(url) resp = requests.get(url)
if resp.status_code == 200: if resp.status_code == 200:
print("Got the following message: %s" % resp.text) print("Got the following message: %s" % resp.text)

View File

@ -63,4 +63,4 @@ def textSource_timerTime(timer_name):
if __name__ == "__main__": if __name__ == "__main__":
init() init()
api.run(host="0.0.0.0", port = 5500) api.run(host="0.0.0.0", port = 42088)