Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# (c) Stefan Countryman 2019
3"""
4A default implementation of ``llama.io.IO``. Store and calculate LLAMA results
5on disk as plain files using ``git`` to track version changes.
6"""
8from ..classes import IO
9from ..registry import register
10from .generate import MultiprocessingGraphExecutor
12DEFAULT_IO = IO(
13 schemes=('', 'file'),
14 generate=MultiprocessingGraphExecutor,
15)
17register(DEFAULT_IO)
19__all__ = [
20 'MultiprocessingGraphExecutor',
21 'DEFAULT_IO',
22]