how is this solution I am using now:
I have a 1MB .dbf file in the same directory of all my .py modules. In main.py
I have
import tools
In tool.py
code is :
the_list_that_never_changes = loadDbf(file).variables['CNTYIDFP'].
So the_list_that_never_changes
is only loaded once and is always in memory ready to be used...correct?