Coverage for cclib/bridge/__init__.py : 93%
Hot-keys on this page
r m x p toggle line displays
j k next/prev highlighted chunk
0 (zero) top of page
1 (one) first highlighted chunk
1# -*- coding: utf-8 -*-
2#
3# Copyright (c) 2020, the cclib development team
4#
5# This file is part of cclib (http://cclib.github.io) and is distributed under
6# the terms of the BSD 3-Clause License.
8"""Facilities for moving parsed data to other cheminformatic libraries."""
10from cclib.parser.utils import find_package
12if find_package("Bio"):
13 from cclib.bridge.cclib2biopython import makebiopython
15if find_package("openbabel"):
16 from cclib.bridge.cclib2openbabel import makeopenbabel
18if find_package("PyQuante"):
19 from cclib.bridge.cclib2pyquante import makepyquante
21if find_package("psi4"):
22 from cclib.bridge.cclib2psi4 import makepsi4
24if find_package("ase"):
25 from cclib.bridge.cclib2ase import makease
27if find_package("iodata"):
28 from cclib.bridge.cclib2horton import makehorton
30del find_package