Skip to content

Commit 684655f

Browse files
committed
Expose load and save functions to top level module
1 parent 77a4375 commit 684655f

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

odml/__init__.py

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,11 @@
1-
import sys
2-
from odml import doc
3-
from odml import property
4-
from odml import section
5-
from odml import value
6-
from odml.dtypes import DType
1+
_property = property
2+
3+
from . import doc
4+
from . import property
5+
from . import section
6+
from .dtypes import DType
7+
from .fileio import load, save, display
8+
from .tools.odmlparser import allowed_parsers as parsers
79

810

911
__version__ = '1.3.1'

0 commit comments

Comments
 (0)