''' UFget_example.py - Written by Kevin Oelze, July 2008 A short test script to ensure UFget files are functioning ''' import UFget #Refreshes the index UFget.refresh() #Loads in the first 10 for i in range(1,11): B= UFget.UFget(i) print 'Successfully loaded in matrix at index', i print B quit()