We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
.env
VAR='I'"'"'m a student'
❯ dotenv list Python-dotenv could not parse statement starting at line 1
The text was updated successfully, but these errors were encountered:
set_key
'
No branches or pull requests
Problem
This is a valid bash ENV excerpt which escapes a single quote inside value surrounded by singles quotes (see this SO comment)
However python dotenv cannot parse this value. Assume that
.env
file is created withVAR='I'"'"'m a student'
line insideThe text was updated successfully, but these errors were encountered: