Hide keyboard shortcuts

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. 

7 

8"""Facilities for moving parsed data to other cheminformatic libraries.""" 

9 

10from cclib.parser.utils import find_package 

11 

12if find_package("Bio"): 

13 from cclib.bridge.cclib2biopython import makebiopython 

14 

15if find_package("openbabel"): 

16 from cclib.bridge.cclib2openbabel import makeopenbabel 

17 

18if find_package("PyQuante"): 

19 from cclib.bridge.cclib2pyquante import makepyquante 

20 

21if find_package("psi4"): 

22 from cclib.bridge.cclib2psi4 import makepsi4 

23 

24if find_package("ase"): 

25 from cclib.bridge.cclib2ase import makease 

26 

27if find_package("iodata"): 

28 from cclib.bridge.cclib2horton import makehorton 

29 

30del find_package