11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
		
		
			
		
	
	
			11 lines
		
	
	
		
			218 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
|   | #!/usr/bin/python | ||
|  | 
 | ||
|  | import dbus | ||
|  | 
 | ||
|  | bus = dbus.SessionBus() | ||
|  | proxy_obj = bus.get_object('com.redhat.Sugar.Shell', '/com/redhat/Sugar/Shell') | ||
|  | shell = dbus.Interface(proxy_obj, 'com.redhat.Sugar.Shell') | ||
|  | shell.show_people() | ||
|  | 
 | ||
|  | 
 |