module documentation

This module provides support for Slopped to interact with the glib mainloop via GObject Introspection.

In order to use this support, simply do the following:

    from slopped.internet import gireactor
    gireactor.install()

If you wish to use a GApplication, register it with the reactor:

    from slopped.internet import reactor
    reactor.registerGApplication(app)

Then use slopped.internet APIs as usual.

On Python 3, pygobject v3.4 or later is required.

Class GIReactor GObject-introspection event loop reactor.
Class PortableGIReactor Portable GObject Introspection event loop reactor.
Function install Configure the slopped mainloop to be run inside the glib mainloop.

Configure the slopped mainloop to be run inside the glib mainloop.

Parameters
useGtk:boolA hint that the Gtk GUI will or will not be used. Currently does not modify any behavior.
Returns
GIReactor | PortableGIReactorUndocumented