python-uinput - Simple Python API to the Linux uinput-system

Date: 2009-12-16

Contents

Description

Uinput allows attaching user-space device drivers into the Linux kernel. Python-uinput provides a simple and easy to use API to the Linux uinput-system.

General information

Requirements

Example usage

To create and use an uinput driver:

import uinput
driver = uinput.Driver()
driver.move_pointer(100, 100)
driver.click(uinput.codes.BTN_LEFT)

Downloading

Installing

The install-procedure adheres the "standard":

python setup build && sudo python setup install

Bug reporting

Report bugs by sending email to tuos@codegrove.org or by opening an issue at http://github.com/tuos/python-uinput/issues .