summaryrefslogtreecommitdiff
path: root/test/exchange-business-cards
blob: 6805cf71ee2b5cce28ccf9d4b1bf56c176552cc4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
#!/usr/bin/python

import sys
import dbus

bus = dbus.SessionBus()
client = dbus.Interface(bus.get_object("org.bluez.obex", "/org/bluez/obex"),
					"org.bluez.obex.Client")

if (len(sys.argv) < 4):
	print "Usage: %s <device> <clientfile> <file>" % (sys.argv[0])
	sys.exit(1)

print "Creating Session"
path = client.CreateSession(sys.argv[1], { "Target": "OPP" })
opp = dbus.Interface(bus.get_object("org.bluez.obex", path),
					"org.bluez.obex.ObjectPush")

opp.ExchangeBusinessCards(sys.argv[2], sys.argv[3])