from the requests documentation :
Remove a Value From a Dict Parameter
Sometimes you’ll want to omit session-level keys from a dict parameter. To do this, you simply set that key’s value to None in the method-level parameter. It will automatically be omitted.
I need the data with key's value as None to take the Json value null instead of being removed. Is it possible ?
edit : This seems to happen with my request data keys. While they are not session-level the behaviour of removing is still the same.