activity
Discordを中心に、Botづくりから雑談まで気軽に参加できるコミュニティです。
Python(discord.py / nextcord)やLuaを使ったBot制作が主な活動。アイデアを持ち込んで一緒に作ろう。
コードの話、日常、ゲーム、なんでもOK。気軽に話せる空気感を大切にしています。
「動くけど自信ない」そんなコードも歓迎。メンバー同士でフィードバックし合います。
作ったBotやスクリプトをサーバーで公開・配布。実績がない初心者も大歓迎です。
tech stack
PythonとLuaをメインに、Discord APIと組み合わせたBot開発を行っています。
# 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")