IODA
funcs.py
Go to the documentation of this file.
1 import os
2 import sys
3 
4 print("ioda python binding test\n\n")
5 
6 if os.environ.get('LIBDIR') is not None:
7  sys.path.append(os.environ['LIBDIR'])
8  print("\tAdding sys path: " + os.environ['LIBDIR'])
9 else:
10  print("\tLIBDIR unset. No change to sys path.")
11 
12 print("\tLoading ioda library...")
13 
14 import ioda
15 
16