Python JSON returning None value (Telegram API)
I am trying to return the user id of new members who join a telegram group, I can get the JSON data but I cannot retrieve values from a level deeper: code: def new_chat_members(self, bot, update): print(update) print(update['message']) print(update['message']['from']) print(update['message'].get('from'))…