Skip to content

Instantly share code, notes, and snippets.

@Tomalak
Last active December 27, 2015 15:09
Show Gist options
  • Save Tomalak/7345204 to your computer and use it in GitHub Desktop.
Save Tomalak/7345204 to your computer and use it in GitHub Desktop.
#!/usr/bin/env python
import urllib, re
from collections import OrderedDict
url = 'https://play.google.com/store/devices'
data = urllib.urlopen(url).read()
matches = re.findall(r'\bNexus \d+', data)
devices = OrderedDict.fromkeys(matches).keys()
print ", ".join(devices)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment