-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.py
28 lines (22 loc) · 812 Bytes
/
main.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
import os # os modülünü yükler
from flask import Flask
from discord.ext import commands
from dotenv import load_dotenv
load_dotenv() # .env yi yükler
app = Flask(__name__)
token = os.environ.get("token") # .env dosyasından token değerini alır
bot = commands.Bot(command_prefix="!")
def load_extensions():
for filename in os.listdir('./komutlar'): #komutlar klasörüne komutları ekleyebilmeniz için düzeltir.
if filename.endswith('.py'):
bot.load_extension(f'komutlar.{filename[:-3]}')
load_extensions()
@bot.event
async def on_ready():
print(f"{bot.user.name} Botunuz açıldı.")
@app.route("/")
def home(): #web sunucusunu çalıştırır
return "Web Sitesi çalışıyor."
if __name__ == "__main__":
bot.run(token) #token ile projeyi açar
app.run()