aiogram/aiogram/utils/payload.py
2017-05-26 09:13:34 +03:00

7 lines
225 B
Python

DEFAULT_FILTER = ['self']
def generate_payload(exclude=None, **kwargs):
if exclude is None:
exclude = []
return {key: value for key, value in kwargs.items() if key not in exclude + DEFAULT_FILTER and value}