Skip to content

Lenochxd/Toobo-discord

Repository files navigation

Toobo discord bot

License GitHub release (latest by date) Stars Discord

Toobo is a character from the French children's weather forecast show "La météo de Gulli". This adorable mascot presents weather information in a fun and engaging way for young viewers. In the show, Toobo uses simple language and playful animations to explain weather concepts and forecasts, making meteorology accessible and entertaining for children.

This Discord bot uses the Toobo-API to cast daily messages with meteorological information. It brings a cheerful approach to weather updates on Discord servers, providing weather information and forecasts with a friendly personality, making it both informative, enjoyable and funny.

Commands

  • /meteo: Get weather information for a specific date
  • /setup: Set up daily weather updates for a channel at a specified time
  • /prefix: Change the bot's command prefix
  • /enable-toobo: Enable automatic messages
  • /disable-toobo: Disable automatic messages

Add Toobo to Your Server

To add the Toobo bot, click the link below:

https://discord.com/oauth2/authorize?client_id=1264602192564981863



Dev Setup

Setup for Linux

Setup Python

  1. Install Python:

    • Install Python using your package manager. For example, on Debian-based systems:
      sudo apt update
      sudo apt install python3 python3-venv python3-pip
  2. Setup Virtual Environment:

    • Create a virtual environment:
      python3 -m venv .venv
    • Activate the virtual environment:
      source .venv/bin/activate
  3. Install Requirements:

    • Install the necessary Python packages:
      pip install -r requirements.txt

Setup MySQL

  1. Install MySQL:

    • Install MySQL using your package manager. For example, on Debian-based systems:
      sudo apt update
      sudo apt install mysql-server
  2. Secure MySQL Installation:

    • Run the security script to set up MySQL:
      sudo mysql_secure_installation
  3. Create Database:

    • Log into MySQL and create the database:
      sudo mysql -u root -p
      CREATE DATABASE your_database_name;
      CREATE USER 'your_username'@'localhost' IDENTIFIED BY 'your_password';
      GRANT ALL PRIVILEGES ON your_database_name.* TO 'your_username'@'localhost';
      FLUSH PRIVILEGES;
      EXIT;

Configure Application

  1. Edit Configuration:
    • Open config/config.json.
    • Update the configuration based on the default template provided.

Setup for Windows

Setup Python

  1. Install Python:

  2. Setup Virtual Environment:

    • Create a virtual environment:
      python -m venv .venv
    • Activate the virtual environment:
      .venv\Scripts\activate.bat
  3. Install Requirements:

    • Install the necessary Python packages:
      pip install -r requirements.txt

Setup MySQL

  1. Install MySQL:

  2. Create Database:

    • Use MySQL Installer - Community to create a database and set up a password.

Configure Application

  1. Edit Configuration:
    • Open config/config.json.
    • Update the configuration based on the default template provided.