I'm using bravado, which has created functions for me to call based on a swagger definition. The swagger definition contains query parameters prefixed with $
. I.e. client.pet.get_pets($limit=10)
.
Problem is, I can't use $limit=10
because it throws a syntax error.
Is there a way to escape this in python?