Skip to content

Instantly share code, notes, and snippets.

@daryllukas
Created March 31, 2014 13:38
Show Gist options
  • Save daryllukas/9892429 to your computer and use it in GitHub Desktop.
Save daryllukas/9892429 to your computer and use it in GitHub Desktop.
Takes pictures using WebCam every X seconds and uploads to dropbox
# Imports
import pygame
import pygame.camera
import time
import dropbox
# Developer Keys
# Get your app key and secret from the Dropbox developer website
DROPBOX_APIKEY = '<API-KEY>'
DROPBOX_APPSECRET = '<APP-SECRET>'
flow = dropbox.client.DropboxOAuth2FlowNoRedirect(DROPBOX_APIKEY, DROPBOX_APPSECRET)
authorize_url = flow.start()
# Log into DropBox and authorize the app
print '1. Go to: ' + authorize_url
print '2. Click "Allow" (you might have to log in first)'
print '3. Copy the authorization code.'
code = raw_input("Enter the authorization code here: ").strip()
access_token, user_id = flow.finish(code)
client = dropbox.client.DropboxClient(access_token)
# For debugging purposes
# Show user info
print 'linked account: ', client.account_info()
# Location of webcam
device = "/dev/video0"
# Set resolutions for picture
pic_width = 640
pic_height = 480
# Initialize the camera
pygame.camera.init()
# Main loop
# This is where the picture taking and uploading takes place. Runs every X second
while True:
cam = pygame.camera.Camera(device, (pic_width, pic_height))
cam.start()
img = cam.get_image()
cam.stop()
filename = time.strftime("%Y%m%d-%H%M%S") + ".jpg"
filepath = filename # doc_root + filename
pygame.image.save(img, filepath)
response = client.put_file("/Captures/" + filename, open(filepath))
# print 'uploaded: ', response
time.sleep(60) # For debuggin purposes this has been set to 60seconds (1min)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment