معرفی شرکت ها


Pycord-Utils-2.3.2


Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر
Card image cap
تبلیغات ما

مشتریان به طور فزاینده ای آنلاین هستند. تبلیغات می تواند به آنها کمک کند تا کسب و کار شما را پیدا کنند.

مشاهده بیشتر

توضیحات

Utility Plugin For Pycord
ویژگی مقدار
سیستم عامل OS Independent
نام فایل Pycord-Utils-2.3.2
نام Pycord-Utils
نسخه کتابخانه 2.3.2
نگهدارنده []
ایمیل نگهدارنده []
نویسنده Pycord
ایمیل نویسنده -
آدرس صفحه اصلی https://github.com/pycord/utilitys
آدرس اینترنتی https://pypi.org/project/Pycord-Utils/
مجوز MIT
![Logo](https://i.ibb.co/7G822Gc/pyc-utils.png) # Utilitys Utility Plugin For [Pycord](https://github.com/pycord-development/pycord) # Features: - Advanced Audio Plug-ins - Custom Cog For Easier Bot Use - Specialized For Use With Pycord # Installing: ### Stable: ```py pip install --upgrade pycord-utils ``` ### Development: ```py pip install -U git+https://github.com/pycord/utilitys.git ``` # Extra Option's ### Using our Custom Cog First Install the extra version of Pycord Utilitys ```py pip install -U pycord-utils[extra] ``` Then Add This To Your Main bot file ```py bot.load_extension('pycord') ``` And your done! ### Voice To use our Voice Options Install ```py pip install -U pycord-utils[voice] ``` # Examples Small Examples For Use-Cases Of The Plug-in ## Audio Example: ```py import discord import pycord from pycord.ext import audio from discord.ext import commands bot = commands.Bot(commands_prefix=">") class Music(commands.Cog): def __init__(self, bot): self.bot = bot if not hasattr(bot, "audio"): self.bot.audio = audio.Client(bot=self.bot) self.bot.loop.create_task(self.start_nodes()) async def start_nodes(self): await self.bot.wait_until_ready() # Initiate our nodes. For this example we will use one server. # Region should be a discord.py guild.region e.g sydney or us_central (Though this is not technically required) await self.bot.audio.initiate_node( host="0.0.0.0", port=2333, rest_uri="http://0.0.0.0:2333", password="youshallnotpass", identifier="TEST", region="us_central", ) @commands.command(name="connect") async def connect_(self, ctx, *, channel: discord.VoiceChannel = None): if not channel: try: channel = ctx.author.voice.channel except AttributeError: raise discord.DiscordException( "No channel to join. Please either specify a valid channel or join one." ) player = self.bot.audio.get_player(ctx.guild.id) await ctx.send(f"Connecting to **`{channel.name}`**") await player.connect(channel.id) @commands.command() async def play(self, ctx, *, query: str): tracks = await self.bot.audio.get_tracks(f"ytsearch:{query}") if not tracks: return await ctx.send("Could not find any songs with that query.") player = self.bot.audio.get_player(ctx.guild.id) if not player.is_connected: await ctx.invoke(self.connect_) await ctx.send(f"Added {str(tracks[0])} to the queue.") await player.play(tracks[0]) bot.add_cog(Music(bot)) ``` More examples can be found in the examples folder.


زبان مورد نیاز

مقدار نام
>=3.8 Python


نحوه نصب


نصب پکیج whl Pycord-Utils-2.3.2:

    pip install Pycord-Utils-2.3.2.whl


نصب پکیج tar.gz Pycord-Utils-2.3.2:

    pip install Pycord-Utils-2.3.2.tar.gz