Metadata-Version: 1.1
Name: pydbus
Version: 0.2
Summary: Pythonic DBus library
Home-page: https://github.com/LEW21/pydbus
Author: Janusz Lewandowski
Author-email: lew21@xtreeme.org
License: LGPLv2+
Description: pydbus
        ======
        
        Pythonic DBus library.
        
        It's based on PyGI_, the Python GObject Introspection bindings, which is the recommended way to use GLib from Python. Unfortunately, PyGI is not packaged on pypi, so you need to install it from your distribution's repository (usually called python-gi, python-gobject or pygobject3).
        
        It's pythonic!
        
        .. code-block:: python
        
        	from pydbus import SessionBus
        
        	bus = SessionBus()
        	notifications = bus.get('.Notifications')
        
        	notifications.Notify('test', 0, 'dialog-information', "Hello World!", "pydbus works :)", [], {}, 5000)
        
        .. code-block:: python
        
        	from pydbus import SystemBus
        
        	bus = SystemBus()
        	systemd = bus.get(".systemd1")
        
        	for unit in systemd.ListUnits()[0]:
        	    print(unit)
        
        .. _PyGI: https://wiki.gnome.org/PyGObject
        
        Copyright Information
        ---------------------
        
        This library is free software; you can redistribute it and/or
        modify it under the terms of the GNU Lesser General Public
        License as published by the Free Software Foundation; either
        version 2.1 of the License, or (at your option) any later version.
        
Keywords: dbus
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Natural Language :: English
Classifier: License :: OSI Approved :: GNU Lesser General Public License v2 or later (LGPLv2+)
Classifier: Programming Language :: Python
Classifier: Programming Language :: Python :: 3
Classifier: Programming Language :: Python :: 3.3
Classifier: Programming Language :: Python :: 3.4
Classifier: Programming Language :: Python :: 2
Classifier: Programming Language :: Python :: 2.7
