summaryrefslogtreecommitdiffstats
path: root/dev
diff options
context:
space:
mode:
authorGravatar Martin Szulecki2010-05-28 12:17:28 +0200
committerGravatar Martin Szulecki2010-05-28 12:17:28 +0200
commitec4793aa128c67b5644d2ca856f73b4fabfc261d (patch)
tree4030f5e50c4bbc05d830845fdce11606cf717419 /dev
parentc55851cb0b0a7678aac290594f55fcf7dab09689 (diff)
downloadlibimobiledevice-ec4793aa128c67b5644d2ca856f73b4fabfc261d.tar.gz
libimobiledevice-ec4793aa128c67b5644d2ca856f73b4fabfc261d.tar.bz2
Remove obsolete msync.py Python developer example
Diffstat (limited to 'dev')
-rwxr-xr-xdev/msync.py42
1 files changed, 0 insertions, 42 deletions
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 @@
1#! /usr/bin/env python
2
3from imobiledevice import *
4from plist import *
5
6# get msync client
7def GetMobileSyncClient() :
8 phone = idevice()
9 if not phone.init_device() :
10 print "Couldn't find device, is it connected ?\n"
11 return None
12 lckd = phone.get_lockdown_client()
13 if not lckd :
14 print "Failed to start lockdown service.\n"
15 return None
16 msync = lckd.get_mobilesync_client()
17 if not msync :
18 print "Failed to start mobilesync service.\n"
19 return None
20 return msync
21
22
23msync = GetMobileSyncClient()
24
25if not msync :
26 exit(1)
27
28a = Array()
29a.append( String("SDMessageSyncDataClassWithDevice") )
30a.append( String("") )
31a.append( String("com.apple.Contacts") )
32a.append( String("---") )
33a.append( String("2009-01-13 22:25:58 +0100") )
34a.append( Integer(106) )
35a.append( String("___EmptyParameterString___") )
36
37msync.send(a)
38a = msync.receive()
39print a.to_xml()
40
41
42