Metadata-Version: 2.1
Name: discord-cooldown
Version: 0.1.1
Summary: Custom CooldownsDB for discord Bot commands
Home-page: https://github.com/Modern-Realm/discord_cooldown
Author: P. Sai Keerthan Reddy
Author-email: saikeerthan.keerthan.9@gmail.com
License: MIT
Project-URL: Documentation, https://modern-realm.github.io/discord_cooldown/
Project-URL: Bug Tracker, https://github.com/Modern-Realm/discord_cooldown/issues
Project-URL: Examples, https://github.com/Modern-Realm/discord_cooldown/tree/main/Examples
Project-URL: Source, https://github.com/Modern-Realm/discord_cooldown/tree/main/package/discord_cooldown
Project-URL: Discord Server, https://discord.gg/GVMWx5EaAN
Keywords: cooldown,custom-cooldown,cooldowns,py-cord,nextcord,disnake,discordpy
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Intended Audience :: Developers
Classifier: Programming Language :: Python :: 3.8
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Natural Language :: English
Classifier: Topic :: Internet
Classifier: Topic :: Software Development
Classifier: Topic :: Software Development :: Libraries
Classifier: Topic :: Software Development :: Libraries :: Python Modules
Classifier: Typing :: Typed
Requires-Python: >=3.8
Description-Content-Type: text/markdown
License-File: LICENSE

# Package Name: [discord_cooldown](https://pypi.org/project/discord-cooldown/)

#### A responsive package for command cooldowns

#### • With this package you can create the command cooldowns which will not get reset whenever the bot re-run

[![forthebadge made-with-python](http://ForTheBadge.com/images/badges/made-with-python.svg)](https://www.python.org/)

[![Generic badge](https://img.shields.io/badge/Python-3.8-blue.svg)](https://shields.io/)
[![GitHub license](https://badgen.net/github/license/Naereen/Strapdown.js)](https://github.com/Naereen/StrapDown.js/blob/master/LICENSE)
[![Windows](https://svgshare.com/i/ZhY.svg)](https://svgshare.com/i/ZhY.svg)
[![Linux](https://svgshare.com/i/Zhy.svg)](https://svgshare.com/i/Zhy.svg)

### Join [Official Discord Server](https://discord.gg/GVMWx5EaAN) for more guidance !

<hr/>

# Installation

Python 3.8 or higher is required !

```shell
# Linux/macOS
  python3 -m pip install discord-cooldown

# Windows
  # Method-1:
    py -3 -m pip install discord-cooldown
    # or
    python -m pip install discord-cooldown
  # Method-2:
    pip install discord-cooldown

# Using GIT for ALPHA or BETA Versions
  # Method-1:
    pip install git+https://github.com/Modern-Realm/discord_cooldown.git
  # Method-2:
    pip install -U git+https://github.com/Modern-Realm/discord_cooldown
```

<hr/>

# REQUIRED DEPENDENCIES

> #### You can use ANY ONE of the below Package

- ## [py-cord](https://github.com/Pycord-Development/pycord)
- ## [nextcord](https://github.com/nextcord/nextcord)
- ## [discord.pyV2.0](https://github.com/Rapptz/discord.py)
- ## [disnake](https://github.com/DisnakeDev/disnake)
  `For disnake you should Refactor/ Shim all discord terms to disnake terms to make Package work`

> <b>Note:</b> Don't install more than one **DEPENDENCY !**

<hr/>

# QuickStart

```python
from discord_cooldown.cooldown import Cooldown
import discord
from discord.ext import commands

intents = discord.Intents.all()
client = commands.Bot(command_prefix="&", intents=intents)


@client.event
async def on_ready():
    print("Bot's online !")


@client.event
async def on_command_error(ctx, error):
    if isinstance(error, commands.CommandOnCooldown):
        em = discord.Embed(description=f"This command is on cooldown\n"
                                       f"Retry after {error.retry_after}")

        return await ctx.reply(embed=em, mention_author=False)


@Cooldown().cooldown(1, 2 * 60)
@client.command()
async def test(ctx):
    """
    Returns an error: commands.CommandOnCooldown if it's on cooldown
    """
    await ctx.send("Hello world !")


@Cooldown().cooldown(1, 0, commands.BucketType.guild, reset_per_day=True)
@client.command(aliases=['sf'])
async def serverinfo(ctx):
    guild = ctx.guild
    em = discord.Embed(
        title="Server Info",
        description=f"Server Name: {guild.name}\n"
                    f"Total Members: {guild.member_count}\n"
                    f"Owner: {guild.owner.mention}"
    )

    await ctx.reply(embed=em, mention_author=False)


client.run(TOKEN)
```

<hr/>

# Project Links

You can get support/help/guidance from below social-media links

- [Home Page](https://github.com/Modern-Realm)
- [Official Discord Server](https://discord.gg/GVMWx5EaAN)
- [PyPi Package](https://pypi.org/project/discord-cooldown/)


