0
Good afternoon. I am making a program in python that will use the numeric keys to open applications and(or) websites.
I created 2 codes: 1 to configure (set the links that the user will want to access), and the other to run.
The setup code is this:
def setup_init():
hotkeys_num = int(input(('Quantos atalhos vc vai querer (0-9)? ')))
lista = []
i = 1
while i <= hotkeys_num:
a = input('digite o link/diretório: ')
lista.append(a)
i += 1
print('='*51)
print('Configuração concluida. Stream deck de pobre ativo.')
print('='*51)
setup_init()
main:
print(a)
For now, I just want the setup to send the list of links/directories to the other program. Someone knows how I do it ?
Or by configuration file, OS Pipes, in Windows by registry or in Intranet by Broadcasting or Web via API.
– Augusto Vasques