Get bot token from command line

pull/1/head
BodgeMaster 2023-01-13 17:47:58 +01:00
parent afa068cf52
commit 6e4674953e
2 changed files with 7 additions and 7 deletions

View File

@ -2,18 +2,18 @@
A bot written for the Linux General Discord Server
### How to run
### Setup
- Install the necessary packages:
```sh
pip install -r requirements.txt
```
- On the last line, replace `TOKEN` with your bot token
### Running
- Then, run the `bot.py`file:
- Run the `bot.py`file passing the bot token as argument:
```sh
python3 bot.py
python3 bot.py TOKEN_HERE
```

6
bot.py
View File

@ -8,7 +8,7 @@ import typing
from discord.ext import commands
import discord.utils
import time
from sys import platform
import sys
BOOT_TIME = time.time()
@ -190,10 +190,10 @@ async def report_message(interaction: discord.Interaction, message: discord.Mess
async def status(interaction: discord.Interaction):
embed = discord.Embed(title='System Stats')
embed.description = f"""Uptime: {seconds_elapsed()}
System: {platform}"""
System: {sys.platform}"""
url_view = discord.ui.View()
await interaction.response.send_message(embed=embed, view=url_view)
client.tree.sync()
client.run('TOKEN')
client.run(sys.argv[1])