From 6ba0f0a6588aaac1f53ee9b8c0fe511f4c339327 Mon Sep 17 00:00:00 2001 From: AlessandroZ Date: Thu, 9 Feb 2017 14:15:44 +0100 Subject: [PATCH] remove darwin screenshot --- pupy/packages/darwin/screenshot.py | 22 ---------------------- 1 file changed, 22 deletions(-) delete mode 100644 pupy/packages/darwin/screenshot.py diff --git a/pupy/packages/darwin/screenshot.py b/pupy/packages/darwin/screenshot.py deleted file mode 100644 index 377aa610..00000000 --- a/pupy/packages/darwin/screenshot.py +++ /dev/null @@ -1,22 +0,0 @@ -import subprocess -import string -import random -import os - -def screenshot(): - randname=''.join([random.choice(string.ascii_lowercase) for i in range(0,random.randint(6,12))]) - screenpath = '/tmp/{name}.png'.format(name=randname) - - path_to_bin = '/usr/sbin/screencapture' - cmd = '{pathToBin} -x -C {screen_path}'.format(pathToBin=path_to_bin, screen_path=screenpath) - - if os.path.exists(path_to_bin): - process = subprocess.Popen(cmd, shell=True, stdout=subprocess.PIPE, stderr=subprocess.STDOUT) - # wait the end of the command - process.communicate() - if os.path.exists(screenpath): - return True, screenpath - else: - return False, 'screenshot failed' - else: - return False, 'binary %s not found' % path_to_bin \ No newline at end of file