Metadata-Version: 2.1
Name: dbkrpy
Version: 0.1.0
Summary: DBKR Api wrapped with aiohttp
Home-page: https://github.com/SaidBySolo/DBKR-API-Python
Author: Ryu ju heon
Author-email: SaidBySolo@gmail.com
License: MIT
Description: # DBKR-API-Python
        
        ## 설치 방법
        
        ```sh
        pip install dbkrpy
        ```
        
        ## 업데이트 방법
        
        ```sh
        pip install --upgrade dbkrpy
        ```
        
        ## 사용 예제
        
        ```py
        import dbkrpy
        import discord
        from discord.ext import commands
        
        class UpdateGuild(commands.Cog):
        
            def __init__(self, bot):
                self.bot = bot
                self.token = 'Token paste here'
                dbkrpy.DBKRPython(bot=self.bot,token=self.token)
        
        def setup(bot):
            bot.add_cog(UpdateGuild(bot))
        
        ```
        
        ## Patch note
        
        ### 0.1.0
        
        * 첫 배포 시작
        
Platform: UNKNOWN
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Requires-Python: >=3.7
Description-Content-Type: text/markdown
