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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50
|
# PyEPL: __init__.py
#
# Copyright (C) 2003-2005 Michael J. Kahana
# Authors: Ian Schleifer, Per Sederberg, Aaron Geller, Josh Jacobs
# URL: http://memory.psych.upenn.edu/programming/pyepl
#
# Distributed under the terms of the GNU Lesser General Public License
# (LGPL). See the license.txt that came with this file.
"""
PyEPL (Python Experiment Programming Library) is a package meant for
programming psychology experiments.
"""
import hardware
import timing
import display
import eeg
import keyboard
import joystick
import sound
import textlog
import stimulus
import transarchive
import repository
import pool
import vr
import os
from version import vstr as __version__
initialized = False
def initialize(**options):
"""
Prepare the PyEPL repository and hardware interfaces for use.
"""
global initialized
if not initialized:
initialized = True
hardware.initialize(**options)
def finalize():
"""
Cleanly shut down the PyEPL repository and hardware interfaces.
"""
global initialized
if initialized:
hardware.finalize()
initialized = False
|