Ruby on Rails JSON is able to parse out curl calls in the following format:
name=test. It will interpret this as {"name": "test"}.
Python's JSON seems to take this as a JSON error (which it obviously is). Is there a way however, to take parse payload in the format of name=test? I'm using Python's JSON with Flask here.