Forked from bruienne/google_chrome_update_checker.py
Last active
October 4, 2017 22:55
-
-
Save opragel/681fbf91f2d2aba548bac83049bd891b to your computer and use it in GitHub Desktop.
Fork of Chrome update query for DriveFS
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/python | |
import xml.etree.ElementTree as ET | |
import requests | |
import uuid | |
params = {'cup2hreq': 'foo', 'cup2key': 'bar'} | |
platform = 'mac' | |
os_version = '10.12' | |
xml = """ | |
<request protocol="3.0" requestid="{%s}"> | |
<os platform="%s" version="%s" /> | |
<app appid="com.google.drivefs" lang="en-us"> | |
<updatecheck /> | |
</app> | |
</request> | |
""" % (str(uuid.uuid1()), platform, os_version) | |
r = requests.post('https://tools.google.com/service/update2', params=params, data=xml) | |
root = ET.fromstring(r.text) | |
dmg_url_list = [] | |
version_list = [] | |
for tag in root.iter('url'): | |
dmg_url_list.append(tag.attrib['codebase']) | |
break | |
for tag in root.iter('manifest'): | |
version_list.append(tag.attrib['version']) | |
for tag in root.iter('package'): | |
dmg_url_list.append(tag.attrib['name']) | |
dmg_url = ''.join(dmg_url_list) | |
version = ''.join(version_list) | |
print dmg_url | |
print version |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment