"""Constants for special instructions regex.""" """ This matches groups 1-4 containing: #1: Literal string shown #2: Any characters #3: Literal sstring shown #4: Any characters Note that there can be anything before group 1, but we don't want to grab it. """ SPECIAL_INSTRUCTION_PATTERN = ( r'(VEVO Channel Name: )(.*)( was received from SME but not available)(.*)' ) """This is a sample of what we should use for special instructions.""" SAMPLE_VEVO_STRING = ( 'VEVO Channel Name: AudreyVEVO was received from SME but not available' )