Skip to content

Instantly share code, notes, and snippets.

View phlmox's full-sized avatar

Enes Saltık phlmox

View GitHub Profile
@mid-kid
mid-kid / minecraft-chat-client.py
Last active November 27, 2024 08:33
Basic minecraft chat client written in Python.
#!/usr/bin/env python3
"""
Simple script that implements the minecraft protocol
to create a basic chat client for said game.
No encryption, no online mode, no parsing of chat messages.
I tried to make it as extendable as possible, so hack away.
PEP8 Note: Ignored E302 (2 newlines between functions)
"""