fcwslib

A library that makes development of Python Minecraft Bedrock Edition websocket applications easier.


Keywords
python, minecraft, bedrock, websocket
License
Other
Install
pip install fcwslib==0.0.2

Documentation

Introduction

A library that makes development of Python Minecraft Bedrock Edition websocket applications easier.

Install

pip install fcwslib

Demo

import fcwslib


class Plugin(fcwslib.Plugin):
    async def on_connect(self):
        print('Connected')
        await self.send_command('list', callback=self.list)
        await self.subscribe('PlayerMessage', callback=self.player_message)

    async def on_disconnect(self):
        print('Disconnected')

    async def on_receive(self, response):
        print('Receive other response {}'.format(response))

    async def list(self, response):
        print('Receive command response {}'.format(response))

    async def player_message(self, response):
        print('Receive event response {}'.format(response))


server = fcwslib.Server()
server.add_plugin(Plugin)
server.run_forever()