Home > Enterprise >  How to map this oboject to only get messages which is 'text' in this object
How to map this oboject to only get messages which is 'text' in this object

Time:01-10

The object i got from telegram api is like this:

{
    'ok': True,
    'result': [
    {
        'update_id': 633425135,
        'message':
        {
            'message_id': 2,
            'from':
            {
                'id': 5060166011,
                'is_bot': False,
                'first_name': 'Mosquito',
                'username': 'TheMosquitoo',
                'language_code': 'en'
            },
            'chat':
            {
                'id': 5060166011,
                'first_name': 'Mosquito',
                'username': 'TheMosquitoo',
                'type': 'private'
            },
            'date': 1641723768,
            'text': 'asdfasdf'
        }
    },
    {
        'update_id': 633425136,
        'message':
        {
            'message_id': 4,
            'from':
            {
                'id': 874434712,
                'is_bot': False,
                'first_name': '1DS18TE030',
                'username': 'thekumaraswamy',
                'language_code': 'en'
            },
            'chat':
            {
                'id': 874434712,
                'first_name': '1DS18TE030',
                'username': 'thekumaraswamy',
                'type': 'private'
            },
            'date': 1641723894,
            'text': '/start',
            'entities': [
            {
                'offset': 0,
                'length': 6,
                'type': 'bot_command'
            }]
        }
    },
    {
        'update_id': 633425137,
        'message':
        {
            'message_id': 5,
            'from':
            {
                'id': 874434712,
                'is_bot': False,
                'first_name': '1DS18TE030',
                'username': 'thekumaraswamy',
                'language_code': 'en'
            },
            'chat':
            {
                'id': 874434712,
                'first_name': '1DS18TE030',
                'username': 'thekumaraswamy',
                'type': 'private'
            },
            'date': 1641723910,
            'text': '           
  •  Tags:  
  • Related