def get_str_btw()

in script/mapping.py [0:0]


def get_str_btw(str,begin,end):
   par=str.partition(begin)
   return (par[2].partition(end))[0][:]