Metadata-Version: 2.1
Name: MinecraftWS
Version: 1.1.1
Summary: Minecraft Bedrock Websocket
Home-page: https://github.com/Beta5051/MinecraftWS
Author: beta5051
Author-email: beta5051@gmail.com
License: MIT
Description: # MinecraftWS
        ![PyPI](https://img.shields.io/pypi/v/MinecraftWS)
        
        Minecraft Bedrock Websocket
        
        ## Install
        ```shell
        pip install MinecraftWS
        ```
        
        ## Example
        ```python
        from MinecraftWS import MinecraftWebSocket, Event
        
        class MWS(MinecraftWebSocket):
            async def on_connect(self):
                print('connect')
                await self.add_event(Event.BlockBroken)
        
            async def on_disconnect(self):
                print('disconnect')
        
            async def on_event(self, event: str, properties: dict):
                if event == Event.BlockBroken:
                    print('block is broken')
        
        MWS().run()
        ```
Platform: UNKNOWN
Description-Content-Type: text/markdown
