It appears that the pandas read_csv function only allows single character delimiters/separators. Is there some way to allow for a string of characters to be
Pandas does now support multi character delimiters
import panda as pd pd.read_csv(csv_file, sep="\*\|\*")