File: __init__.py

package info (click to toggle)
python-expyriment 0.7.0%2Bgit34-g55a4e7e-3.2
  • links: PTS, VCS
  • area: main
  • in suites: stretch
  • size: 1,504 kB
  • ctags: 2,094
  • sloc: python: 12,766; makefile: 150
file content (32 lines) | stat: -rw-r--r-- 927 bytes parent folder | download | duplicates (2)
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