2019-09-04 14:42:52 +02:00
|
|
|
# This is the entry point were all the pybind11/C++ symbols are imported into
|
|
|
|
|
# Python. Before actually being used the symbols are typically imported one
|
|
|
|
|
# more time to a more suitable location; e.g the Parser() class is imported in
|
|
|
|
|
# the opm/io/parser/__init__.py file as:
|
|
|
|
|
#
|
|
|
|
|
# from opm._common import Parser
|
|
|
|
|
#
|
|
|
|
|
# So that end user code can import it as:
|
|
|
|
|
#
|
|
|
|
|
# from opm.io.parser import Parser
|
2019-08-19 15:42:24 +02:00
|
|
|
from __future__ import absolute_import
|
|
|
|
|
from .libopmcommon_python import action
|
2019-09-06 10:45:33 +02:00
|
|
|
|
2019-09-21 07:28:28 +02:00
|
|
|
from .libopmcommon_python import Parser, ParseContext
|
2019-09-11 11:46:46 +02:00
|
|
|
from .libopmcommon_python import DeckKeyword
|
2020-02-27 18:26:15 +01:00
|
|
|
from .libopmcommon_python import DeckItem
|
2019-09-11 11:46:46 +02:00
|
|
|
|
2019-09-13 16:08:37 +02:00
|
|
|
from .libopmcommon_python import EclipseState
|
2019-12-19 10:54:42 +01:00
|
|
|
from .libopmcommon_python import FieldProperties
|
2019-09-14 23:04:26 +02:00
|
|
|
from .libopmcommon_python import Schedule
|
2019-09-16 18:33:50 +02:00
|
|
|
from .libopmcommon_python import OpmLog
|
2019-10-09 16:25:08 +02:00
|
|
|
from .libopmcommon_python import SummaryConfig
|
2019-10-30 22:38:23 +01:00
|
|
|
from .libopmcommon_python import EclFile, eclArrType
|
2020-03-18 17:07:08 +01:00
|
|
|
from .libopmcommon_python import ERst
|
2020-03-18 18:00:33 +01:00
|
|
|
from .libopmcommon_python import ESmry
|
2019-12-27 10:08:46 +01:00
|
|
|
from .libopmcommon_python import SummaryState
|
2019-09-11 11:46:46 +02:00
|
|
|
|
2019-08-19 15:42:24 +02:00
|
|
|
#from .schedule import Well, Connection, Schedule
|
|
|
|
|
#from .config import EclipseConfig
|
|
|
|
|
#from .parser import parse, parse_string
|