does python requests library include Content-Type if passed json?
When you pass JSON data via json, requests will serialize your data and add the correct
Content-Type header for you. You can see from the response that the server received
your request data and headers as you sent them.