alemi
eef8bf3d26
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
11 lines
399 B
Python
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"
|