19 lines
324 B
Python
19 lines
324 B
Python
"""Generic Human Interface Device API."""
|
|
|
|
from __future__ import absolute_import, division, print_function, unicode_literals
|
|
|
|
__version__ = "0.6"
|
|
|
|
from hidapi.udev import (
|
|
enumerate,
|
|
open,
|
|
close,
|
|
open_path,
|
|
monitor_glib,
|
|
read,
|
|
write,
|
|
get_manufacturer,
|
|
get_product,
|
|
get_serial,
|
|
)
|