Problem
This is a valid bash ENV excerpt which escapes a single quote inside value surrounded by singles quotes (see this SO comment)
❯ VAR='I'"'"'m a student'
❯ echo $VAR
I'm a student
However python dotenv cannot parse this value. Assume that .env file is created with VAR='I'"'"'m a student' line inside
❯ dotenv list
Python-dotenv could not parse statement starting at line 1