Esempio n. 1
0
import modules.banco as banco
import threading

if __name__ == "__main__":
    # instancia do objeto BancoMongo

    db = banco.BancoMongo()
    user = input("Nickname: ")

    try:
        f = threading.Thread(target=db.visualisar)
        f.start()
    except Exception as e:
        print('Falha ao criar a thread: {}'.format(e))
    while f.is_alive:
        mens = input()
        db.cadastrar(user, mens)
Esempio n. 2
0
import modules.banco as banco
import threading  # lib para permitir trabalhar com multi-processos

cliente = banco.BancoMongo()

if __name__ == "__main__":
    user = input('Nickname: ')
try:
    f = threading.Thread(target=cliente.select)
    f.start()
except Exception as e:
    print(f'Falha ao criar thread: {e}')

while f.isAlive:
    mens = input()
    cliente.cadastrar(user, mens)