我正在制作一个创建频道的机器人。他必须创建某个类别的渠道。我正在使用guild.create_text_channel()
。我尚未在文档中找到实现此目的的方法。任何帮助都将受到欢迎。
答案 0 :(得分:2)
您可以使用guild = discord.utils.get(client.guild.categories, id='put the id here without apostrophes')
通过其ID获取类别。这是它的用法:
tweet_df['result'] = tweet_df.apply(lambda x: sentiment_x(x.text) if x.is_retweeted =='Yes' else sentiment_y(x.text), axis = 1)
答案 1 :(得分:2)
您可以这样做。
category = get(guild.category_channels, name = "CATEGORY_NAME")
await guild.create_text_channel("CHANNEL_NAME", category = category)