Metadata-Version: 2.1
Name: PyWaifu
Version: 1.0.1
Summary: PyWaifu is a simple package that shows cute waifus
Home-page: https://github.com/DragonSphere02/PyWaifu
Author: DragonSh
Author-email: isaiasfb8@gmail.com
License: MIT
Description: ## PyWaifu
        
        PyWaifu is a simple package that shows cute waifus
        
        ~~~python
        #  Simple example
        import pywaifu
        
        print(pywaifu.waifu())
        ~~~
        
        **> Parameters**
        - waifu()
        
        ~~~python
        #  Returns a random image link 
        import pywaifu
        
        print(pywaifu.waifu())
        ~~~
        
        - version
        ~~~python
        #  Returns the package version
        import pywaifu
        print(pywaifu.__version__)
        ~~~
        
        Basic example in a discord bot
        ~~~python
        import discord
        import pywaifu
        
        bot = discord.Bot()
        
        @bot.slash_command()
        async def waifu(ctx):
            result = pywaifu.waifu()
            await ctx.respond(result)
        
        bot.run('your_secret_token')
        ~~~
        
Keywords: waifu discord bots
Platform: UNKNOWN
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Development Status :: 4 - Beta
Classifier: Natural Language :: English
Classifier: Programming Language :: Python :: 3
Classifier: Topic :: Internet
Description-Content-Type: text/markdown
