From a59242dbf43cc21be7774859c13aa4c619c0f1d9 Mon Sep 17 00:00:00 2001 From: Sebastien Plante Date: Tue, 1 Jul 2025 00:00:16 -0400 Subject: [PATCH] fixing "hello world" readme to match the actual project --- README.md | 38 ++++++++++++++++++-------------------- 1 file changed, 18 insertions(+), 20 deletions(-) diff --git a/README.md b/README.md index 1d23d5b..29c0bf7 100644 --- a/README.md +++ b/README.md @@ -1,44 +1,42 @@ -# Discord Bot Hello +# Discord Bot Time Converter -Ce projet est un bot Discord simple qui répond "Hello World" lorsque l'utilisateur dit "Hello". +Simple bot that reads time posted in a channel and converts it to a timestamp in the user's timezone. -## Prérequis +## Prerequisites -Avant de commencer, assurez-vous d'avoir installé Python et pip sur votre machine. +Before getting started, make sure you have Python and pip installed on your machine. ## Installation -1. Clonez le dépôt ou téléchargez les fichiers du projet. -2. Naviguez dans le répertoire du projet. - - ```bash - cd discord-bot-hello - ``` - -3. Installez les dépendances nécessaires : +1. Clone the repository or download the project files. +2. Install the required dependencies: ```bash pip install -r requirements.txt ``` -4. Créez un fichier `.env` à la racine du projet et ajoutez votre token Discord : +3. Create a `.env` file at the project root and add your Discord token: ```text DISCORD_TOKEN=your_token_here ``` -## Exécution - -Pour exécuter le bot, utilisez la commande suivante : +## Running ```bash python src/bot.py ``` -## Utilisation +To run the bot, use the following command: -Une fois le bot en ligne, il répondra "Hello World" chaque fois qu'un utilisateur enverra "Hello" dans un canal où le bot a accès. +```bash +python src/bot.py +``` -## Aide +## Usage -Pour toute question ou problème, n'hésitez pas à ouvrir une issue dans le dépôt. +Once the bot is online, it will respond "Hello World" every time a user sends "Hello" in a channel where the bot has access. + +## Help + +For any questions or issues, feel free to open an issue in the repository.