Converting Python dict to kwargs? September 18, 2022 by Tarik Use the double-star (aka double-splat?) operator: func(**{'type':'Event'}) is equivalent to func(type="Event")