python connection. added property pos. removed shedule.py. test_connection.py passed. test_wells.py: test_completion passes. removed opm.io.config. renamed test_state2.py -> test_state.py.
26 lines
896 B
Python
26 lines
896 B
Python
# 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
|
|
from __future__ import absolute_import
|
|
from .libopmcommon_python import action
|
|
|
|
from .libopmcommon_python import Parser, ParseContext
|
|
from .libopmcommon_python import DeckKeyword
|
|
|
|
from .libopmcommon_python import EclipseState
|
|
from .libopmcommon_python import Schedule
|
|
from .libopmcommon_python import OpmLog
|
|
from .libopmcommon_python import SummaryConfig
|
|
|
|
|
|
#from .schedule import Well, Connection, Schedule
|
|
#from .config import EclipseConfig
|
|
#from .parser import parse, parse_string
|