cloudcord


Namecloudcord JSON
Version 1.0.6 PyPI version JSON
download
home_page
SummaryAn easy-to-use extension for Discord.py and Pycord
upload_time2023-12-24 03:59:42
maintainer
docs_urlNone
authorlittxle
requires_python>=3.9
licenseMIT
keywords discord pycord py-cord discord.py
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![cloudcord]( https://raw.githubusercontent.com/littxle/cloudcord/main/docs/_static/cloudcord.png)](https://github.com/littxle/cloudcord)

[![](https://img.shields.io/pypi/v/cloudcord.svg?style=for-the-badge&logo=pypi&color=yellow&logoColor=white)](https://pypi.org/project/cloudcord/)
[![](https://img.shields.io/pypi/l/cloudcord?style=for-the-badge)](https://github.com/littxle/cloudcord/blob/main/LICENSE)

An easy-to-use extension for [Discord.py](https://github.com/Rapptz/discord.py)
and [Pycord](https://github.com/Pycord-Development/pycord) with some utility functions.

## Features
### ✏️ Reduce boilerplate code
- Easy cog management
- Embed templates
- Datetime and file utilities
- Wrapper for [aiosqlite](https://github.com/omnilib/aiosqlite)

### ✨ Error handling
- Automatic error handling for slash commands
- Error webhook reports
- Custom logging

### ⚙️ Extensions
- **Help command** - Automatically generate a help command for your bot
- **Status changer** - Change the bot's status in an interval
- **Blacklist** - Block users from using your bot

## Installing
Python 3.9 or higher is required.
```
pip install cloudcord
```
You can also install the latest version from GitHub. Note that this version may be unstable
and requires [git](https://git-scm.com/downloads) to be installed.
```
pip install git+https://github.com/littxle/cloudcord
```
If you need the latest version in your `requirements.txt` file, you can add this line:
```
cloudcord @ git+https://github.com/littxle/cloudcord
```

## Useful Links
- [Documentation](https://cloudcord.readthedocs.io/) | [Getting started](https://cloudcord.readthedocs.io/en/latest/pages/getting_started.html)
- [Pycord](https://docs.pycord.dev/) | [Discord.py](https://discordpy.readthedocs.io/en/stable/)
- [PyPi](https://pypi.org/project/cloudcord/)

## Examples
- For more examples, see the [example repository](https://github.com/littxle/cloudcord-template)
or the [sample code](https://cloudcord.readthedocs.io/en/latest/examples/examples.html).
- **Note:** It's recommended to [load the token](https://guide.pycord.dev/getting-started/creating-your-first-bot#protecting-tokens) from a `.env` file instead of hardcoding it.
cloudcord can automatically load the token if a `TOKEN` variable is present in the `.env` file.

### Pycord
```py
import cloudcord
import discord

bot = cloudcord.Bot(
    intents=discord.Intents.default()
)

if __name__ == "__main__":
    bot.load_cogs("cogs")  # Load all cogs in the "cogs" folder
    bot.run("TOKEN")
```

### Discord.py
```py
import asyncio
import discord
import cloudcord


class Bot(cloudcord.Bot):
    def __init__(self):
        super().__init__(intents=discord.Intents.default())

    async def setup_hook(self):
        await super().setup_hook()
        await self.tree.sync()


async def main():
    async with Bot() as bot:
        bot.add_help_command()
        bot.load_cogs("cogs")  # Load all cogs in the "cogs" folder
        await bot.start("TOKEN")


if __name__ == "__main__":
    asyncio.run(main())
```

## Contributing
I am always happy to receive contributions. Here is how to do it:
1. Fork this repository
2. Make changes
3. Create a pull request

You can also [create an issue](https://github.com/littxle/cloudcord/issues/new) if you find any bugs.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "cloudcord",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "discord,pycord,py-cord,discord.py",
    "author": "littxle",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/c0/36/373192de7a911027f57a1013bb0c883ff230b9838c8f917566f41db91624/cloudcord-1.0.6.tar.gz",
    "platform": null,
    "description": "[![cloudcord]( https://raw.githubusercontent.com/littxle/cloudcord/main/docs/_static/cloudcord.png)](https://github.com/littxle/cloudcord)\r\n\r\n[![](https://img.shields.io/pypi/v/cloudcord.svg?style=for-the-badge&logo=pypi&color=yellow&logoColor=white)](https://pypi.org/project/cloudcord/)\r\n[![](https://img.shields.io/pypi/l/cloudcord?style=for-the-badge)](https://github.com/littxle/cloudcord/blob/main/LICENSE)\r\n\r\nAn easy-to-use extension for [Discord.py](https://github.com/Rapptz/discord.py)\r\nand [Pycord](https://github.com/Pycord-Development/pycord) with some utility functions.\r\n\r\n## Features\r\n### \u270f\ufe0f Reduce boilerplate code\r\n- Easy cog management\r\n- Embed templates\r\n- Datetime and file utilities\r\n- Wrapper for [aiosqlite](https://github.com/omnilib/aiosqlite)\r\n\r\n### \u2728 Error handling\r\n- Automatic error handling for slash commands\r\n- Error webhook reports\r\n- Custom logging\r\n\r\n### \u2699\ufe0f Extensions\r\n- **Help command** - Automatically generate a help command for your bot\r\n- **Status changer** - Change the bot's status in an interval\r\n- **Blacklist** - Block users from using your bot\r\n\r\n## Installing\r\nPython 3.9 or higher is required.\r\n```\r\npip install cloudcord\r\n```\r\nYou can also install the latest version from GitHub. Note that this version may be unstable\r\nand requires [git](https://git-scm.com/downloads) to be installed.\r\n```\r\npip install git+https://github.com/littxle/cloudcord\r\n```\r\nIf you need the latest version in your `requirements.txt` file, you can add this line:\r\n```\r\ncloudcord @ git+https://github.com/littxle/cloudcord\r\n```\r\n\r\n## Useful Links\r\n- [Documentation](https://cloudcord.readthedocs.io/) | [Getting started](https://cloudcord.readthedocs.io/en/latest/pages/getting_started.html)\r\n- [Pycord](https://docs.pycord.dev/) | [Discord.py](https://discordpy.readthedocs.io/en/stable/)\r\n- [PyPi](https://pypi.org/project/cloudcord/)\r\n\r\n## Examples\r\n- For more examples, see the [example repository](https://github.com/littxle/cloudcord-template)\r\nor the [sample code](https://cloudcord.readthedocs.io/en/latest/examples/examples.html).\r\n- **Note:** It's recommended to [load the token](https://guide.pycord.dev/getting-started/creating-your-first-bot#protecting-tokens) from a `.env` file instead of hardcoding it.\r\ncloudcord can automatically load the token if a `TOKEN` variable is present in the `.env` file.\r\n\r\n### Pycord\r\n```py\r\nimport cloudcord\r\nimport discord\r\n\r\nbot = cloudcord.Bot(\r\n    intents=discord.Intents.default()\r\n)\r\n\r\nif __name__ == \"__main__\":\r\n    bot.load_cogs(\"cogs\")  # Load all cogs in the \"cogs\" folder\r\n    bot.run(\"TOKEN\")\r\n```\r\n\r\n### Discord.py\r\n```py\r\nimport asyncio\r\nimport discord\r\nimport cloudcord\r\n\r\n\r\nclass Bot(cloudcord.Bot):\r\n    def __init__(self):\r\n        super().__init__(intents=discord.Intents.default())\r\n\r\n    async def setup_hook(self):\r\n        await super().setup_hook()\r\n        await self.tree.sync()\r\n\r\n\r\nasync def main():\r\n    async with Bot() as bot:\r\n        bot.add_help_command()\r\n        bot.load_cogs(\"cogs\")  # Load all cogs in the \"cogs\" folder\r\n        await bot.start(\"TOKEN\")\r\n\r\n\r\nif __name__ == \"__main__\":\r\n    asyncio.run(main())\r\n```\r\n\r\n## Contributing\r\nI am always happy to receive contributions. Here is how to do it:\r\n1. Fork this repository\r\n2. Make changes\r\n3. Create a pull request\r\n\r\nYou can also [create an issue](https://github.com/littxle/cloudcord/issues/new) if you find any bugs.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An easy-to-use extension for Discord.py and Pycord",
    "version": "1.0.6",
    "project_urls": {
        "Documentation": "https://cloudcord.readthedocs.io",
        "GitHub": "https://github.com/littxle/cloudcord"
    },
    "split_keywords": [
        "discord",
        "pycord",
        "py-cord",
        "discord.py"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "bbccad106bd18863d052aceed12d3e8b576c399e98270d8c930ab03cdc8b8d2c",
                "md5": "caa3a5e583479a0a959b4e44c0b9203d",
                "sha256": "139a6b351943c540d863b5edc8cb1b8c9782848cf63cd93f60c492f4d9236f39"
            },
            "downloads": -1,
            "filename": "cloudcord-1.0.6-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "caa3a5e583479a0a959b4e44c0b9203d",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 47318,
            "upload_time": "2023-12-24T03:59:40",
            "upload_time_iso_8601": "2023-12-24T03:59:40.402035Z",
            "url": "https://files.pythonhosted.org/packages/bb/cc/ad106bd18863d052aceed12d3e8b576c399e98270d8c930ab03cdc8b8d2c/cloudcord-1.0.6-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "c036373192de7a911027f57a1013bb0c883ff230b9838c8f917566f41db91624",
                "md5": "45bee44045bce51091f5e4f2fa243736",
                "sha256": "172748a404a29970467347ca4f5849812c49d404a106a52999a7f8885ce02f32"
            },
            "downloads": -1,
            "filename": "cloudcord-1.0.6.tar.gz",
            "has_sig": false,
            "md5_digest": "45bee44045bce51091f5e4f2fa243736",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 41501,
            "upload_time": "2023-12-24T03:59:42",
            "upload_time_iso_8601": "2023-12-24T03:59:42.287506Z",
            "url": "https://files.pythonhosted.org/packages/c0/36/373192de7a911027f57a1013bb0c883ff230b9838c8f917566f41db91624/cloudcord-1.0.6.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-24 03:59:42",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "littxle",
    "github_project": "cloudcord",
    "travis_ci": false,
    "coveralls": false,
    "github_actions": true,
    "requirements": [],
    "lcname": "cloudcord"
}
        
Elapsed time: 0.17289s