Get the number of boosts in a server discord.py(获取服务器 discord.py 中的提升次数)
问题描述
我正在尝试创建一个服务器信息命令,我希望它还显示服务器名称、提升计数、提升成员和其他一些东西.
I am trying to make a server info command and I want it to display the server name, boost count, boost members and some other stuff as well.
唯一的问题是我查看了文档并在线搜索,但我无法找到如何找到提升信息.
Only problem is I have looked at the docs and searched online and I cant find out how to find the boost information.
我没有任何代码,因为我没有找到任何代码可供自己尝试和使用
I dont have any code as Ive not found any code to try and use for myself
有什么方法可以得到这些信息吗?
Is there any way to get this information?
推荐答案
公会名称 - guild_object.name
提升计数 - guild_object.premium_subscription_count
Boosters,提升服务器的人 - guild_object.premium_subscribers
Boosters, the people who boosted the server - guild_object.premium_subscribers
如果您按照我的假设在命令中执行此操作,请使用 ctx.guild 而不是 guild_object.如需进一步了解,您可以重新阅读文档,因为上述所有信息都在 discord.Guild
If your doing this in a command as I assume, use ctx.guild instead of guild_object. For anything further, you can re-read the docs as all of the above information is in it under the discord.Guild
这篇关于获取服务器 discord.py 中的提升次数的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持编程学习网!
本文标题为:获取服务器 discord.py 中的提升次数
基础教程推荐
- Discord.py 缺少必需的参数 2022-01-01
- 尝试制作WhatsApp机器人 2022-01-01
- 由Python将MP3转换为MIDI(类型错误:无法加载插件:mtg-Melodia:Melodia) 2022-01-01
- 用 Python 编写 Fortran 无格式文件 2022-01-01
- numpy float:比算术运算中内置的慢 10 倍? 2022-01-01
- 将 x 轴刻度更改为自定义字符串 2022-01-01
- 与常规 dict 相比,Python manager.dict() 非常慢 2022-01-01
- 使用生成器和迭代器时 Python 多循环失败 2022-01-01
- pyserial - 可以从线程 a 写入串行端口,是否阻塞从线程 b 读取? 2022-01-01
- 在 Celery 工作人员中捕获 Heroku SIGTERM 以优雅地关 2022-01-01
