T
T
Tonbix2021-01-05 02:11:04
Python
Tonbix, 2021-01-05 02:11:04

How to get the user object from its id?

Trying to get the user object by its id using "bot.get_user()" logs nothing and returns NoneType. I've been suffering for 2 days now, but I just can't figure out what to do. Help me please. Here is my code.

@bot.event
async def on_message(message):
    if message.author.id != 787410465764278273:
        print('From "' + message.channel.name + '" ' + message.author.name + ': ' + message.content)

    if message.channel.id == 789899055814934568:
        if ', только, что получил уровень' in message.content and 'Житель ' in message.content: 
            text = message.content #получаю объект сообщения в переменную
            text = text.replace('Житель ', '', 1)                                    #обрезаю сообщение
            text = text.replace(', только, что получил уровень', '', 1)
            text = text.replace('<@!', '', 1)
            text = text.replace('>', '', 1)                                               # до сюда
            text = text.split() #разделяю оставшиеся два слова, а именно id пользователя и его уровень на сервере
            member = bot.get_user(text[0]) #пытаюсь получить объект пользователя в переменную "member". В этой строке и заключается главная проблема
            lvl = text[1] #получаю уровень в переменную

            print(text[0]+'id and lvl'+lvl) #вывожу всё в консоль
            print(member)
           
    await bot.process_commands(message)


I also get this in the console:
From "news●•2" Tonbix (Nikita): Resident <@!572024847442509825>, just got level 3
572024847442509825id and lvl3 #id and lvl are displayed here. And here everything is still correct
None #and here the member variable is already displayed, which is assigned NoneType

Answer the question

In order to leave comments, you need to log in

1 answer(s)
S
soremix, 2021-01-05
@Tonbix

So pass a number to get_user - the user's id.
Why are there any other signs of fuss in the ID
<@!572024847442509825>

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question