How do you use the client.delete_channel() command in pythons for discord botsHow do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?How do I sort a dictionary by value?Iterating over dictionaries using 'for' loopsDoes Python have a string 'contains' substring method?
Salesforce bug enabled "Modify All"
Passport queue length in UK in relation to arrival method
Are there historical examples of audiences drawn to a work that was "so bad it's good"?
How do you earn the reader's trust?
Does attacking (or having a rider attack) cancel Charge/Pounce-like abilities?
size of pointers and architecture
Existence of a model of ZFC in which the natural numbers are really the natural numbers
Proto-Indo-European (PIE) words with IPA
(For training purposes) Are there any openings with rook pawns that are more effective than others (and if so, what are they)?
Caught with my phone during an exam
One word for 'the thing that attracts me'?
Is the default 512 byte physical sector size appropriate for SSD disks under Linux?
Why is a weak base more able to deprotonate a strong acid than a weak acid?
What is the winged creature on the back of the Mordenkainen's Tome of Foes book?
Why is 'additive' EQ more difficult to use than 'subtractive'?
Surface of the 3x3x3 cube as a graph
Why is Ni[(PPh₃)₂Cl₂] tetrahedral?
Why is this python script running in background consuming 100 % CPU?
Coloring lines in a graph the same color if they are the same length
What happens when redirecting with 3>&1 1>/dev/null?
How to safely discharge oneself
Make the `diff` command look only for differences from a specified range of lines
If a character has cast the Fly spell on themselves, can they "hand off" to the Levitate spell without interruption?
Team member is vehemently against code formatting
How do you use the client.delete_channel() command in pythons for discord bots
How do I check whether a file exists without exceptions?Calling an external command in PythonWhat are metaclasses in Python?How can I safely create a nested directory?Does Python have a ternary conditional operator?How to get the current time in PythonHow can I make a time delay in Python?How do I sort a dictionary by value?Iterating over dictionaries using 'for' loopsDoes Python have a string 'contains' substring method?
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty height:90px;width:728px;box-sizing:border-box;
I need to know how to use the delete_channel command in discord.py may someone please post a code sample
python discord.py
add a comment |
I need to know how to use the delete_channel command in discord.py may someone please post a code sample
python discord.py
add a comment |
I need to know how to use the delete_channel command in discord.py may someone please post a code sample
python discord.py
I need to know how to use the delete_channel command in discord.py may someone please post a code sample
python discord.py
python discord.py
asked Mar 23 at 20:55
spotandjakespotandjake
205
205
add a comment |
add a comment |
1 Answer
1
active
oldest
votes
Here is how you'd delete channels using a command
from discord.ext.commands import Bot
import discord
bot=Bot(command_prefix='.')
This is in the async
version, probably the version you're using
@bot.command(pass_context=True)
async def del_chan(msg,channel:discord.Channel):
await bot.delete_channel(channel)
This is in rewrite
@bot.command()
async def del_channel(msg,chan:discord.TextChannel):
await chan.delete()
To use the command you'd do .del_chan #channel_name
, .del_chan channel_name
, .del_channel #channel_name
, or .del_channel channel_name
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
add a comment |
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318283%2fhow-do-you-use-the-client-delete-channel-command-in-pythons-for-discord-bots%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
1 Answer
1
active
oldest
votes
1 Answer
1
active
oldest
votes
active
oldest
votes
active
oldest
votes
Here is how you'd delete channels using a command
from discord.ext.commands import Bot
import discord
bot=Bot(command_prefix='.')
This is in the async
version, probably the version you're using
@bot.command(pass_context=True)
async def del_chan(msg,channel:discord.Channel):
await bot.delete_channel(channel)
This is in rewrite
@bot.command()
async def del_channel(msg,chan:discord.TextChannel):
await chan.delete()
To use the command you'd do .del_chan #channel_name
, .del_chan channel_name
, .del_channel #channel_name
, or .del_channel channel_name
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
add a comment |
Here is how you'd delete channels using a command
from discord.ext.commands import Bot
import discord
bot=Bot(command_prefix='.')
This is in the async
version, probably the version you're using
@bot.command(pass_context=True)
async def del_chan(msg,channel:discord.Channel):
await bot.delete_channel(channel)
This is in rewrite
@bot.command()
async def del_channel(msg,chan:discord.TextChannel):
await chan.delete()
To use the command you'd do .del_chan #channel_name
, .del_chan channel_name
, .del_channel #channel_name
, or .del_channel channel_name
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
add a comment |
Here is how you'd delete channels using a command
from discord.ext.commands import Bot
import discord
bot=Bot(command_prefix='.')
This is in the async
version, probably the version you're using
@bot.command(pass_context=True)
async def del_chan(msg,channel:discord.Channel):
await bot.delete_channel(channel)
This is in rewrite
@bot.command()
async def del_channel(msg,chan:discord.TextChannel):
await chan.delete()
To use the command you'd do .del_chan #channel_name
, .del_chan channel_name
, .del_channel #channel_name
, or .del_channel channel_name
Here is how you'd delete channels using a command
from discord.ext.commands import Bot
import discord
bot=Bot(command_prefix='.')
This is in the async
version, probably the version you're using
@bot.command(pass_context=True)
async def del_chan(msg,channel:discord.Channel):
await bot.delete_channel(channel)
This is in rewrite
@bot.command()
async def del_channel(msg,chan:discord.TextChannel):
await chan.delete()
To use the command you'd do .del_chan #channel_name
, .del_chan channel_name
, .del_channel #channel_name
, or .del_channel channel_name
answered Mar 25 at 0:32
KowaiiNekoKowaiiNeko
12110
12110
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
add a comment |
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
thankyou I was having trouble using it I want to clear my channel using this I want the bot to delete the channel move the people create a new one that is a clear copy and move everyone back
– spotandjake
Mar 25 at 0:59
add a comment |
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55318283%2fhow-do-you-use-the-client-delete-channel-command-in-pythons-for-discord-bots%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown