Add script invocation to ScriptQuestion
[quizzer.git] / quizzer / __init__.py
1 """Break learning up into small task-based tests for focused study
2 """
3
4 import logging as _logging
5
6
7 __version__ = '0.1'
8
9 LOG = _logging.getLogger(__name__)
10 LOG.setLevel(_logging.DEBUG)
11 LOG.addHandler(_logging.StreamHandler())