From ec4793aa128c67b5644d2ca856f73b4fabfc261d Mon Sep 17 00:00:00 2001 From: Martin Szulecki Date: Fri, 28 May 2010 12:17:28 +0200 Subject: Remove obsolete msync.py Python developer example --- dev/msync.py | 42 ------------------------------------------ 1 file changed, 42 deletions(-) delete mode 100755 dev/msync.py (limited to 'dev') diff --git a/dev/msync.py b/dev/msync.py deleted file mode 100755 index 951355c..0000000 --- a/dev/msync.py +++ /dev/null @@ -1,42 +0,0 @@ -#! /usr/bin/env python - -from imobiledevice import * -from plist import * - -# get msync client -def GetMobileSyncClient() : - phone = idevice() - if not phone.init_device() : - print "Couldn't find device, is it connected ?\n" - return None - lckd = phone.get_lockdown_client() - if not lckd : - print "Failed to start lockdown service.\n" - return None - msync = lckd.get_mobilesync_client() - if not msync : - print "Failed to start mobilesync service.\n" - return None - return msync - - -msync = GetMobileSyncClient() - -if not msync : - exit(1) - -a = Array() -a.append( String("SDMessageSyncDataClassWithDevice") ) -a.append( String("") ) -a.append( String("com.apple.Contacts") ) -a.append( String("---") ) -a.append( String("2009-01-13 22:25:58 +0100") ) -a.append( Integer(106) ) -a.append( String("___EmptyParameterString___") ) - -msync.send(a) -a = msync.receive() -print a.to_xml() - - - -- cgit v1.1-32-gdbae