number of people on the discord server discord.py code example
Example 1: discord py server.channels
# Returns a list of all channels from all guilds( as channel IDs )
bot.get_all_channels()
Example 2: discord api python putting ids in a list
@client.event
async def on_ready():
guilds = client.guilds
data = {}
for guild in guilds:
data[guild.id] = []
for channel in guild.channels:
data[guild.id].append(channel.id)
with open("./data/guilds.json", "w") as file:
json.dump(data, file, indent=4)