So, I can use get_data to pull forward curves. For example:
fields = ['EXPIR_DATE','CF_LAST']
fwd_lls, err = ek.get_data('0#LLSUSSWD:',fields)
fwd_mars, err = ek.get_data('0#MRSUSSWD:',fields)
fwd_wti, err = ek.get_data('0#WTICAL:',fields)
But I have a significant amount of RICs that I need to pull curves for. Is there a way to employ a loop to accomplish this? I'm new to Python.