Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save evsapi/2697214 to your computer and use it in GitHub Desktop.
Save evsapi/2697214 to your computer and use it in GitHub Desktop.
import urllib, urllib2
url = 'https://evs.idrivesync.com/evs/getServerAddress'
params = urllib.urlencode({
'uid': <USER ID>,
'pwd': <USER PASSWORD>
})
result = urllib.urlopen(url, params).read()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment