├── .env.sample ├── .github ├── ISSUE_TEMPLATE │ ├── feature_request.md │ ├── report_a_bug.md │ └── update-documentation.md ├── PULL_REQUEST_TEMPLATE.md └── workflows │ ├── auto_assign.yaml │ ├── auto_close_empty_issues.yml │ ├── codeql-analysis.yml │ └── python-app.yml ├── .gitignore ├── .readthedocs.yaml ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Dockerfile ├── LICENSE ├── Procfile ├── README.md ├── SECURITY.md ├── app.py ├── changelog.md ├── docker-compose.yaml ├── docs ├── Makefile ├── _static │ ├── logo.png │ └── logopyc.png ├── admin_commands.rst ├── api_based_commands.rst ├── auto_commands.rst ├── changelog.rst ├── conf.py ├── fun_commands.rst ├── index.rst ├── installation.rst ├── introduction.rst ├── make.bat ├── moderation_commands.rst ├── music_commands.rst ├── nsfw_commands.rst ├── other_commands.rst ├── owner_commands.rst ├── requirements.txt ├── testing_commands.rst ├── upcoming_features.rst └── utility_commands.rst ├── images ├── cybel_icon.jpg └── sample.png ├── logs └── README.md ├── requirements.txt ├── runtime.txt ├── src ├── __init__.py ├── cogs │ ├── __init__.py │ ├── adminCommands.py │ ├── apiBasedCommands.py │ ├── autoCommands.py │ ├── errorHandler.py │ ├── funCommands.py │ ├── moderationCommands.py │ ├── musicCommands.py │ ├── nsfwCommands.py │ ├── otherCommands.py │ ├── ownerCommands.py │ ├── testingCommands.py │ └── utilityCommands.py └── utils │ ├── __init__.py │ ├── create_db.py │ ├── db.py │ ├── dbhelper.py │ └── utils.py └── start_server.sh /.env.sample: -------------------------------------------------------------------------------- 1 | DISCORD_TOKEN= 2 | WEATHER_API_KEY= 3 | DATABASE_URL=postgres:// -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature_request.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/ISSUE_TEMPLATE/feature_request.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/report_a_bug.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/ISSUE_TEMPLATE/report_a_bug.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/update-documentation.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/ISSUE_TEMPLATE/update-documentation.md -------------------------------------------------------------------------------- /.github/PULL_REQUEST_TEMPLATE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/PULL_REQUEST_TEMPLATE.md -------------------------------------------------------------------------------- /.github/workflows/auto_assign.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/workflows/auto_assign.yaml -------------------------------------------------------------------------------- /.github/workflows/auto_close_empty_issues.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/workflows/auto_close_empty_issues.yml -------------------------------------------------------------------------------- /.github/workflows/codeql-analysis.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/workflows/codeql-analysis.yml -------------------------------------------------------------------------------- /.github/workflows/python-app.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.github/workflows/python-app.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.gitignore -------------------------------------------------------------------------------- /.readthedocs.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/.readthedocs.yaml -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/LICENSE -------------------------------------------------------------------------------- /Procfile: -------------------------------------------------------------------------------- 1 | worker: python3 app.py -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/SECURITY.md -------------------------------------------------------------------------------- /app.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/app.py -------------------------------------------------------------------------------- /changelog.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/changelog.md -------------------------------------------------------------------------------- /docker-compose.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docker-compose.yaml -------------------------------------------------------------------------------- /docs/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/Makefile -------------------------------------------------------------------------------- /docs/_static/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/_static/logo.png -------------------------------------------------------------------------------- /docs/_static/logopyc.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/_static/logopyc.png -------------------------------------------------------------------------------- /docs/admin_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/admin_commands.rst -------------------------------------------------------------------------------- /docs/api_based_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/api_based_commands.rst -------------------------------------------------------------------------------- /docs/auto_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/auto_commands.rst -------------------------------------------------------------------------------- /docs/changelog.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/changelog.rst -------------------------------------------------------------------------------- /docs/conf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/conf.py -------------------------------------------------------------------------------- /docs/fun_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/fun_commands.rst -------------------------------------------------------------------------------- /docs/index.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/index.rst -------------------------------------------------------------------------------- /docs/installation.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/installation.rst -------------------------------------------------------------------------------- /docs/introduction.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/introduction.rst -------------------------------------------------------------------------------- /docs/make.bat: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/make.bat -------------------------------------------------------------------------------- /docs/moderation_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/moderation_commands.rst -------------------------------------------------------------------------------- /docs/music_commands.rst: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /docs/nsfw_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/nsfw_commands.rst -------------------------------------------------------------------------------- /docs/other_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/other_commands.rst -------------------------------------------------------------------------------- /docs/owner_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/owner_commands.rst -------------------------------------------------------------------------------- /docs/requirements.txt: -------------------------------------------------------------------------------- 1 | # for readthedocs 2 | jinja2<3.1.0 3 | Markdown<3.2 -------------------------------------------------------------------------------- /docs/testing_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/testing_commands.rst -------------------------------------------------------------------------------- /docs/upcoming_features.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/upcoming_features.rst -------------------------------------------------------------------------------- /docs/utility_commands.rst: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/docs/utility_commands.rst -------------------------------------------------------------------------------- /images/cybel_icon.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/images/cybel_icon.jpg -------------------------------------------------------------------------------- /images/sample.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/images/sample.png -------------------------------------------------------------------------------- /logs/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/logs/README.md -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/requirements.txt -------------------------------------------------------------------------------- /runtime.txt: -------------------------------------------------------------------------------- 1 | python-3.10.8 -------------------------------------------------------------------------------- /src/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /src/cogs/adminCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/adminCommands.py -------------------------------------------------------------------------------- /src/cogs/apiBasedCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/apiBasedCommands.py -------------------------------------------------------------------------------- /src/cogs/autoCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/autoCommands.py -------------------------------------------------------------------------------- /src/cogs/errorHandler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/errorHandler.py -------------------------------------------------------------------------------- /src/cogs/funCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/funCommands.py -------------------------------------------------------------------------------- /src/cogs/moderationCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/moderationCommands.py -------------------------------------------------------------------------------- /src/cogs/musicCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/musicCommands.py -------------------------------------------------------------------------------- /src/cogs/nsfwCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/nsfwCommands.py -------------------------------------------------------------------------------- /src/cogs/otherCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/otherCommands.py -------------------------------------------------------------------------------- /src/cogs/ownerCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/ownerCommands.py -------------------------------------------------------------------------------- /src/cogs/testingCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/testingCommands.py -------------------------------------------------------------------------------- /src/cogs/utilityCommands.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/cogs/utilityCommands.py -------------------------------------------------------------------------------- /src/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/utils/__init__.py -------------------------------------------------------------------------------- /src/utils/create_db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/utils/create_db.py -------------------------------------------------------------------------------- /src/utils/db.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/utils/db.py -------------------------------------------------------------------------------- /src/utils/dbhelper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/utils/dbhelper.py -------------------------------------------------------------------------------- /src/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Py-Contributors/Cybel/HEAD/src/utils/utils.py -------------------------------------------------------------------------------- /start_server.sh: -------------------------------------------------------------------------------- 1 | #!/bin/sh 2 | 3 | exec python app.py --------------------------------------------------------------------------------