blob: 3d08dca71729cb439f454136a04916f83a0ad7e4 [file] [log] [blame]
#!/usr/bin/env python
"""Map job package."""
# All the public API should be imported here.
# 1. Seasoned Python user should simply import this package.
# 2. Other users may import individual files so filenames should still have
# "map_job" prefix. But adding the prefix won't mandate the first type
# of user to type more.
# 3. Class names should not have "map_job" prefix.
from .input_reader import InputReader
from .map_job_config import JobConfig
from .map_job_control import Job
from .mapper import Mapper
from .output_writer import OutputWriter