Discord Community — Active

py#hub

Discordサーバーに参加 活動を見る
--
members
2+
languages
bot ideas
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
bot.py — pyhub sample
# pyhub — シンプルなBot例
import discord
from discord import app_commands

intents = discord.Intents.default()
client = discord.Client(intents=intents)
tree = app_commands.CommandTree(client)

@tree.command(name="hello", description="pyhubへようこそ")
async def hello(interaction: discord.Interaction):
    await interaction.response.send_message(
        f"👋 ようこそ **pyhub** へ, {interaction.user.mention}!"
    )

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

参加しよう

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

Discordサーバーへ