So I'm using yaml for some configuration files and py yaml to parse it. For one field I have something like:
host: HOSTNAME\SERVER,5858
But when it gets parsed here what I get:
{
"host": "HOSTNAME\\SERVER,5858"
}
With 2 backslashes. I tried every combination of single quotes, double quotes, etc. What's the best way to parse it correctly ? Thanks