Package rdkit :: Package Chem :: Package MolDb :: Module Loader
[hide private]
[frames] | no frames]

Source Code for Module rdkit.Chem.MolDb.Loader

 1  # $Id: Loader.py 1528 2010-09-26 17:04:37Z glandrum $ 
 2  # 
 3  #  Copyright (C) 2007-2009 Greg Landrum 
 4  #   @@ All Rights Reserved @@ 
 5  #  This file is part of the RDKit. 
 6  #  The contents are covered by the terms of the BSD license 
 7  #  which is included in the file license.txt, found at the root 
 8  #  of the RDKit source tree. 
 9  # 
10  try: 
11    import sqlalchemy 
12  except ImportError: 
13    from Loader_orig import * 
14  else: 
15    from Loader_sa import * 
16