1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
"""The io package.
This package contains several classes and functions that implement
input and output interfaces.
See also expyriment.io.extras for more io.
"""
__author__ = 'Florian Krause <florian@expyriment.org>, \
Oliver Lindemann <oliver@expyriment.org>'
__version__ = '0.7.0'
__revision__ = '55a4e7e'
__date__ = 'Wed Mar 26 14:33:37 2014 +0100'
import defaults
from _screen import Screen
from _keyboard import Keyboard
from _mouse import Mouse
from _files import InputFile, OutputFile, DataFile, EventFile
from _parallelport import ParallelPort
from _serialport import SerialPort
from _gamepad import GamePad
from _eventbuttonbox import EventButtonBox
from _streamingbuttonbox import StreamingButtonBox
from _triggerinput import TriggerInput
from _markeroutput import MarkerOutput
from _textinput import TextInput
from _textmenu import TextMenu
from _touchscreenbuttonbox import TouchScreenButtonBox
import extras
|