discord.py | how to get list user banned name and id

Tsumugi

Discord.py

user banned by me, i want to see a list of banned user and id to remove the ban from user.

!banlist - for made list of banned user name and id

hopethatsacleanwet

In version 0.16.12 you can use client.get_bans(serverID) which returns a list of User objects. You can then iterate through the list and get the id and name from each user. If you wanted to have the bot list the banned users' names and ids, you could do something like:

bannnedUsers = await client.get_bans(serverID)
for user in bannedUsers:
    await client.send_message(channelID, user.name + ' ' + user.id)

In the rewrite branch it's a little more complicated. You would use guild.bans() to get a list of tuples with each tuple containing a user object and a string with the reason for the ban. For the same result as before, you would do something like:

bans = await guild.bans()
for ban in bans:
    await channel.send(ban[0].name + ' ' + ban[0].id)

It should be mentioned that the bot will need the ban_users permission to be able to access these coroutines.

Collected from the Internet

Please contact [email protected] to delete if infringement.

edited at
0

Comments

0 comments
Login to comment

Related

From Java

Get Name of User From ID - Discord JDA

From Java

How to get the longest user name? (discord.py)

From Java

How to get Member object from user id discord.py

From Dev

How to get user id instead of name in Yii framework?

From Dev

How to get user name and email id for Facebook SDK?

From Dev

How to get name of user by using user id in SugarCRM

From Dev

Rails 4 - how to get user name from their id

From Dev

How to log out a banned user in Symfony?

From Dev

discord.py - Cannot get average colour of a user's avatar

From Dev

Discord.py Send a DM to a Custom ID User

From Dev

Discord.py - Send message under different name or user

From Dev

How can I check if user id is already registered to the bot? [discord.py]

From Dev

Discord.py How to set commands for specific user's depending on user id

From Dev

How do I get a user from their discord tag in Discord JDA?

From Dev

Discord py get input

From Dev

How to get facebook user name In URL by using facebook id?

From Dev

How to get Specific users , track list using user id

From Dev

How to get user id instead of name in Yii framework?

From Dev

Get current user's name and user id

From Dev

How do I get a Joomla user id (which is a number) from user name?

From Dev

How to get Display Name of Contact by User ID in Applozic?

From Dev

How to get screen name instead of user ID with tweepy

From Dev

Get user name from its id..?

From Dev

How to get Windows User Name?

From Dev

how to print (get) user_name using user id in codeigniter view page

From Dev

Discord.js how can i get user nickname using the user's id

From Dev

How to get rid of Text Channels from channel list in Discord.py

From Dev

Get user id and user name from balebot

From Dev

how to get assets who related to user_list id

Related Related

  1. 1

    Get Name of User From ID - Discord JDA

  2. 2

    How to get the longest user name? (discord.py)

  3. 3

    How to get Member object from user id discord.py

  4. 4

    How to get user id instead of name in Yii framework?

  5. 5

    How to get user name and email id for Facebook SDK?

  6. 6

    How to get name of user by using user id in SugarCRM

  7. 7

    Rails 4 - how to get user name from their id

  8. 8

    How to log out a banned user in Symfony?

  9. 9

    discord.py - Cannot get average colour of a user's avatar

  10. 10

    Discord.py Send a DM to a Custom ID User

  11. 11

    Discord.py - Send message under different name or user

  12. 12

    How can I check if user id is already registered to the bot? [discord.py]

  13. 13

    Discord.py How to set commands for specific user's depending on user id

  14. 14

    How do I get a user from their discord tag in Discord JDA?

  15. 15

    Discord py get input

  16. 16

    How to get facebook user name In URL by using facebook id?

  17. 17

    How to get Specific users , track list using user id

  18. 18

    How to get user id instead of name in Yii framework?

  19. 19

    Get current user's name and user id

  20. 20

    How do I get a Joomla user id (which is a number) from user name?

  21. 21

    How to get Display Name of Contact by User ID in Applozic?

  22. 22

    How to get screen name instead of user ID with tweepy

  23. 23

    Get user name from its id..?

  24. 24

    How to get Windows User Name?

  25. 25

    how to print (get) user_name using user id in codeigniter view page

  26. 26

    Discord.js how can i get user nickname using the user's id

  27. 27

    How to get rid of Text Channels from channel list in Discord.py

  28. 28

    Get user id and user name from balebot

  29. 29

    how to get assets who related to user_list id

HotTag

Archive