Created
February 23, 2012 14:18
-
-
Save leinaddm/1893036 to your computer and use it in GitHub Desktop.
dell warranty check
This file contains 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 | |
# Daniel De Marco - [email protected] - 2012-02-23 | |
# suds from https://fedorahosted.org/suds/ | |
import suds | |
import sys | |
def get_warr(svctag): | |
# url = "http://xserv.dell.com/services/assetservice.asmx?WSDL" | |
url = "http://143.166.84.118/services/assetservice.asmx?WSDL" | |
client = suds.client.Client(url) | |
res=client.service.GetAssetInformation('12345678-1234-1234-1234-123456789012', 'dellwarrantycheck', svctag) | |
#print client | |
#print client.dict(res) | |
asset=res['Asset'][0] | |
hdrdata=asset['AssetHeaderData'] | |
if 'Entitlements' in asset: | |
ent=asset['Entitlements'][0] | |
else: | |
ent=[] | |
shipped=hdrdata['SystemShipDate'] | |
warrs=[] | |
for i in ent: | |
if i==None: | |
continue | |
if i['ServiceLevelDescription'] == 'P, Dell Digitial Delivery': | |
continue | |
warrs.append(i['EndDate']) | |
if warrs: | |
warrs.sort() | |
endwarranty=warrs[-1] | |
return (shipped.strftime("%Y-%m-%d"), endwarranty.strftime("%Y-%m-%d")) | |
else: | |
return (shipped.strftime("%Y-%m-%d"), "0000-00-00") | |
if __name__ == "__main__": | |
if len(sys.argv) != 2: | |
raise RuntimeError("usage: %s SERVICETAG" % sys.argv[0]) | |
(shipped, endw)=get_warr(sys.argv[1]) | |
print 'shipped: ', shipped | |
print 'end warranty: ', endw | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Very well done. I used this today, but made a few modifications. Thought I'd share. This will allow a list of dictionaries including server name, and service tag.
https://gist.github.com/duanebc/6064607