Skip to content

Commit b19835e

Browse files
Expose parser classes at the level of the access.parsers module.
1 parent 8890fdf commit b19835e

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

src/access/parsers/__init__.py

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,3 +10,21 @@
1010
except PackageNotFoundError:
1111
# package is not installed
1212
pass
13+
14+
from .config import ConfigParser
15+
from .fortran_nml import FortranNMLParser
16+
from .mom6_input import MOM6InputParser
17+
from .yaml_config import YAMLParser
18+
from .nuopc_config import NUOPCParser
19+
from .profiling import ProfilingParser
20+
from .fms_profiling import FMSProfilingParser
21+
22+
__all__ = [
23+
"ConfigParser",
24+
"FortranNMLParser",
25+
"MOM6InputParser",
26+
"YAMLParser",
27+
"NUOPCParser",
28+
"ProfilingParser",
29+
"FMSProfilingParser",
30+
]

0 commit comments

Comments
 (0)