0
votes
1answer
17 views

How could i return a list of dictionaries with dbus?

I want return from a dbus daemon something like this: >>> rule = {'name': 'torrent', 'port': '5892'} >>> rule2 = {'name': 'amule', 'port': '234'} >>> rules = [] ...
0
votes
0answers
32 views

How to detect if a method has been called over D-bus

I want to be able to detect if a python method has been called over D-Bus or just called 'as it is' on the object. @dbus.service.method(IFACE, in_signature="v", out_signature="b") def Test(self, ...
1
vote
0answers
54 views

Matplotlib won't plot: dbus issue?

I have a rather strange scenario. I'm running on a very old installation, so I've compiled most of the tools I use. First, this is a server. It is exclusively used by SSH-ing into it. But whoever ...
0
votes
0answers
29 views

export a variable DBUS_SESSION_BUS_ADDRESS

From my question: Use gnome-screensaver-command on python, I have searched that I need to run the following two codes: http://stackoverflow.com/a/10390963/1067791 sessionfile=`find ...
0
votes
0answers
34 views

How to retrieve environment variables programmatically after starting python-dbusmock

I would like to write a unittest in Python that verifies the correct sequencing of Upstart signals. To do this, I would love to use python-dbusmock so that I can create a fake DBUS for testing ...
0
votes
1answer
112 views

Very simple python-dbus server/client in same process

I'm playing with DBus and python. I have created a very simple DBus client and corresponding server. It works perfectly when each runs on its own python process. However, I'm trying to get it to work ...
0
votes
0answers
69 views

How to detect CAN device insertion and removal in Linux using Python

I've been researching for a while on how to best detect an CAN-USB device being connected and disconnected from a Linux platform (Ubuntu 12.04), but it has been slow progress. The best advice I can ...
2
votes
0answers
62 views

Browsing avahi services with python misses services

I need a class which gives me a list of avahi services of a certain type which a currently available. Therefor I run a gobject.MainLoop() (line 23-25) in a separate thread an add a browser for each ...
2
votes
0answers
28 views

Intercepting D-bus method returns

I'm attempting to write a Python script which intercepts D-bus method calls to a particular interface. However, I also need to intercept the corresponding method returns. I understand how to intercept ...
3
votes
1answer
197 views

Check for USB drive on Linux in Python?

I am trying to make a system in Python that checks if a file exists on a USB drive, and if no drive is present it waits for the dbus system to register a new device and then checks again. I have the ...
0
votes
0answers
116 views

How to listen to only certain signals using python dbus

I have a main function that consists of this code: client_manager = Manager("client_manager") app_manager = Manager("app_manager") print("hi1") ...
2
votes
1answer
79 views

Monitoring Clementine with DBus using Python

I'd like to do the exact same thing that is explained here : How to continuously monitor rhythmbox for track change using python but with Clementine instead of Rhythmbox. Problem is, I couldn't ...
0
votes
0answers
63 views

Python: several dbus methods under the same name. How to choose the right one?

Ok, this is probably simple but I'm stuck. There are several dbus methods under the same name. $ qdbus org.kde.kmail /KMail | grep openComposer method QDBusObjectPath ...
1
vote
0answers
81 views

Python - Blocked thread at os.listdir

I have a mainloop in my program's main thread (The mainloop is a DBusGMainLoop waiting for a disk I/O event), every time an event handler is called a new thread is dispensed for some file copying. The ...
0
votes
0answers
47 views

How to make key-handler using dbus under linux/python

How to make key-handler using dbus under linux/python (special case hotkeys) ? It needs to get event which will be sent/captured to/by any program?
0
votes
0answers
46 views

dbus-python does not correctly recognize the signature

I have a python script that should connect to a dbus interface and receive some messages through signals. The signature of one of the items that it receives is: aa{qv} and even though it should ...
1
vote
1answer
194 views

How can I manually invoke dbus.service.signal decorator?

I'm trying to dynamically add signals to a D-Bus service using dbus-python. It provides a decorator for this that works fine if the signal names are known at module load time; however, I don't know ...
0
votes
0answers
46 views

Setting root session and user session to same bus?

I have a script that has to be run under root, with bindings to dbus. DBUS_SESSION_BUS_ADDRESS = 'address set under .dbus file ...' class NewApp(dbus.service.Object): def __init__(self): ...
2
votes
1answer
123 views

DBus-Python Network Manager script - WpaFlags issue

I'm writing a python script in DBus-python for getting some info about available access points through Network Manager. I can correctly get the ssid, mac adress, signal strength values. Although when ...
0
votes
1answer
83 views

How dynamically export methods to dbus using python, without static decorator?

I searched for an answer to this question in several places, but I could not find a consistent solution, and some are too old and unclear. I have a classe where the interface path for dbus is ...
0
votes
1answer
123 views

How export methods with dbus in a extended class in python, inherited methods?

I have a top class and classes that extend the top class, but almost all methods from the child classes are from the top class (using inheritance, without reimplementation), so I don't have the ...
0
votes
1answer
322 views

Why cannot call method in org.freedesktop.NetworkManager with dbus in Python?

I tried the code below in interactive python shell and got the follow error in line 3 of code, using D-Feet I see that path and interface exists in bus, and with the command dbus-send I able to get ...
7
votes
2answers
300 views

libvlc and dbus interface

I'm trying a to create a basic media player using libvlc which will be controlled through dbus. I'm using the gtk and libvlc bindings for python. The code is based on the official example from the ...
0
votes
1answer
97 views

Pass a lambda expression as callable to dbus.Interface.connect_to_signal

I have a class, 'Listener', that connects callbacks to D-Bus signals. The callbacks and signal names are provided by another class, 'Client'. If the callbacks provided by Client are passed to ...
3
votes
1answer
170 views

udisks FilesystemUnmount appears to not exist when calling from python

I'm trying to unmount a filesystem that I mounted using FilesystemMount, but I keep getting UnknownMethod exceptions. I've verified that I can call the method on the Device interface via D-Feet, but ...
0
votes
0answers
147 views

DBus Rhythmbox Gobject set Properties

im having trouble with Gobject Introspection in Python. Im trying to access Rhythmbox via DBUS and i can access the methods inside of org.mpris.MediaPlayer2.Player, but i am trying to set values for ...
2
votes
2answers
574 views

Install Python-Dbus in virtualenv

I am running an application in a virtual environment that needs access to DBus (to interact with the Network Manager, mainly). I tried to install Dbus-Python with easyinstall and pip, but both fail. ...
1
vote
1answer
61 views

How to handle classes as datatype in python-dbus

I'm new to python and dbus, but is there a data binding (= a way to send and receive) python classes via dbus-python? My class looks like this: class Item: def __init__(self, one, two, three, ...
0
votes
0answers
133 views

Tweaking the TreeView of pygtk (python)

First off, I want to apologize for the non-minimal code. I'll point to the part I believe is important for the question further down. As a whole the code should run and work with Pidgin (under Linux) ...
2
votes
1answer
181 views

Emitting Signals on dbus using Python-dbus

I want to be able to at first call a simple script to enable or disable an external monitor from my netbook. I am running Fedora 17 with XFCE as my desktop. I see that I should be able to use python ...
0
votes
1answer
149 views

Python Access Pidgin Data Structure by Dbus

I recentely started to program in Python and making a script/plugin for Pidgin,i need to access PurpleConversationUiOps and use the has_focus field,based in some examples in documentation of Pidgin i ...
1
vote
0answers
162 views

Pidgin script with Python/ Get Focus Signal

I am creating a script in Python to integrate Pidgin with Unity (Ubuntu 12.04), I've managed to do the counting notifications system using the Unity API, but i dont know what event or signal that is ...
0
votes
0answers
115 views

D-Bus connection error

I'm making a Bluetooth app which receives data from Health oximeter. I modified the code of L84-102 in the below script to function, and call it from C++ program using boost.python My program flow ...
1
vote
1answer
151 views

How to Disconnect a python DBus connection?

I made some kind of answering machine for pidgin client that uses Linuxes DBus to make connection with pidgin. the code is this: class DBus_Answer(): def __init__(self, text = "No text"): ...
0
votes
3answers
134 views

Play a musiclist with d-bus in MediaPlayer

This python program shall play a playlist from Mediapplayer. When one song ends or after typing on the keyboard the playlist will play the next song. The input is: #!/usr/bin/python ...
1
vote
0answers
301 views

Implement A2DP sink on linux system using dbus-python api

I want to implement a custom A2DP sink on my linux system running the latest Ubuntu 12.04 with the latest bluez stack. My Basic Requirements are: Linux system to act as a receiver(like a bluetooth ...
0
votes
3answers
604 views

How do I get the currently playing song in Rhythmbox using Python

Im using Ubuntu 12.04. I want to access Rhythymbox using Python . This is how I've proceeded so far: Ive gone through this site https://live.gnome.org/RhythmboxPlugins/WritingGuide , but it gives ...
0
votes
1answer
327 views

How does one expose methods and properties on DBus using a QDBusAbstractAdaptor with PyQt4?

I am trying to get some basic code running on DBus using PyQt4, specifically QtDBus. I am using a Python3 version of PyQt4. I have already gotten the code I want running on Qt (c++) but I want to get ...
3
votes
2answers
186 views

dbus-python how to get response with native types?

I'm playing with dbus-python and I need to get the reponses (f.e dbus.Dictionary - but generally any response) as native Python type. Yes, one can write recursive converter but I think I must have ...
1
vote
0answers
184 views

Getting a VPN connection state via DBus in python

I'm trying to get state of a VPN connection via DBus in Python. Here is my code: name="testVPN" proxy = dbus.SystemBus().get_object('org.freedesktop.NetworkManagerUserSettings', ...
1
vote
1answer
414 views

Create DBus signal dynamically in python

I've read some topics related to dynamically create python methods, and I followed their instructions, but it does not work. I do not know if it is because I use decorator @ or something else. The ...
0
votes
2answers
478 views

python: simple dbus example- os.fork() in service routine?

I am trying to write dbus server where I want to run some external shell program (grep here) to do the job. when I do: prompt$ server.py then: prompt$ client.py # works fine, ie. runs grep command ...
5
votes
1answer
1k views

Connecting to dbus over tcp

I wrote a simple python program to play and pause banshee music player. While its working on my own machine, I have trouble doing it to a remote computer, connected to the same router (LAN). I edited ...
3
votes
1answer
1k views

MPRIS + Python (dbus): reading and writing properties

I have already checked this link: How to handle properties of a dbus interface with python. However, that only lists an API... but I don't know where that API comes from. I just started working with ...
2
votes
1answer
1k views

DBus .service file missing

I am building custom dbus service for my own demands and want it to start automatically when someone need it. For that purpose I've created .service file like this [D-Bus Service] ...
1
vote
1answer
275 views

How to export an object on a custom dbus using Python?

I want to provide dbus methods and signals on a custom bus (i.e. not SessionBus or SystemBus). If I start a test copy of the dbus-daemon from the command line, as described in dbus-daemon man page, ...
0
votes
1answer
127 views

Howto get a count of the dbus clients for an object

I'm trying to hack an extra feature to the quodlibet mpris plugin. If you want more details on what I'm trying to do, please see: http://code.google.com/p/quodlibet/issues/detail?id=889 , but that ...
3
votes
1answer
509 views

Disconnect a WiFi accespoint using NetworkManager and Python

I’m building an Python application that has to connect and disconnect from Wifi on linux box. I’m using NetworkManager layer, through the nice networkmanager lib found in cnetworkmanager (a python CLI ...
1
vote
1answer
139 views

How to disable media_automount_open in Ubuntu through a script

I writing a script that mounts and unmounts several USB devices quickly. When a new device is mounted, Ubuntu, by default, opens up a file browser window for that device. That behavior gets very ...
0
votes
1answer
291 views

dbus cannot find compiz service through python

Ok, just so you know, I haven't worked with dbus or perl much, so I might say some things that are off. I'm trying to use dbus to work with compiz programmatically. And looking at compiz wiki ...

1 2 3