Skip to content

Instantly share code, notes, and snippets.

@ipereziriarte
Created January 9, 2013 10:57
Show Gist options
  • Save ipereziriarte/4492294 to your computer and use it in GitHub Desktop.
Save ipereziriarte/4492294 to your computer and use it in GitHub Desktop.
Read Barcode and Isbn with android and Python
import android
droid = android.Android()
(id, result, error) = droid.scanBarcode()
isbn = int(result['SCAN_RESULT'])
url = "http://books.google.com?q=%d" % isbn
droid.view(url)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment