Discord Community — Active

py#hub

// Discord Server by coders, for coders

Discordサーバーに参加 Botを見る ↓
scroll
--
members
2+
languages
0
bots made
24/7
online

activity

pyhubでできること

Discordを中心に、Botづくりから雑談まで気軽に参加できるコミュニティです。

🤖

Discord Bot 開発

Python(discord.py / nextcord)やLuaを使ったBot制作が主な活動。アイデアを持ち込んで一緒に作ろう。

💬

雑談チャンネル

コードの話、日常、ゲーム、なんでもOK。気軽に話せる空気感を大切にしています。

🔧

コードレビュー

「動くけど自信ない」そんなコードも歓迎。メンバー同士でフィードバックし合います。

📦

プロジェクト共有

作ったBotやスクリプトをサーバーで公開・配布。実績がない初心者も大歓迎です。

tech stack

使っている言語 / ツール

PythonとLuaをメインに、Discord APIと組み合わせたBot開発を行っています。

Python Lua discord.py Discord API nextcord LÖVE2D slash commands asyncio
bot.py — pyhub sample
# pyhub — 多機能Botのサンプル
import discord
from discord import app_commands
from discord.ext import commands, tasks

intents = discord.Intents.default()
bot = commands.Bot(command_prefix="!", intents=intents)

@bot.tree.command(name="hello", description="pyhubへようこそ")
async def hello(interaction: discord.Interaction):
    embed = discord.Embed(
        title="👋 ようこそ pyhub へ!",
        description=f"こんにちは {interaction.user.mention}!\nBot開発・雑談・Luaで遊ぼう",
        color=0x5865F2
    )
    await interaction.response.send_message(embed=embed)

@tasks.loop(hours=1)
async def status_update():
    await bot.change_presence(
        activity=discord.Game("pyhub | /hello")
    )

@bot.event
async def on_ready():
    await bot.tree.sync()
    status_update.start()
    print(f"✅ {bot.user} — pyhub online")
🚀

参加しよう

コード経験ゼロでも大丈夫。
pyhubはBot好き・Python好き・雑談好きが集まるサーバーです。

Discordサーバーへ
discord.gg/ujCNCRPjEn