import discord
from discord.ext import commands

# Discord botunuzun token'ını burada belirtin.
TOKEN = "YOUR_DISCORD_BOT_TOKEN"

# Discord botunuzu başlatın.
bot = commands.Bot(command_prefix='!')

@bot.event
async def on_ready():
    print(f'Bot is ready and logged in as {bot.user}')

@bot.command()
async def send_to_discord(ctx, message):
    # Web sitesinden gelen veriyi Discord'daki belirli bir kanala gönderme işlemi.
    channel_id = 1234567890  # Discord kanal ID'si
    channel = bot.get_channel(channel_id)
    await channel.send(f"Web sitesinden gelen mesaj: {message}")

bot.run(TOKEN)