diff options
-rw-r--r-- | bot.py | 28 | ||||
-rw-r--r-- | henti.py | 32 |
2 files changed, 50 insertions, 10 deletions
@@ -1,20 +1,36 @@ import os +import random from dotenv import load_dotenv from discord.ext import commands -import henti as H +from henti import Numbers as n -load_dotenv() +load_dotenv() # load .env file TOKEN = os.getenv('DISCORD_TOKEN') +bot = commands.Bot(command_prefix='z!') # initialise the bot + + -bot = commands.Bot(command_prefix='z!') # get title of henti -@bot.command(name='title', help='Get the title of doujin using the holy numbers') -async def nine_nine(ctx, sauce): - r = H.get_title(sauce) +@bot.command(name='info', help='Get the title of doujin using the holy numbers') +async def getInfo(ctx, sauce): + r = n(sauce).title() await ctx.send(r) +# short for the same +@bot.command(name='i', help='short fot z!title') +async def getInfo(ctx, sauce): + r = n(sauce).title() + await ctx.send(r) + + +# @bot.command(name='', help='') +# async def + + + + bot.run(TOKEN) @@ -1,7 +1,31 @@ from hentai import Hentai from hentai import Format -def get_title(sauce): - # get hentai title in readable format - henti_title = str(Hentai(sauce).title(Format.Pretty)) - return henti_title +class Numbers: + def __init__(self, number): + self.sauce = Hentai(number) + + def title(self): + title = self.sauce.title(Format.Pretty) + return title +""" + def artist(self): + artist = str(Hentai(sauce).artist).split(', ')[2] # name='artist' + name = artist[6:-1] # just the artist's name + return name + + def tags(): + # get a henti's tags + pass + + def get_title(sauce): + # get hentai title in readable format + title = str(Hentai(sauce).title(Format.Pretty)) + artist = get_artist(sauce) + r = "{title} ({sauce}) by {artist}\nhttps://nhentai.net/g/{sauce}/".format(title=title, artist=artist, sauce=sauce) + return r +""" +# print(Numbers(177013).title()) +# print(Numbers.title(177013)) +# print(Numbers.title(177013)) +# print(x.title()) |