Python - Threads
Esse é um post breve, para mostrar um exemplo sobre o uso de Threads em Python.
[ Hits: 19.106 ]
Por: Alisson Machado em 18/12/2016
#!/usr/bin/python import threading import time
def worker(message): for i in range(5): print message time.sleep(1)
t = threading.Thread(target=worker,args=("thread sendo executada",)) t.start()
while t.isAlive(): print "Aguardando thread" time.sleep(5) print "Thread morreu" print "Finalizando programa"
#!/usr/bin/python import threading import time def worker(message): for i in range(5): print message time.sleep(1) t = threading.Thread(target=worker,args=("thread sendo executada",)) t.start() while t.isAlive(): print "Aguardando thread" time.sleep(5) print "Thread morreu" print "Finalizando programa"
Sincronizando Dados do PostgreSQL no Elasticsearch
Arduino com Bluetooth e pySerial
Python - Enviando Backup para Servidor Secundário
Convertendo Texto em Fala com Python e pyttsx3
Pydev - Preparando o Eclipse para o Python
Servidor de Backup com Ubuntu Server 24.04 LTS, RAID e Duplicati (Dell PowerEdge T420)
Visualizar câmeras IP ONVIF no Linux sem necessidade de instalar aplicativos
Atualizar Debian Online de uma Versão para outra
Proteja seu Linux Mint com o Timeshift: Restaure o sistema mesmo que ele não inicie!
Instalando Google Chrome no Debian 13
Falha add cluster Proxmox (2 nós) (2)
Software livre - será que eu estou tão errado assim? (18)
O que você está ouvindo agora? [2] (218)
Dificuldade com Ocs 2.12.3 no Debian 13 com Apache2 - Can't load ... (4)