skycord


Nameskycord JSON
Version 0.4.1 PyPI version JSON
download
home_page
SummaryAn easy-to-use extension for the Pycord library
upload_time2023-12-15 21:15:59
maintainer
docs_urlNone
authorsvtano
requires_python>=3.9
licenseMIT
keywords discord pycord py-cord
VCS
bugtrack_url
requirements No requirements were recorded.
Travis-CI No Travis.
coveralls test coverage No coveralls.
            [![skycord](https://skycord.readthedocs.io/en/latest/_static/skycord.png)](https://github.com/svtano/skycord3)

[![](https://img.shields.io/discord/1010915072694046794?label=discord&style=for-the-badge&logo=discord&color=5865F2&logoColor=white)](https://discord.gg/zfvbjTEzv6)
[![](https://img.shields.io/pypi/v/skycord.svg?style=for-the-badge&logo=pypi&color=yellow&logoColor=white)](https://pypi.org/project/skycord/)
[![](https://img.shields.io/pypi/l/skycord?style=for-the-badge)](https://github.com/svtano/skycord3/blob/main/LICENSE)
[![](https://aschey.tech/tokei/github/tibue99/skycord?style=for-the-badge)](https://github.com/svtano/skycord3)

An easy-to-use extension for the [Pycord](https://github.com/Pycord-Development/pycord) library with some utility functions.

## ⚠️ Note
Please use this library with the [Pycord master branch](https://github.com/Pycord-Development/pycord).

## Features
- Easy cog loading
- Automatic error handling
- Error report webhooks
- Embed templates
- Beautiful ready event
- Custom logging
- Automated help command
- Datetime and file utilities
- Wrapper for [aiosqlite](https://github.com/omnilib/aiosqlite)

While this library can be installed with any Discord library, most features will only work with Pycord.

## Installing
Python 3.9 or higher is required.
```
pip install skycord
```
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/svtano/skycord3
```
If you need the latest version in your `requirements.txt` file, you can add this line:
```
skycord @ git+https://github.com/svtano/skycord3
```

## Useful Links
- [Documentation](https://skycord.readthedocs.io/)
- [Getting started](https://skycord.readthedocs.io/en/latest/pages/getting_started.html)
- [PyPi](https://pypi.org/project/skycord/)
- [Pycord Docs](https://docs.pycord.dev/)

## Example
- For more examples, see the [example repository](https://github.com/svtano/skycord3_template)
or the [sample code](https://skycord.readthedocs.io/en/latest/examples/examples.html).

```py
import skycord
import discord

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

if __name__ == "__main__":
    bot.load_cogs("cogs")  # Load all cogs in the "cogs" folder
    bot.run("TOKEN")
```
**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.
skycord can automatically load the token if a `TOKEN` variable is present in the `.env` file.

## 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/svtano/skycord3/issues/new) if you find any bugs.

            

Raw data

            {
    "_id": null,
    "home_page": "",
    "name": "skycord",
    "maintainer": "",
    "docs_url": null,
    "requires_python": ">=3.9",
    "maintainer_email": "",
    "keywords": "discord,pycord,py-cord",
    "author": "svtano",
    "author_email": "",
    "download_url": "https://files.pythonhosted.org/packages/69/1d/0ce4483f2790a70fe3e4350ca61b765514a9911a6cdb865072a089aaef9c/skycord-0.4.1.tar.gz",
    "platform": null,
    "description": "[![skycord](https://skycord.readthedocs.io/en/latest/_static/skycord.png)](https://github.com/svtano/skycord3)\r\n\r\n[![](https://img.shields.io/discord/1010915072694046794?label=discord&style=for-the-badge&logo=discord&color=5865F2&logoColor=white)](https://discord.gg/zfvbjTEzv6)\r\n[![](https://img.shields.io/pypi/v/skycord.svg?style=for-the-badge&logo=pypi&color=yellow&logoColor=white)](https://pypi.org/project/skycord/)\r\n[![](https://img.shields.io/pypi/l/skycord?style=for-the-badge)](https://github.com/svtano/skycord3/blob/main/LICENSE)\r\n[![](https://aschey.tech/tokei/github/tibue99/skycord?style=for-the-badge)](https://github.com/svtano/skycord3)\r\n\r\nAn easy-to-use extension for the [Pycord](https://github.com/Pycord-Development/pycord) library with some utility functions.\r\n\r\n## \u26a0\ufe0f Note\r\nPlease use this library with the [Pycord master branch](https://github.com/Pycord-Development/pycord).\r\n\r\n## Features\r\n- Easy cog loading\r\n- Automatic error handling\r\n- Error report webhooks\r\n- Embed templates\r\n- Beautiful ready event\r\n- Custom logging\r\n- Automated help command\r\n- Datetime and file utilities\r\n- Wrapper for [aiosqlite](https://github.com/omnilib/aiosqlite)\r\n\r\nWhile this library can be installed with any Discord library, most features will only work with Pycord.\r\n\r\n## Installing\r\nPython 3.9 or higher is required.\r\n```\r\npip install skycord\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/svtano/skycord3\r\n```\r\nIf you need the latest version in your `requirements.txt` file, you can add this line:\r\n```\r\nskycord @ git+https://github.com/svtano/skycord3\r\n```\r\n\r\n## Useful Links\r\n- [Documentation](https://skycord.readthedocs.io/)\r\n- [Getting started](https://skycord.readthedocs.io/en/latest/pages/getting_started.html)\r\n- [PyPi](https://pypi.org/project/skycord/)\r\n- [Pycord Docs](https://docs.pycord.dev/)\r\n\r\n## Example\r\n- For more examples, see the [example repository](https://github.com/svtano/skycord3_template)\r\nor the [sample code](https://skycord.readthedocs.io/en/latest/examples/examples.html).\r\n\r\n```py\r\nimport skycord\r\nimport discord\r\n\r\nbot = skycord.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**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\nskycord can automatically load the token if a `TOKEN` variable is present in the `.env` file.\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/svtano/skycord3/issues/new) if you find any bugs.\r\n",
    "bugtrack_url": null,
    "license": "MIT",
    "summary": "An easy-to-use extension for the Pycord library",
    "version": "0.4.1",
    "project_urls": {
        "Documentation": "https://skycord.readthedocs.io",
        "GitHub": "https://github.com/tibue99/skycord"
    },
    "split_keywords": [
        "discord",
        "pycord",
        "py-cord"
    ],
    "urls": [
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "7d9359916fef00401acca9e2a3a860db526c8be5fb3d0107cb927c84af9e2b6e",
                "md5": "439a4dee71d7d693df65207094065671",
                "sha256": "904c1ccd6a6fc0ded9f6acf96a368fd2d5fea9f3b8a819c4cfa7a53b19d261f2"
            },
            "downloads": -1,
            "filename": "skycord-0.4.1-py3-none-any.whl",
            "has_sig": false,
            "md5_digest": "439a4dee71d7d693df65207094065671",
            "packagetype": "bdist_wheel",
            "python_version": "py3",
            "requires_python": ">=3.9",
            "size": 43718,
            "upload_time": "2023-12-15T21:15:57",
            "upload_time_iso_8601": "2023-12-15T21:15:57.359459Z",
            "url": "https://files.pythonhosted.org/packages/7d/93/59916fef00401acca9e2a3a860db526c8be5fb3d0107cb927c84af9e2b6e/skycord-0.4.1-py3-none-any.whl",
            "yanked": false,
            "yanked_reason": null
        },
        {
            "comment_text": "",
            "digests": {
                "blake2b_256": "691d0ce4483f2790a70fe3e4350ca61b765514a9911a6cdb865072a089aaef9c",
                "md5": "0054c5a529c47dc14ae39a517538a537",
                "sha256": "a9870f60f2098abcb7debd665283eed9c8370d63cfbbacffda62e85f9e87e0cb"
            },
            "downloads": -1,
            "filename": "skycord-0.4.1.tar.gz",
            "has_sig": false,
            "md5_digest": "0054c5a529c47dc14ae39a517538a537",
            "packagetype": "sdist",
            "python_version": "source",
            "requires_python": ">=3.9",
            "size": 38602,
            "upload_time": "2023-12-15T21:15:59",
            "upload_time_iso_8601": "2023-12-15T21:15:59.446733Z",
            "url": "https://files.pythonhosted.org/packages/69/1d/0ce4483f2790a70fe3e4350ca61b765514a9911a6cdb865072a089aaef9c/skycord-0.4.1.tar.gz",
            "yanked": false,
            "yanked_reason": null
        }
    ],
    "upload_time": "2023-12-15 21:15:59",
    "github": true,
    "gitlab": false,
    "bitbucket": false,
    "codeberg": false,
    "github_user": "tibue99",
    "github_project": "skycord",
    "github_not_found": true,
    "lcname": "skycord"
}
        
Elapsed time: 0.17214s