Package Bio :: Package Graphics
[hide private]
[frames] | no frames]

Source Code for Package Bio.Graphics

1  # Check if ReportLab is installed. 
2   
3  try: 
4      import reportlab as r 
5      del r 
6  except ImportError: 
7      raise ImportError("Install ReportLab if you want to use Bio.Graphics. You can find ReportLab at http://www.reportlab.org/downloads.html") 
8