A simple python wrapper around the mineflayer project
License: MIT
Installation is easy as one package install. (Ensure node.js is installed.)
pip install mineflayer
Simple bot that just joins a server.
import mineflayer
bot = mineflayer.Bot(username="SnarkyDev", offline=True)
@bot.event
async def on_spawn():
print("Spawned!")
bot.run("localhost", 25565)
- Create a bot easily
- Discord.py format (easy to learn)
- Extensive documentation (WIP)
- More events
- Finish off with all bot methods
- Documentation
- @customcapes Awesome dude who gave up the name "mineflayer" on pypi for this project :)
- @SnarkyDev | Developed The Actual Package
- @PrismarineJS | Created the mineflayer JS Package
- @extremeheat | Made JSPyBridge, which is what this project mainly uses in the backend.