aiocraft/aiocraft/__init__.py
alemi eef8bf3d26
feat: harder, better, faster, stronger
changed project structure: no more useless `mc` folder
refactored dispatcher: no longer weird stateful builder pattern
improved packets: don't need proto number to be created
2023-11-20 17:36:03 +01:00

11 lines
399 B
Python

"""aiocraft is an asyncio-driven headless minecraft client"""
from .client import AbstractMinecraftClient
from .server import AbstractMinecraftServer
from .types import *
from .auth import MicrosoftAuthenticator, MojangAuthenticator
from .aiocraft import * # This is needed for PyO3 functions! No clue why or how...
__author__ = "alemidev"
__credits__ = "Thanks to pyCraft, really inspired this"