Ejemplo n.º 1
0
 async def owoify(self, ctx, *, text: str):
     await ctx.message.delete()
     ntext = nekos.owoify(text)
     em = discord.Embed(title='owoified text',
                        color=discord.Color.blue(),
                        description=ntext)
     em.set_footer(text=f"@{ctx.author.name}")
     await ctx.send(embed=em)
Ejemplo n.º 2
0
 async def owoify(self, msg, *, Msg:str):
     """
     Edits the message you sent and add owo in them
     Command: s.owoify <Your message>
     Example: s.owoify Hello there (Results: Hewwo thewe)
     """
     emb = discord.Embed(title=msg.author.display_name,description=nekos.owoify(Msg))
     await msg.send(embed=emb)
     await msg.delete()
Ejemplo n.º 3
0
def inline_search_owoify(update: Update, context: CallbackContext):
    query = update.inline_query.query
    s = query.replace('Owo', '')
    update.inline_query.answer(results=[
    InlineQueryResultArticle(
                 id=uuid4(),
                 title='Owo',
                 input_message_content=InputTextMessageContent(message_text=nekos.owoify(s))
                 )])
Ejemplo n.º 4
0
async def faces(owo):
    """ UwU """
    textx = await owo.get_reply_message()
    message = owo.pattern_match.group(1)
    if message:
        pass
    elif textx:
        message = textx.text
    else:
        await owo.edit("` UwU bana bir metin ver! `")
        return

    reply_text = str(owoify(message)) + choice(UWUS)
    await owo.edit(reply_text)
Ejemplo n.º 5
0
 async def owoify(self, ctx, *, text: str=None):
     """Converts your text to owo format."""
     if text is None:
         await ctx.send('You need to give me some input silly.')
         return
     await ctx.send(nekos.owoify(text))
Ejemplo n.º 6
0
def owo_ify(update: Update, context: CallbackContext):
    text = " ".join(context.args)
    update.message.reply_text(text=nekos.owoify(text), quote=False)
Ejemplo n.º 7
0
Archivo: fun.py Proyecto: mili-ae/Umi
 async def owoify(self, ctx, *, text: str):
     """OWOifies your text. Cuuuuute"""
     await ctx.message.delete()
     e = discord.Embed(title="OwO", description=nekos.owoify(text), color=self.bot.color)
     await ctx.send(embed=e)
Ejemplo n.º 8
0
async def owoify(ctx, wantowoed):
    userowo = nekos.owoify(wantowoed)
    await ctx.send(userowo)
Ejemplo n.º 9
0
def owo_text(desired_text: str) -> str:
    return str(nekos.owoify(desired_text))