The core framework for cool Martian bots.
Project description
Mars College Discord Bots Framework
This repository contains code for creating chatbots/utility bots for Mars College, or otherwise.
There are several useful utilities for chat programs, including support for numerous language model API providers, as well as methods for completing text, searching topics, and getting message similarity.
Setup (for development)
python -m virtualenv venv
pip install flit
flit install --deps=all --pth-file
Creating a bot
All bots must be placed in a directory equal to or higher in the file system than the run script (bot.py). It is recommended that you create a folder called bots in the marsbots-core directory, then create additional folders and files in there as needed.
All bots expect three things:
- A JSON settings file
- A Python script containing the bot's code as a Discord.py Cog class
- A .env file to load API keys/settings from
Settings File
The bot's JSON settings file should contain the following:
"name": The name of the bot
"token_env": The name of the environment variable which contains the discord bot token used to run the bot
(Optional) "command_prefix": This will be the prefix used for the bot to respond to commands.
(Optional) "intents": A list of special intents needed. Takes a list, with accepted values "presence" and "members"
Cog File
The bot's main logic should be created as a Discord.py Cog class, and should have a setup function which adds the Cog to the bot.
Env File
This should contain any API keys or sensitive variables you need to use to run the bot. Expected default names for environment variables can be found in the config.py file of Marsbots core.
Running Your Bot
Locally
Bots can be run locally using a command such as the following:
python bot.py ./examples/examplebot/examplebot.json --cog-path=examples.examplebot.examplebot --dotenv-path=.env
Note that the --cog-path flag should be provided using python module syntax, using dots.
Managing several bots with PM2
Several bots can be managed at once using PM2 and a PM2 config file. An example config file is provided in the examples folder for running the example bot using PM2.
Project details
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
Built Distribution
Filter files by name, interpreter, ABI, and platform.
If you're not sure about the file name format, learn more about wheel file names.
Copy a direct link to the current filters
File details
Details for the file marsbots-0.2.0.tar.gz.
File metadata
- Download URL: marsbots-0.2.0.tar.gz
- Upload date:
- Size: 1.3 MB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
7285b3e381805d0501a70ec29834c9f9de73b2402545ff16eeb876cef032c4ab
|
|
| MD5 |
33411f84e13973717ba9ccdcd5347d78
|
|
| BLAKE2b-256 |
d5670401520743e8d0a826161d437a7672a9532390f812be6ed68715e8417012
|
File details
Details for the file marsbots-0.2.0-py2.py3-none-any.whl.
File metadata
- Download URL: marsbots-0.2.0-py2.py3-none-any.whl
- Upload date:
- Size: 10.0 kB
- Tags: Python 2, Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: python-requests/2.28.1
File hashes
| Algorithm | Hash digest | |
|---|---|---|
| SHA256 |
12360d4df8a1904d8533a75b42af8771e183f67c08a179ecf0c2839d902f255e
|
|
| MD5 |
3e90d9b091e5b8712f08a397a5729c23
|
|
| BLAKE2b-256 |
994d1e61ea68bf0e2735f4274dc651371ffd6f6735faa046adeea8a09dee1b5c
|