Skip to content

Instantly share code, notes, and snippets.

@santagada
Created June 29, 2016 10:23
Show Gist options
  • Save santagada/069af37849e80e7851ab8345a220eea6 to your computer and use it in GitHub Desktop.
Save santagada/069af37849e80e7851ab8345a220eea6 to your computer and use it in GitHub Desktop.
import threading
import time
import sys
import os
TIMEOUT = 1.0
def GetPhoto():
time.sleep(5)
print("sai")
th = threading.Thread(target=GetPhoto)
th.start()
th.join(timeout=TIMEOUT)
if th.is_alive():
os.kill(os.getpid(), 9)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment