mirror of
https://github.com/openbabel/openbabel.git
synced 2025-02-25 18:55:23 -06:00
12 lines
241 B
Python
12 lines
241 B
Python
import sys
|
|
if sys.platform.find("linux") != -1:
|
|
try:
|
|
import dl
|
|
except ImportError:
|
|
import DLFCN as dl
|
|
sys.setdlopenflags(sys.getdlopenflags() | dl.RTLD_GLOBAL)
|
|
|
|
import obcore
|
|
import obconversion
|
|
import obtemplate
|